Author |
Topic  |
|
buckfu
Starting Member
18 Posts |
Posted - 14 February 2007 : 22:13:54
|
hey folks,
I'm getting an error every time I try to edit an entry on a forum I set up, relating to the gatekeeper mod, and I'm not sure how to fix it. here is the error:
Microsoft VBScript compilation error '800a03ea'
Syntax error /forum/post.asp, line 553 'GateKeeper Mod ^
Here is the code from line 552 to 572 in my post.asp page:
" </tr>" & vbNewLine & _ 'GateKeeper Mod if strLinkSpamGatekeeper = "1" then Response.Write " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""top"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Antispam question:</b></font></td>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ valign=""top"">" & strGatekeeperQuestion & "</td>" & vbNewLine & _ " </tr>" & vbNewLine & _ " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""top"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Answer:</b></font></td>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ valign=""top""><input name=""GateKeeperAnswer"" size=""25"" type=""text"" value=""" & Request.Form("GateKeeperAnswer") & """></td>" & vbNewLine & _ " </tr>" & vbNewLine end if 'GateKeeper Mod " <tr>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ noWrap vAlign=""top"" align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Password:</b></font></td>" & vbNewLine & _ " <td bgColor=""" & strPopUpTableColor & """ valign=""top""><input name=""Password"" maxLength=""25"" size=""25"" type=""password"" value=""" & Request.Form("password") & """></td>" & vbNewLine & _ " </tr>" & vbNewLine end if end if
if strAllowForumCode = "1" and strShowFormatButtons = "1" then ====================
any help figuring it out will be appreciated. the forum can be found on www.historicjoplin.com. Thanks in advance.
B
|
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 15 February 2007 : 04:29:55
|
Remove the &_ from the end of line 552.
|
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.” |
 |
|
buckfu
Starting Member
18 Posts |
Posted - 15 February 2007 : 07:53:15
|
quote: Originally posted by Shaggy
Remove the &_ from the end of line 552.
Thanks shaggy for the reply, I tried that, now when I hit the edit button, it displays an http 500 internal server error. any other ideas?
|
 |
|
Shaggy
Support Moderator
    
Ireland
6780 Posts |
Posted - 15 February 2007 : 08:05:08
|
Add response.write before line 565. Probably best if you go through the readme for the mod again to double check that you haven't made any similar errors.
|
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.” |
 |
|
buckfu
Starting Member
18 Posts |
Posted - 15 February 2007 : 08:12:47
|
quote: Originally posted by Shaggy
Add response.write before line 565. Probably best if you go through the readme for the mod again to double check that you haven't made any similar errors.
that did the trick, thanks so much! I really appreciate it  |
 |
|
|
Topic  |
|