I have the latest and get Snitz 3.4.05 clean install database running on a mySQL.
I added the changes to topics.asp and to post.asp an have received errors, i have
done this twice just to be sure, I have also done this MOD on an earlier release
of Snitz with no problem.
I have the files as outlines at here.
The error I get is this:
An error occurred on the server when processing the URL. Please contact the system administrator.
Any suggestions?
These are the code chnages:
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=-