Installing Aspseek search on an IW templated site
Needed Files (use RWAP install as starting point)
* scripts/s.cgi
* scripts/s.html
* scripts/search.php
* templates/scripts.xsl
* (update all XSL templates with search form -- see rwap.dwt in the topbar)
1. Have Oksana set up AspSEEK to spider the domain you want
2. Have Oksana set up the domain so that it supports .cgi execution [unless the following works in .htaccess] Addhandler cgi-script .cgi
3. update the .htaccess file with the following line in the Rewrite conditions
RewriteCond %{REQUEST_URI} !\.cgi
4. upload the 3 scripts/*.* files
5. create a scripts.xsl with the following features
* <template match="script"> (main template match -- usually an editable region)
* in the body just do ###DATA### as per the RWAP templates/scripts.xsl
Upload all changes to .dev site and hope for the best!
Search Form Code
<FORM method="get" action="/scripts/search.php">
<TABLE border="0">
<TR>
<TD valign="bottom" align="center"><strong>
<font color="#FFFFFF">Search: </font></strong>
<INPUT TYPE="text" NAME="q" SIZE="20"/>
<INPUT TYPE="hidden" NAME="cs" VALUE="utf-8"/>
<INPUT TYPE="hidden" NAME="ul" VALUE="http://www.retirementwithapurpose.com/"/>
<img src="/images/spacer.gif" width="5" height="20" />
<INPUT TYPE="submit" VALUE="Go!"/>
</TD>
</TR>
</TABLE>
</FORM>