Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Active Users vs 3.5
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 6

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  02:50:37  Show Profile  Visit Nathan's Homepage
1) Make sure you got everything in config.asp

2) What version are you trying to install it on. . . I had a similar problem on a 3.3 final untill I upgraded to a 3.3.03

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Reddneck
Starting Member

Canada
7 Posts

Posted - 14 January 2002 :  02:55:50  Show Profile
That would be the problem then....I am running Vers. 3 final....Am I going to have to redo all of the code that I just entered?

Also, I wanted to point out that in the pop_profile.asp you have made a spelling mistake in the Active Users Line. Makes it hard to search for the Active Users lines. It's only in pop_profile.asp though.


strSql = strSql & ", " & strMemberTablePrefix & "MEMBERS.M_AUHIDE" '<--- ### Active Useres 3.5 Code!!!: one line only


Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  03:00:24  Show Profile  Visit Nathan's Homepage
Oh! no wonder people miss that line. Thank you for pointing that out. It will be fixed in vs 4.0 (Will be for version 3.4 and 4.x beatas.)

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Reddneck
Starting Member

Canada
7 Posts

Posted - 14 January 2002 :  03:02:49  Show Profile
Am I going to have to redo all of the code that I just entered?

and

Is there a section that deals with upgrading your current version of the forums to the newest one?

Thanks again for all your help Nathan.


Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  03:06:47  Show Profile  Visit Nathan's Homepage
You will have to put the code back in for any mods you have made

As far as upgrading goes, I think its in the readme.txt but all you should have to do is upload the new asp files and then run setup.asp > upgrade database

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  03:07:48  Show Profile  Visit Nathan's Homepage
And no warintees come with my advice

 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

Reddneck
Starting Member

Canada
7 Posts

Posted - 14 January 2002 :  03:12:32  Show Profile
I looked in the readme.txt file an couldn't find anything to do with upgrading....Will running the upgrade damage my database file at all? (as long as I don't upload the new db file?) and will it look the same?

What about all the paths that I put in @ the start...do I have to go back in and enter them again too? (config.asp file)

Go to Top of Page

Reddneck
Starting Member

Canada
7 Posts

Posted - 14 January 2002 :  04:34:00  Show Profile
Ok, did the updates, updated to the new version of snitz. It all worked perfectly but still won't change from off on all of the settings for it to work..... I have cleared my cache and re booted several times......Ya got me....Any ideas anyone?

Go to Top of Page

dimitris
Starting Member

8 Posts

Posted - 14 January 2002 :  04:49:29  Show Profile
Active users mod 3.5 works without problems for me except :

When I try to delete a topic I get the following error
ADODB.Field error '800a0bcd'
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.

/inc_activeusers.asp, line 95

This also happens if someone tries to view a deleted topic.

Edited by - dimitris on 14 January 2002 04:53:10
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 14 January 2002 :  07:02:26  Show Profile  Visit HuwR's Homepage
Nathan,
You need to change the readme in your Zip, your are not allowed to say what I have highlighted in red, if it is released under the same GPL terms a Snitz, then anyone is entitled to charge for distribution of the files, it is part of the GPL

quote:

