Author |
Topic |
Shinigami
Starting Member
9 Posts |
Posted - 01 February 2004 : 10:13:47
|
Whow, it doesn't works ... "error 500" everytime I try to go to the profile |
Boogiepop Phantom |
|
|
OneWayMule
Dev. Team Member & Support Moderator
Austria
4969 Posts |
|
Shinigami
Starting Member
9 Posts |
Posted - 01 February 2004 : 13:04:42
|
Hum ... I had unchecked that =/ When an asp forum takes a lot of time in loading, I see the errors, not the "500 etc"; it only happened when I modified the inc ... and the pop ... asp documents and replaced the olds |
Boogiepop Phantom |
|
|
OneWayMule
Dev. Team Member & Support Moderator
Austria
4969 Posts |
|
Shinigami
Starting Member
9 Posts |
Posted - 01 February 2004 : 14:59:43
|
When I replaced the original files with those modificated, it showed the "500 Internal Error"
When a page takes too long for load, it show this:
Active Server Pages error 'ASP 0113'
Script timed out
/nameofforum/document.asp
The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools. |
Boogiepop Phantom |
|
|
Davio
Development Team Member
Jamaica
12217 Posts |
Posted - 01 February 2004 : 15:13:23
|
quote: Originally posted by dayve
I've been letting my members change their titles for 3 years now and never had any major issues.
So how do you deal with members changing thier titles to reflect some administrative or leadership position on your forum? |
Support Snitz Forums
|
|
|
laser
Advanced Member
Australia
3859 Posts |
Posted - 01 February 2004 : 15:23:18
|
Manually ?? |
|
|
Faizan
Average Member
United Kingdom
592 Posts |
Posted - 01 February 2004 : 15:43:42
|
There should be some restricted words filter for this modification, so the members do not change their titles to "Administrator" or "Moderator"
|
»Snitz Graphics
|
|
|
dayve
Forum Moderator
USA
5820 Posts |
Posted - 03 February 2004 : 10:22:51
|
quote: Originally posted by Davio
quote: Originally posted by dayve
I've been letting my members change their titles for 3 years now and never had any major issues.
So how do you deal with members changing thier titles to reflect some administrative or leadership position on your forum?
Easily, I have a separate piece of code that displays whether or not they are an admin, and in the past I color coded the usernames individually for the admins and moderators.
quote: Originally posted by Faizan
There should be some restricted words filter for this modification, so the members do not change their titles to "Administrator" or "Moderator"
Easy again, just throw the title string through the Username Filter function.
|
|
Edited by - dayve on 03 February 2004 10:24:50 |
|
|
LiL•MiSs•bLaZeR
Junior Member
United Kingdom
168 Posts |
Posted - 04 February 2004 : 11:52:54
|
Thanks for that coding OneWayMule I was wanting to let my members chose their own titles too and its worked fine :) |
|
|
jringo
Starting Member
44 Posts |
Posted - 04 February 2004 : 14:47:29
|
So is it possible to put the members "Title" in the threads on the left, under the users name and stars? |
John R. |
|
|
Faizan
Average Member
United Kingdom
592 Posts |
Posted - 04 February 2004 : 15:22:21
|
Is it possible to have something like the following so only members over a certain amount of posts can change their titles?
IF>=100, then something!
Just like I do in my databases work in school.
|
»Snitz Graphics
|
|
|
h1dd3n
New Member
92 Posts |
Posted - 08 February 2004 : 11:25:26
|
ohh, would someone be able to slightlytweak the one above so that it works?! thats a really good idea. If someone posts over 100 then show title change. wow very good idea faizan. im hopeless in coding so could someone help to make it real? |
Edited by - h1dd3n on 08 February 2004 11:27:34 |
|
|
OneWayMule
Dev. Team Member & Support Moderator
Austria
4969 Posts |
Posted - 08 February 2004 : 11:47:04
|
Simply change the code I posted above:
if strMode = "goModify" then
Response.Write " <tr>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>Title: </font></b></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><input name=""Title"" size=""25"" maxLength=""50"" value=""" & CleanCode(rs("M_TITLE")) & """></font></td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
to
if strMode = "goModify" and rs("M_POSTS")>100 then
Response.Write " <tr>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ align=""right"" valign=""middle"" nowrap><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>Title: </font></b></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><input name=""Title"" size=""25"" maxLength=""50"" value=""" & CleanCode(rs("M_TITLE")) & """></font></td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
add the blue code and change the red value to the amount of posts to suit your needs. |
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
|
|
|
LiL•MiSs•bLaZeR
Junior Member
United Kingdom
168 Posts |
Posted - 14 February 2004 : 08:00:59
|
thats cool |
|
|
Topic |
|