PDA

View Full Version : Help with Inconsistencies



chewyBacca
09-26-2005, 07:39 PM
Hi,

Purchased your product and love it. I have used it on clearchanneloutdoor.com and have recently put this on clearchannelairports.com.

On clearchannelairports.com I am having a problem. When a search is entered from the top navbar on the homepage, it works fine. If I try this again from the top navbar, it will display a blank search page, however, searches from within the blank page work fine.

I don't seem to have this problem with clearchanneloutdoor.

Can someone help me please?

Thank you.

wrensoft
09-26-2005, 10:06 PM
There is a problem in the top nav bar form that you have created in the search_template.html file.

Compare this working URL
http://www.clearchannelairports.com/search/search.php?zoom_query=airport&Submit=Search

With this non-working URL
http://www.clearchannelairports.com/search/search.php?textfield=airport&Submit=Search

One of the URL parameter names are wrong. You have "textfield" instead of zoom_query.

This is a result of incorrect HTML code for your form. You need something like this for it work,
<input type="text" name="zoom_query" />

------
David

Anonymous
09-26-2005, 10:18 PM
Thanks David!