The error is actually in the linking. I don't know where this is set though. The settings I have on my html page that makes the initial call to the search engine are...
<FORM METHOD=get name="search" ACTION="
http://search.corp.firstindustrial.com/texis/search">
<INPUT TYPE="hidden" NAME="dropXSL" VALUE="html">
<INPUT TYPE="hidden" NAME="pr" VALUE="default">
<INPUT TYPE="hidden" NAME="prox" VALUE="page">
<INPUT TYPE="hidden" NAME="rorder" VALUE="500">
<INPUT TYPE="hidden" NAME="rprox" VALUE="500">
<INPUT TYPE="hidden" NAME="rdfreq" VALUE="500">
<INPUT TYPE="hidden" NAME="rwfreq" VALUE="500">
<INPUT TYPE="hidden" NAME="rlead" VALUE="500">
<INPUT TYPE="hidden" NAME="sufs" VALUE="0">
<INPUT SIZE="35" name="query" value="">
<INPUT TYPE="submit" name="submit" VALUE="Search">
</FORM>
The first page has "dropXSL=html" on the link. When I hit "next" it passes this url...
http://search.corp.firstindustrial.com/ ... SL=html%0A
If I click "2" (there are 2 pages of results) it passes...
http://search.corp.firstindustrial.com/ ... opXSL=html
And works fine. I am not sure where the "%0A" that is at the end of the first link could be coming from.
If I search for just "Security" it returns 10 pages of results. Going through using the "next" or number links pass info like the following..
Original Search
http://search.corp.firstindustrial.com/ ... y=security
Page 2 - Next link (works)
http://search.corp.firstindustrial.com/ ... SL=html%0A
Page 2 - #2 link
http://search.corp.firstindustrial.com/ ... dropXSL=no
(Why does dropXSL get set to "no" now?)
Same until page 5...
Page 5 - Next link (broken)
http://search.corp.firstindustrial.com/ ... dropXSL=no
Page 5 - #5 link
http://search.corp.firstindustrial.com/ ... dropXSL=no
Page 5 - #5 link but from original results page
http://search.corp.firstindustrial.com/ ... opXSL=html
It looks to me like there are 2 issues...
1) The '%0A' getting added onto the back of pages may be causing an error (though it works in other places). Not sure where this is getting added on.
2) How do I keep dropXSL set to "html" on the templates. I dont see a setting somewhere where I can change this.
Thanks again.