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: General / Classic ASP versions(v3.4.XX)
 Changing the forum categories
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

KelleN
Starting Member

28 Posts

Posted - 16 July 2003 :  22:28:01  Show Profile  Visit KelleN's Homepage
I've looked all over the forum. I can't seem to find out how to change the title of the forum default categories. For example, if you go to my forum, http://www.jmconsultingllc.com/aspforum and look at the default forum name and category from Snitz Forum 2000 to my custom name?

I click on edit forum, and try to change the name, and it's programed into a drop box.

Any ideas?

Btw, I checked the box for icons, but I don't see them there when I post a message.

thanks for your help

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 17 July 2003 :  07:11:17  Show Profile  Send ruirib a Yahoo! Message
You need to click the pencil icon near the category name, just as you do for the forums.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

hayleypink
Junior Member

Haiti
145 Posts

Posted - 17 July 2003 :  07:14:51  Show Profile
Make sure you are logged in as Admin/Moderator....I just had a look and cant see any forums...just create a forum.
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 17 July 2003 :  08:26:35  Show Profile  Visit KelleN's Homepage
I was logged in as Admin, but I didn't see any pencil that would allow me to delete the snitz forum. I couldn't delete in it the Group Categories Config either.

TIA

OH! I'm getting a black background in the forum w/ an error:

Microsoft VBScript runtime error '800a000d'
Type mismatch: 'recForumCount'

/aspforum/default.asp, line 409


Any ideas?
TIA
KelleN
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 17 July 2003 :  08:32:54  Show Profile  Send ruirib a Yahoo! Message
Looks like you may have deleted all existing forums, no? The existing forum SHOULD not be deleted until you create at least a new one.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 17 July 2003 :  09:53:45  Show Profile  Visit KelleN's Homepage
Does it still look like that. I installed windows 2000 SP4 and had to reboot the servers. My apologies if you were there and it wasn't operational.
Go to Top of Page

hayleypink
Junior Member

Haiti
145 Posts

Posted - 17 July 2003 :  10:28:35  Show Profile
looks like you are fine now you have started a new forum called general
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 17 July 2003 :  21:05:30  Show Profile  Visit KelleN's Homepage
Hi Hayley and All.

Thank you for responding. I am still completely brand spanking new at this. I still don't have a clue how to modify the category name from Snitz 2000 forum to something else, this is the one when you first installed snitz, it had the testing forum in it. I can't seem to delete it or change it.

2nd. Hayley, love the look of your forum (as it's the 3rd I've seen, snitz, mine and now yours). I would like to advance in the next few days to upgrading a) the colour b) adding an active users, total users online, highest users online, like on the forum.snitz.com page. and c) I love that Event's Calander on the bottom of Hayley's Forum.

Thanks,
KelleN
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 18 July 2003 :  04:03:11  Show Profile  Send ruirib a Yahoo! Message
http://forum.snitz.com/faq.asp#addlockeditdelete


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 19 July 2003 :  15:10:21  Show Profile  Visit KelleN's Homepage
Hi,

I was able to delete it from within the Admin mode. For some reason, it wasn't showing me the options to delete it before today.

2 Questions:

1) How can I get an ASP script that adds:<b> Active Users on Site: XX |Today's Visitors: XX | Total Visited Users: XXXX </b>

2) How can I add my site links to the existing Forum Header Links?

TIA
KelleN
www.jmconsultingllc.com || www.jmconsultingllc.com/aspforum
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 19 July 2003 :  16:16:42  Show Profile
1) do a search for the Active Users MOD
2) modify the navigation subroutine (in inc_header) to add your links.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 19 July 2003 :  17:27:50  Show Profile  Visit KelleN's Homepage
I've searched and read dozens of posts from my query of "Active Users Mod/script" and I've yet to find one.

I've been to the Snitz add on's page, didn't see one there either.

I currently use one that references to this asp code on my site, but it keep track of what I want, and I'm too inexperienced to modify it to what I would like. Here's the reference asp page script:

<%

Sub LogActiveUser
Dim strActiveUserList
Dim intUserStart, intUserEnd
Dim strUser
Dim strDate

strActiveUserList = Application("ActiveUserList")

If Instr(1, strActiveUserList, Session.SessionID) > 0 Then
Application.Lock
intUserStart = Instr(1, strActiveUserList, Session.SessionID)
intUserEnd = Instr(intUserStart, strActiveUserList, "|")
strUser = Mid(strActiveUserList, intUserStart, intUserEnd - intUserStart)
strActiveUserList = Replace(strActiveUserList, strUser, Session.SessionID & ":" & Now())
Application("ActiveUserList") = strActiveUserList
Application.UnLock
Else
Application.Lock
Application("ActiveUsers") = CInt(Application("ActiveUsers")) + 1
Application("ActiveUserList") = Application("ActiveUserList") & Session.SessionID & ":" & Now() & "|"
Application.UnLock
End If

End Sub

Sub ActiveUserCleanup
Dim ix
Dim intUsers
Dim strActiveUserList
Dim aActiveUsers
Dim intActiveUserCleanupTime
Dim intActiveUserTimeout

intActiveUserCleanupTime = 1 'In minutes, how often should the ActiveUserList be cleaned up.
intActiveUserTimeout = 20 'In minutes, how long before a User is considered Inactive and is deleted from ActiveUserList

If Application("ActiveUserList") = "" Then Exit Sub

If DateDiff("n", Application("ActiveUsersLastCleanup"), Now()) > intActiveUserCleanupTime Then

Application.Lock
Application("ActiveUsersLastCleanup") = Now()
Application.Unlock

intUsers = 0
strActiveUserList = Application("ActiveUserList")
strActiveUserList = Left(strActiveUserList, Len(strActiveUserList) - 1)

aActiveUsers = Split(strActiveUserList, "|")

For ix = 0 To UBound(aActiveUsers)
If DateDiff("n", Mid(aActiveUsers(ix), Instr(1, aActiveUsers(ix), ":") + 1, Len(aActiveUsers(ix))), Now()) > intActiveUserTimeout Then
aActiveUsers(ix) = "XXXX"
Else
intUsers = intUsers + 1
End If
Next

strActiveUserList = Join(aActiveUsers, "|") & "|"
strActiveUserList = Replace(strActiveUserList, "XXXX|", "")

Application.Lock
Application("ActiveUserList") = strActiveUserList
Application("ActiveUsers") = intUsers
Application.UnLock

End If

End Sub

%>
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 19 July 2003 :  17:32:55  Show Profile
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=26194&SearchTerms=active,users,mod

it helps if you narrow your search to the appropriate forum.

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 19 July 2003 :  17:41:56  Show Profile  Visit KelleN's Homepage
LOL.
I didn't do that. Now when you searched this, did you actually include the commas between your words? i.e., active,users,mod? I put in spaces, then searched w/ quotes. But I didn't specify which forum, just general.

Thanks Nikkol.

KelleN
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 19 July 2003 :  17:45:27  Show Profile
no commas. i just typed "active users mod" (without the double quotes)

Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~
Go to Top of Page

KelleN
Starting Member

28 Posts

Posted - 19 July 2003 :  19:04:30  Show Profile  Visit KelleN's Homepage
Thanks for your wonderful help!

KelleN
www.jmconsultingllc.com
Go to Top of Page
  Previous Topic Topic Next Topic  
 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.32 seconds. Powered By: Snitz Forums 2000 Version 3.4.07