This topic is locked

Advance search and domain masking

2/9/2009 2:58:18 AM
PHPRunner General questions
Y
yusufgorgec author

Hi,
Advanced search was working fine, returning the results with the given the creteria during site construction. After I completed the site, I forwarded the domain with masking. Now advanced search returns all the records on the list page totally ignoring the cretaria. If I call the search page using full URL, it works.
Could you help me to fix this?
P.S I am using phprunner 3.1 on a unix server.
Thanks,

J
Jane 2/9/2009

Hi,
advanced search use POST queries and COOKIES.

Please make sure your redirecting code does not change it.

Y
yusufgorgec author 2/10/2009

Hi,

advanced search use POST queries and COOKIES.

Please make sure your redirecting code does not change it.


Hello Jane,

I am new to this. I really don't know where the redirecting code is. Could you please tell me how I could change my redirecting code so it does not change the post queries and cookies? I hope this does not mean pages of code writing <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=37646&image=1&table=forumreplies' class='bbc_emoticon' alt=':)' />

Y
yusufgorgec author 2/11/2009

Hi,

advanced search use POST queries and COOKIES.

Please make sure your redirecting code does not change it.


Hi Jane,

Problem is solved. Thanks for your tip and your software rocks. I love you people...
At first I was trying to forward domain using their control panel but it didnt work. The solution was to change method of forwarding. I contacted the domain server people and they asked to change the code of index.html on my domain server site. Here is new code which works:
<head>

<title>-MyDomain.com-</title>

<meta name="description" content="www.MyDomain.com">; </head> <frameset rows="100%,0" border="0"> <frame src="http://www.MyHostingAdress.com/MySiteFolder " frameborder="0"> <frame frameborder="0"> </frameset> <body> </html>
All I had to do was to delete evrything inside the index.html in the domain server and write the above code and save. That simple...
Thanks again...