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: MOD Implementation
 Active User Implemation problem
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  12:29:15  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
My forum is working and all but, my admin_hope.asp is not. Error comes up:

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'fLang'

/vertical/forum/admin_home.asp, line 127


Here is the script:

" <LI><span class=""spnMessageText""><a href=""admin_config_features.asp"">Feature Configuration</a></span></LI>" & vbNewLine
if strAuthType = "nt" then
Response.Write " <LI><span class=""spnMessageText""><a href=""admin_config_NT_features.asp"">Feature NT Configuration</a></span></LI>" & vbNewLine
end if
Response.Write " <LI><span class=""spnMessageText""><a href=""admin_config_members.asp"">Member Details Configuration</a></span></LI>" & vbNewLine & _
" <LI><span class=""spnMessageText""><a href=""admin_config_ranks.asp"">Ranking Configuration</a></span></LI>" & vbNewLine & _

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 27 November 2004 :  12:34:02  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
Sound like you haven't installed the languages.
Follow the Language Installation instuction in the MOD's readme file.

My MODs:
Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook
Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch

Useful stuff:
Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  13:43:15  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
thx man
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  14:16:36  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
Oh boy, found another problem...im real sorry guys:

Microsoft VBScript compilation error '800a0400'

Expected statement

/vertical/forum/pop_profile.asp, line 1293

case "ModifyIt"
^



SCRIPT:

if strUseExtendedProfile then
Response.Write " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & strRefer & """>Back To Forum</a></font></p>" & vbNewLine
end if
end if
case "ModifyIt"
if strUseExtendedProfile then
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
Go to Top of Page

Jorrit787
Average Member

Netherlands
681 Posts

Posted - 27 November 2004 :  17:58:09  Show Profile  Visit Jorrit787's Homepage  Send Jorrit787 an AOL message  Send Jorrit787 a Yahoo! Message
Do you have a Select Case statement above what you posted, and an End Select underneath it Like this:

Select Case
...
if strUseExtendedProfile then
Response.Write " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & strRefer & """>Back To Forum</a></font></p>" & vbNewLine
end if 
end if 
case "ModifyIt"
if strUseExtendedProfile then
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
...
End Select

eXtremeGossip
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:03:24  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
nope i searched for select case and there is no select case. As well as no end case
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:06:08  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
whoops there is a select case lol i forgot to search from the top
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:07:23  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
no end case to be found though
Go to Top of Page

Jorrit787
Average Member

Netherlands
681 Posts

Posted - 27 November 2004 :  18:08:19  Show Profile  Visit Jorrit787's Homepage  Send Jorrit787 an AOL message  Send Jorrit787 a Yahoo! Message
Then you should include it

eXtremeGossip
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:16:16  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
Okay man im acting a little weird. I typed end case instead of end select. >_< Ok here is the scripts:

LINE 139:select case Request.QueryString("mode")

LINE 141: case "display" '## Display Profile

if strUseExtendedProfile then
Response.Write " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & strRefer & """>Back To Forum</a></font></p>" & vbNewLine
end if
end if
LINE 1292:case "ModifyIt"
if strUseExtendedProfile then
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _

LINE 1603:end select

LINE 1605:set rs = nothing


Plz tell me what i am doing wrong and if you need any more information
Go to Top of Page

Jorrit787
Average Member

Netherlands
681 Posts

Posted - 27 November 2004 :  18:26:40  Show Profile  Visit Jorrit787's Homepage  Send Jorrit787 an AOL message  Send Jorrit787 a Yahoo! Message
Let's see... Where you have those two End If's, I think you need to delete one and place it after the last If, like this:

select case Request.QueryString("mode") 
case "display" '## Display Profile
if strUseExtendedProfile then
Response.Write " <p align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><a href=""" & strRefer & """>Back To Forum</a></font></p>" & vbNewLine
end if
case "ModifyIt"
if strUseExtendedProfile then
Response.Write " <table width=""100%"" border=""0"">" & vbNewLine & _
end if
end select

set rs = nothing


Nested If and Case blocks are so tricky...

eXtremeGossip
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:32:30  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
Alright man, same error comes up pretty much:

Microsoft VBScript compilation error '800a0400'

Expected statement

/vertical/forum/pop_profile.asp, line 1291

case "ModifyIt"
^
Go to Top of Page

Jorrit787
Average Member

Netherlands
681 Posts

Posted - 27 November 2004 :  18:37:25  Show Profile  Visit Jorrit787's Homepage  Send Jorrit787 an AOL message  Send Jorrit787 a Yahoo! Message
Looks you're not instructing the script to do anything if UseExtendedProfile is false - You need an else statement for both If blocks, telling the script what you want it to do if UseExtendedProfile is false.

eXtremeGossip
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:38:28  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
should i just reload the old one and try to reconfigure it?
Go to Top of Page

Jorrit787
Average Member

Netherlands
681 Posts

Posted - 27 November 2004 :  18:44:48  Show Profile  Visit Jorrit787's Homepage  Send Jorrit787 an AOL message  Send Jorrit787 a Yahoo! Message
I could send you my pop_profile.asp to see if that works, otherwise I think that would be best.

eXtremeGossip
Go to Top of Page

JohnJohn1186
Junior Member

103 Posts

Posted - 27 November 2004 :  18:46:06  Show Profile  Send JohnJohn1186 an AOL message  Send JohnJohn1186 a Yahoo! Message
im going to reload my old one
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 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.31 seconds. Powered By: Snitz Forums 2000 Version 3.4.07