Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: General / Classic ASP versions(v3.4.XX)
 Error from IE: text area not found
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

jgs
New Member

Netherlands
95 Posts

Posted - 23 January 2009 :  09:30:07  Show Profile
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  Show Profile
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.”
Go to Top of Page

Podge
Support Moderator

Ireland
3775 Posts

Posted - 23 January 2009 :  10:40:42  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message
If you could also include a link to your forum it would be helpful. It could also be a problem with inc_code.js (or maybe its inc_selectbox.js)<

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 23 January 2009 :  11:03:39  Show Profile  Visit bobby131313's Homepage

Mine does it too, just checked it out.

It's googiespell. Remove the following and it goes away....

<script type="text/javascript"> var googie1 = new GoogieSpell("googiespell/", "http://www.coincommunity.com/forum/googiespell/googie.asp?lang="); googie1.decorateTextarea("ta1");</script>


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
Go to Top of Page

jgs
New Member

Netherlands
95 Posts

Posted - 23 January 2009 :  11:31:30  Show Profile
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.
Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 23 January 2009 :  11:37:13  Show Profile  Visit bobby131313's Homepage
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
Go to Top of Page

jgs
New Member

Netherlands
95 Posts

Posted - 23 January 2009 :  11:46:47  Show Profile
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.
Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 23 January 2009 :  12:00:42  Show Profile  Visit bobby131313's Homepage
Exactly.<

Switch the order of your title tags
Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 23 January 2009 :  12:11:09  Show Profile  Visit bobby131313's Homepage
OK I think I got it fixed anyway change that block of code to look like this....


Response.Write "</td>" & vbNewline & _
" </tr>" & vbNewline & _
" </form>" & vbNewLine
if strRqMethod <> "EditCategory" then
Response.Write "<script type=""text/javascript""> var googie1 = new GoogieSpell(""googiespell/"", ""http://www.coincommunity.com/forum/googiespell/googie.asp?lang=""); googie1.decorateTextarea(""ta1"");</script>" & vbNewLine
end if
Response.Write " </table>" & vbNewline & _
" </td>" & vbNewline & _
" </tr>" & vbNewline & _
" </table>" & vbNewline & _
" <br />" & vbNewline



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
Go to Top of Page

jgs
New Member

Netherlands
95 Posts

Posted - 23 January 2009 :  15:01:38  Show Profile
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
Go to Top of Page

bobby131313
Senior Member

USA
1163 Posts

Posted - 23 January 2009 :  15:26:20  Show Profile  Visit bobby131313's Homepage
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
Go to Top of Page

jgs
New Member

Netherlands
95 Posts

Posted - 23 January 2009 :  18:55:00  Show Profile
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.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07