Clean install, No other MODS
Running mySQL
I have done this, and my system gets an error when trying to read a topic.
Error is: An error has occured on the server when processing the URL. Please contact the systems administrator.
These are the instruction I ahve used.
if your viewing this with notepad, ensure you have the WordWrap OFF
inc_spellcheck.js - To your forum's folder
ie C:\Snitz\Forum
Create a directory or folder called Downloads under your forum.
ie C:\Snitz\Forum\downloads
Modify post.asp
============================
Find this line:
Response.Write " <script language=""JavaScript"" type=""text/javascript"" src=""inc_code.js""></script>" & vbNewLine & _
Add this directly below it:
" <script language=""JavaScript"" type=""text/javascript"" src=""inc_spellcheck.js""></script>" & vbNewLine & _
Find this line:
Response.Write " <input name=""Preview"" type=""button"" value="" Preview "" onclick=""OpenPreview()"">"
Add this directly below it:
Response.write "<script language=""JavaScript"" type=""text/javascript"">checkspells();</script>"
Modify topic.asp
=============================
Find this line:
mypage = request("whichpage")
Add this line directly ABOVE it:
Response.write " <script language=""JavaScript"" type=""text/javascript"" src=""inc_spellcheck.js""></script> "
Find this line:
" <td bgColor=""" & strForumCellColor & """ noWrap align=""center"" colspan=""2""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """><input name=""Submit"" type=""submit"" value=""Submit Reply""> <input name=""Preview"" type=""button"" value=""Preview Reply"" onclick=""OpenPreview()""> <input name=""Reset"" type=""reset"" value=""Reset Form""></font></td>" & vbNewLine & _
MODIFY the line to look like this:
" <td bgColor=""" & strForumCellColor & """ noWrap align=""center"" colspan=""2""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """><input name=""Submit"" type=""submit"" value=""Submit Reply""> <input name=""Preview"" type=""button"" value=""Preview Reply"" onclick=""OpenPreview()""><script language=""JavaScript"" type=""text/javascript"">checkspells();</script> <input name=""Reset"" type=""reset"" value=""Reset Form""></font></td>" & vbNewLine & _
DONE!
-=NiteOwl=-