Terms of use and distribution: (Found on all ls3k made and packaged mods)
This is a modification made available for Snitz forums. (http://forum.snitz.com)
It is released under the same terms (General Public License) as Snitz forums with the following exceptions.

This mod, or variations of it, cannot be sold.
Any distribution of this mod must be open to the public and free for everyone.
If you paid for this Mod, or had to pay for access to downloading it, then the distributor has
violated these distribution terms
. If this occurs, please contact me. (nathan@ls3k.com)



Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  09:45:45  Show Profile  Visit Nathan's Homepage
Read a little more carefully. I do believe it is legal to modify the terms of the licence for your own purposes.

quote:
Terms of use and distribution: (Found on all ls3k made and packaged mods)
This is a modification made available for Snitz forums. (http://forum.snitz.com)
It is released under the same terms (General Public License) as Snitz forums with the following exceptions.

This mod, or variations of it, cannot be sold.
Any distribution of this mod must be open to the public and free for everyone.
If you paid for this Mod, or had to pay for access to downloading it, then the distributor has
violated these distribution terms. If this occurs, please contact me. (nathan@ls3k.com)



 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 14 January 2002 :  09:56:02  Show Profile  Visit HuwR's Homepage
No , you are not allowed to remove someones rights, that is not permitted.

Since the GPL already states that you can charge to distribute the code, you can not remove this right, if you do not want to allow people to do this then you can't distribute it under the terms of the GPL, and since your mod would not function without Snitz, then you no choice other than to dstribute it under the GPL, or remove it from distribution completely.

Go to Top of Page

nomad_2k
Junior Member

United Kingdom
173 Posts

Posted - 14 January 2002 :  11:13:15  Show Profile
Here's the fix for the problem dimitris was having:

In inc_activeusers.asp make the following changes:
NOTE: before making these change, you need to carry out the changes in my previous reply (13 January 2002 22:16:21).

Line 78
Change from:
	Forum_Subject = rst("F_SUBJECT")
intOnlineForumType = rst("FORUM_ID")

to:
	If rst.BOF Or rst.EOF Then
Forum_Subject = Null
intOnlineForumType = Null
Else
Forum_Subject = rst("F_SUBJECT")
intOnlineForumType = rst("FORUM_ID")
End If


Line 87
Change from:
	if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Viewing Topics in: <a href=""link.asp?FORUM_ID=" & Request.QueryString("FORUM_ID") & """>"
strOnlineLocation = strOnlineLocation & TrimString(Forum_Subject, 25)
else
strOnlineLocation = "Viewing: <a href=""link.asp?FORUM_ID=" & Request.QueryString("FORUM_ID") & """>Private Forum"
end if

to:
	If IsNull(intOnlineForumType) Then
strOnlienLocation = "Forum has been deleted!!"
Else
if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Viewing Topics in: <a href=""link.asp?FORUM_ID=" & Request.QueryString("FORUM_ID") & """>"
strOnlineLocation = strOnlineLocation & TrimString(Forum_Subject, 25)
else
strOnlineLocation = "Viewing: <a href=""link.asp?FORUM_ID=" & Request.QueryString("FORUM_ID") & """>Private Forum"
end if
End If


Line 104
Change from:
	Topic_Subject = rst("T_SUBJECT")
intOnlineForumType = rst("FORUM_ID")

to:
	If rst.BOF Or rst.EOF Then
Topic_Subject = Null
intOnlineForumType = Null
Else
Topic_Subject = rst("T_SUBJECT")
intOnlineForumType = rst("FORUM_ID")
End If


Line 113
Change from:
	if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Viewing Topic: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>"
strOnlineLocation = strOnlineLocation & TrimString(Topic_Subject, 25)
else
strOnlineLocation = "Viewing Topic in: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>Private Forums"
end if

to:
	If IsNull(intOnlineForumType) Then
strOnlineLocation = "Topic has been deleted!!"
Else
if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Viewing Topic: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>"
strOnlineLocation = strOnlineLocation & TrimString(Topic_Subject, 25)
else
strOnlineLocation = "Viewing Topic in: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>Private Forums"
end if
End If


Line 128
Change from:
	intOnlineForumType = rst("FORUM_ID")

to:
	If rst.BOF Or rst.EOF Then
intOnlineForumType = Null
Else
intOnlineForumType = rst("FORUM_ID")
End If


Line 135
Change from:
	if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Replying To Message: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>" & TrimString(Request.QueryString("Topic_Title"), 25)
else
strOnlineLocation = "Replying To Message in: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>Private Forum"
end if

to:
	If IsNull(intOnlineForumType) Then
strOnlineLocation = "Topic has been deleted!!"
Else
if ChkForumType(intOnlineForumType) then
strOnlineLocation = "Replying To Message: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>" & TrimString(Request.QueryString("Topic_Title"), 25)
else
strOnlineLocation = "Replying To Message in: <a href=""link.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") & """>Private Forum"
end if
End If


Go to Top of Page

Nathan
Help Moderator

USA
7664 Posts

Posted - 14 January 2002 :  13:50:40  Show Profile  Visit Nathan's Homepage
I will change it HuwR. I would like to know who asked you to confront me on this, if you will tell me

<edit> thanks nomad I will add you to the contributers list.


 Nathan Bales - Romans 15:13
---------------------------------

Snitz Exchange | Mod Resource


Edited by - Nathan on 14 January 2002 13:52:40
Go to Top of Page

Reddneck
Starting Member

Canada
7 Posts

Posted - 14 January 2002 :  14:19:52  Show Profile
Hey Nathan. Here's a screen shot of what I see.

Click on the link to see the full image.
http://24.79.20.176/snitz.gif

Everytime I set the config it defaults back to off.....I you can give me an idea of where to start looking, then I can provide you with some of the code.

Thanks again for your help.

Reddneck


Go to Top of Page
Page: of 6 Previous Topic Topic Next Topic  
Previous Page | 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.18 seconds. Powered By: Snitz Forums 2000 Version 3.4.07