Author |
Topic  |
|
phaedrus
Starting Member
2 Posts |
Posted - 28 March 2006 : 12:54:28
|
I'm completely new to this BTW.
I running the latest version of snitz and have only installed one previous mod "active users" and have installed additonal smilies.
All worked well.
I then installed Proeders mod and I got some error messages -I ended up replacing all the files from the previous mod with the default snitz files (incase there was conflict or anything) and then just uploading the files from the replace directory of proeders mod following the instructions given.
I now get the following errors:
When I try to reply in a post I get:
Microsoft VBScript compilation error '800a0401' Expected end of statement /forum/post.asp, line 1059 "<td bgColor=""" & strPopUpTableColor """ valign=""center"">" & vbNewLine & _ --------------------------------------^
When I try to access attachment admin I get:
ADODB.Field error '800a0bcd' Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. /forum/admin_attach.asp, line 65
Any help most appreciated.
|
|
Classicmotorcycling
Development Team Leader
    
Australia
2085 Posts |
Posted - 28 March 2006 : 14:04:09
|
This is a simple fix, simply change line 1059 in your forums post.asp file to the below:
"<td bgColor=""" & strPopUpTableColor & """ valign=""center"">" & vbNewLine & _
Notice the extra & symbol. You might find that is causing your issue. I hope it helps. |
Cheers, David Greening |
 |
|
Zuel
Average Member
  
USA
540 Posts |
Posted - 28 March 2006 : 14:40:40
|
Also note there are several places he forgot to add this.
Same fix should correct that. |
My Completed Mods: News Mod | Zuel's Avatar Add-on In Development: World of Warcraft Member Roster | [C# Based Forum]
Note - I may take a few days to recieve your email. Hotmail filters all new emails as junk. Would be best to post all questions, concerns in a forum topic to catch my immediate attention. This way others can assist and also correct any similar mistakes.
MSN / E-Mail: ucyimDa_Ruler@Hotmail.com
Personal Bookmarks: How to work a DBS File
|
 |
|
phaedrus
Starting Member
2 Posts |
Posted - 28 March 2006 : 15:06:57
|
Thanks, but now I'm getting:
Microsoft VBScript compilation error '800a0409'
Unterminated string constant
/forum/post.asp, line 1060
" <font face=""" & strDefaultFontFace & """ size="" strDefaultFontSize vbNewLine _ -----------------------------------------------------------------------------------------^
Code is:
if strAllowAttachment = 1 then Response.Write "<tr>" & vbNewLine & _ "<td bgColor=""" & strPopUpTableColor & """> </td>" & vbNewLine & _ "<td bgColor=""" & strPopUpTableColor & """ valign=""center"">" & vbNewLine & _ " <font face=""" & strDefaultFontFace & """ size="" strDefaultFontSize vbNewLine _ " ><a href=""#"" onClick=""window.open('pop_upload_new.asp','Uploading','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=800,height=330');""><acronym title=""Datei anhängen..."">" & getCurrentIcon(strIconPaperClip,"","") & "</acronym></a><acronym title=""Datei anhängen...""> <font face=""" & strDefaultFontFace """ size="" strDefaultFontSize """ color="" strDefaultFontColor """>Um eine Datei anzuhängen, bitte auf den Button klicken</font></acronym><font face=""" & strDefaultFontFace """ size="" strDefaultFontSize """ color="" strDefaultFontColor """><br /></font>" & vbNewLine & _ "</td>" & vbNewLine & _ "</tr>" & vbNewLine end if
|
 |
|
squad23
Starting Member
Netherlands
40 Posts |
Posted - 28 March 2006 : 17:44:40
|
" <font face=""" & strDefaultFontFace & """ size="" strDefaultFontSize vbNewLine _ needs to be " <font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ " & vbNewLine & _
on the other lines there are also a couple of changes you heve to make
|
Edited by - squad23 on 28 March 2006 17:53:19 |
 |
|
|
Topic  |
|