Author |
Topic |
|
jgs
New Member
Netherlands
95 Posts |
Posted - 23 January 2009 : 09:30:07
|
When I click on the pencil icon to edit a category I get a IE errormessage saying "Text area not found" and after "OK" I get the group settings. It must be result of adding several Mods, but where to look for typo's? In other words, which routine start when you click on the pencil for categories and what can cause the error.
The screen looks OK. < |
Info about my forum: http://www.govvd.nl/forumsoftware.htm list of Mods included. Most of userinterface translated into Dutch. |
|
Shaggy
Support Moderator
Ireland
6780 Posts |
Posted - 23 January 2009 : 09:46:15
|
We'll need a link to a *.txt copy of your post.asp file.
< |
Search is your friend “I was having a mildly paranoid day, mostly due to the fact that the mad priest lady from over the river had taken to nailing weasels to my front door again.” |
|
|
Podge
Support Moderator
Ireland
3775 Posts |
|
bobby131313
Senior Member
USA
1163 Posts |
Posted - 23 January 2009 : 11:03:39
|
Mine does it too, just checked it out.
It's googiespell. Remove the following and it goes away....
It's looking for a textarea to spell check and there isn't one. < |
Switch the order of your title tags |
Edited by - bobby131313 on 23 January 2009 11:05:03 |
|
|
jgs
New Member
Netherlands
95 Posts |
Posted - 23 January 2009 : 11:31:30
|
In which file can I find this line? I searched all files but couldn't find it.
BTW, after removing, there's no loss of functionality?< |
Info about my forum: http://www.govvd.nl/forumsoftware.htm list of Mods included. Most of userinterface translated into Dutch. |
|
|
bobby131313
Senior Member
USA
1163 Posts |
Posted - 23 January 2009 : 11:37:13
|
It's in post.asp. It's around line 1600 on mine but my post.asp is heavily modified.
If you remove it you will lose the googiespell mod I'm sure. I guess the code would need to be modified to have it not fire if the method is EditCategory. That's a little over my head. After the error box is cleared everything works fine, so I'm not overly concerned about it.< |
Switch the order of your title tags |
Edited by - bobby131313 on 23 January 2009 11:39:15 |
|
|
jgs
New Member
Netherlands
95 Posts |
Posted - 23 January 2009 : 11:46:47
|
Found it and I agree, click OK and you can continue, and only the admin gets the error.< |
Info about my forum: http://www.govvd.nl/forumsoftware.htm list of Mods included. Most of userinterface translated into Dutch. |
|
|
bobby131313
Senior Member
USA
1163 Posts |
|
bobby131313
Senior Member
USA
1163 Posts |
Posted - 23 January 2009 : 12:11:09
|
OK I think I got it fixed anyway change that block of code to look like this....
Be sure to change the location of the script and make a backup first!
Working for me so far.< |
Switch the order of your title tags |
Edited by - bobby131313 on 23 January 2009 12:16:23 |
|
|
jgs
New Member
Netherlands
95 Posts |
Posted - 23 January 2009 : 15:01:38
|
OK Thanks, I'll try.
The idea sounds good.
Nope, got an error on the first line:
Microsoft VBScript compilation error '800a0401'
Expected end of statement
/forum/post.asp, line 1562
Response.Write "</td>" & vbNewline & _ ----------------^< |
Info about my forum: http://www.govvd.nl/forumsoftware.htm list of Mods included. Most of userinterface translated into Dutch. |
Edited by - jgs on 23 January 2009 15:16:21 |
|
|
bobby131313
Senior Member
USA
1163 Posts |
Posted - 23 January 2009 : 15:26:20
|
Interesting, I wonder if I had some prior changes in that area that you don't. Can you post that section of your post.asp and include like 10 lines before and after?< |
Switch the order of your title tags |
|
|
jgs
New Member
Netherlands
95 Posts |
Posted - 23 January 2009 : 18:55:00
|
Off course, this is without your correction.
if strAllowForumCode = "1" or strAllowHTML = "1" then if strRqMethod = "Reply" or _ strRqMethod = "ReplyQuote" or _ strRqMethod = "Edit" or _ strRqMethod = "EditTopic" or _ strRqMethod = "Topic" or _ strRqMethod = "TopicQuote" then Response.Write " <input name=""Preview"" type=""button"" value="" Voorbeeld "" onclick=""OpenPreview()"">" end if end if 'Response.Write " <input name=""Reset"" type=""reset"" value=""Reset Fields"" tabindex=""-1""></td>" & vbNewline & _ Response.Write "</td>" & vbNewline & _ " </tr>" & vbNewline & _ " </form><script type=""text/javascript""> var googie1 = new GoogieSpell(""googiespell/"", ""./googiespell/googie.asp?lang=""); googie1.decorateTextarea(""ta1"");</script>" & vbNewLine & _ " </table>" & vbNewline & _ " </td>" & vbNewline & _ " </tr>" & vbNewline & _ " </table>" & vbNewline & _ " <br />" & vbNewline
if strRqMethod = "Reply" or _ strRqMethod = "TopicQuote" or _ strRqMethod = "ReplyQuote" then Response.Write " </td>" & vbNewLine & _ " </tr>" & vbNewLine & _ "</table>" & vbNewLine & _ "<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""95%"">" & vbNewLine & _ " <tr>" & vbNewLine & _ " <td>" & vbNewLine & _ " <table border=""0"" width=""100%"" cellspacing=""0"" cellpadding=""0"" align=""center"">" & vbNewLine & _ " <tr>" & vbNewLine & _ " <td bgcolor=""" & strTableBorderColor & """>" & vbNewLine & _ " <table border=""0"" width=""100%"" cellspacing=""1"" cellpadding=""4"">" & vbNewLine & _ " <tr>" & vbNewLine & _ " <td bgcolor=""" & strHeadCellColor & """ colspan=""2"" align=""center""><b><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """ color=""" & strHeadFontColor & """>T O P I C R E V I E W</font></b></td>" & vbNewLine & _ " </tr>" & vbNewLine if (mLev = 4) or (chkForumModerator(strRqForumId, strDBNTUserName) = "1") then Moderation = "N" else< |
Info about my forum: http://www.govvd.nl/forumsoftware.htm list of Mods included. Most of userinterface translated into Dutch. |
|
|
|
Topic |
|