Author |
Topic |
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 04 September 2003 : 19:16:24
|
In Admin_home.asp,
" <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_order.asp')"">Category/Forum Order Configuration</a></span></LI>" & vbNewLine & _
i make a blank line beneath that and i paste the following:
" <LI><span class=""spnMessageText""><a href=""admin_config_activeusers.asp"">" & fLang(strLangMOD_Ls3kAU_05000) & "</a></span></LI>" & vbNewLine & _
but if i login on Admin Options i see this:
Administrative Functions Forum Feature Configuration:
Main Forum Configuration Feature Configuration Microsoft VBScript runtime error '800a000d'
Type mismatch: 'fLang'
/forum/admin_home.asp, line 131
What is the problem ? __________________________________________
This is a part of admin_home.asp:
end if -->line 131 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 & _ " <LI><span class=""spnMessageText""><a href=""admin_config_datetime.asp"">Server Date/Time Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""admin_config_email.asp"">Email Server Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""admin_config_colors.asp"">Font/Table Color Code Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_badwords.asp')"">Bad Word Filter Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_namefilter.asp')"">UserName Filter Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""javascript:openWindow3('admin_config_order.asp')"">Category/Forum Order Configuration</a></span></LI>" & vbNewLine & _ " <LI><span class=""spnMessageText""><a href=""admin_config_activeusers.asp"">" & fLang(strLangMOD_Ls3kAU_05000) & "</a></span></LI>" & vbNewLine & _ " </UL></p>" & vbNewLine & _ " </font></td>" & vbNewLine & _ " <td bgcolor=""" & strForumCellColor & """ valign=""top""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & vbNewLine & _
I don't know what is the problem Moved to a more appropriate forum - Dave |
Igor Bonbon |
Edited by - davemaxwell on 08 September 2003 07:21:19 |
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 04 September 2003 : 19:30:01
|
You need to add the internationalization code to config.asp. This is the last instructions found in the readme-file. |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 04 September 2003 : 20:19:09
|
quote: You need to add the internationalization code to config.asp. This is the last instructions found in the readme-file.
Thanks masterao ! :)
But i have one more problem. I don't have |Active Users| in my menu bar on the top - right of the page, why ? :(
|
Igor Bonbon |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 04 September 2003 : 21:46:48
|
You need to add that manually for it to appear.
At the end of inc_header.asp, locate the following block of code:
" |" & vbNewline & _
" <a href=""faq.asp""" & dWStatus("Answers to Frequently Asked Questions...") & " tabindex=""-1""><acronym title=""Answers to Frequently Asked Questions..."">FAQ</acronym></a>"
After the above code, add the following:
& _
" |" & vbNewline & _
" <a href=""active_users.asp""" & dWStatus("Active Users...") & " tabindex=""-1""><acronym title=""Active Users..."">Active Users</acronym></a>"
It should now look like this (new code marked red):
" |" & vbNewline & _
" <a href=""faq.asp""" & dWStatus("Answers to Frequently Asked Questions...") & " tabindex=""-1""><acronym title=""Answers to Frequently Asked Questions..."">FAQ</acronym></a>" & _
" |" & vbNewline & _
" <a href=""faq.asp""" & dWStatus("Active Users...") & " tabindex=""-1""><acronym title=""Active Users..."">Active Users</acronym></a>"
end sub
|
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 05 September 2003 : 14:48:10
|
Thanks again masterao.
But i have one more problem. If i wont to register user i go on: http://www.clan-snt.com/forum/policy.asp
And i click Agree I make all in the that page and i click Submit, but in next page i view this:
Microsoft JET Database Engine error '80040e14'
Number of query values and destination fields are not the same.
/forum/register.asp, line 580
What is the problem ?
|
Igor Bonbon |
|
|
masterao
Senior Member
Sweden
1678 Posts |
|
tduffy
Junior Member
146 Posts |
Posted - 05 September 2003 : 21:49:29
|
this topic should be in the mod implementation forum |
|
|
ehoffman73
Starting Member
45 Posts |
Posted - 06 September 2003 : 03:10:27
|
When I am logged in, I get this error:
http://www.purplepride.org/skolvikes/active.asp
Microsoft VBScript runtime error '800a000d' Type mismatch: 'IsPoll'
/skolvikes/active.asp, line 465
Any quick ideas? |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 06 September 2003 : 09:57:14
|
ehoffman, please start your own topic in the right forum (as tduffy pointed out), as your problem is with another mod than the one we are discussing here. |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 06 September 2003 : 17:02:17
|
quote: Originally posted by ClanSnT
Thanks again masterao.
But i have one more problem. If i wont to register user i go on: http://www.clan-snt.com/forum/policy.asp
And i click Agree I make all in the that page and i click Submit, but in next page i view this:
Microsoft JET Database Engine error '80040e14'
Number of query values and destination fields are not the same.
/forum/register.asp, line 580
What is the problem ?
quote: Originally posted by masterao
Could you provide a link to a text-version of your register.asp?
Yes, please see: http://www.clan-snt.com/register.txt |
Igor Bonbon |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 06 September 2003 : 17:12:52
|
This is error when user try to activet account:
Activation Key Not Found!
Your activation key was not found in our database. Please try registering again by clicking the Register link at the top right hand corner. If this problem persists, please contact the Administrator of the forums.
|
Igor Bonbon |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 06 September 2003 : 19:48:42
|
The register.asp you provided a link to didn't have any AU-code added to it, so I cannot say what is wrong with it.
In any case, I've added the AU-code to the register.asp you provided, and you can download it from here as a text-file (I'll only keep the file until you have downloaded it). |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
|
Roland
Advanced Member
Netherlands
9335 Posts |
Posted - 07 September 2003 : 07:19:24
|
Add some text to the registration email that if the link appears to be broken, the user should copy the entire URL and paste it in the browser's address bar. |
|
|
ClanSnT
Starting Member
Yugoslavia
42 Posts |
Posted - 08 September 2003 : 02:16:22
|
quote: Originally posted by FrutZle
Add some text to the registration email that if the link appears to be broken, the user should copy the entire URL and paste it in the browser's address bar.
I add text to the registration email... But how to fix broken link ? |
Igor Bonbon |
|
|
Webbo
Average Member
United Kingdom
982 Posts |
Posted - 08 September 2003 : 04:28:33
|
What happens if you reduce the number of characters in the key down to say 20? Does the link still appear broken?
|
|
|
Topic |
|