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)
 UserGroups v1.0 BETA
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 15

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 03 July 2003 :  15:06:01  Show Profile
as to your first post, remind me to look into that when writing the next version.

as to your second post and homeacademy's

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

Etymon
Advanced Member

United States
2385 Posts

Posted - 04 July 2003 :  02:10:54  Show Profile  Visit Etymon's Homepage
quote:
as to your first post, remind me to look into that when writing the next version.



Will do!
Go to Top of Page

Gargoyle
Junior Member

USA
280 Posts

Posted - 06 July 2003 :  11:32:29  Show Profile  Visit Gargoyle's Homepage
O'kay I installed this on a SH v8 forum to which I have added more mods onto. The User Group MOD seems to be working great except for one issue....

Issue: I recently had a member join the forum. According to the readme if I set one of the groups to "Auto-join for new members on registration" Then all new members would be added to that group ?? Is this correct ??

If it is correct it didn't happen. I did re-check the readme and my edited register.asp file and all seems to be in accordance with your readme directions.

I also use an access database and the rest of the MOD seems to be working fine.
Thank-you for any insight you may be able to offer.

Oh I also have "require registration" turned on. If that makes a difference.

Here is a link to my Snitz powered Drag Racing site.

Edited by - Gargoyle on 06 July 2003 11:34:23
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 06 July 2003 :  11:36:48  Show Profile
did you read this entire thread for bugs and fixes?

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

Gargoyle
Junior Member

USA
280 Posts

Posted - 06 July 2003 :  11:47:18  Show Profile  Visit Gargoyle's Homepage
No I assumed the zip would have been updated as I downloaded it yesterday. I will go read the entire thread now. Thanks.

Here is a link to my Snitz powered Drag Racing site.
Go to Top of Page

Gargoyle
Junior Member

USA
280 Posts

Posted - 06 July 2003 :  12:57:40  Show Profile  Visit Gargoyle's Homepage
Nikkol..

I just wanted to tell you that this MOD is great! It installed very easily and with the posted fixes works perfectly. I did need to delete one line in "admin_usergroups.asp"
Line 118: rsGroup.CursorLocation = 2 'Added for MySql
It caused an error and I saw that it was added for MySql so I figured I didn't need it.

The readme was extremely impressive as well as the check list! You have really gone out of your way on this one and it shows. I also like the fact that it "hides" areas that the user group does not allow. That is great since I have an area that logged in users really do not need to see! This is awesome!!! Thank you very much!!

Here is a link to my Snitz powered Drag Racing site.
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 06 July 2003 :  13:16:11  Show Profile
You are welcome

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

Mark M
New Member

Australia
98 Posts

Posted - 07 July 2003 :  00:13:08  Show Profile  Visit Mark M's Homepage
Looks like a great MOD. When will the unbugged version be available for download?
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 07 July 2003 :  06:45:35  Show Profile
Maybe in a week.

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

Kal Corp
Average Member

USA
878 Posts

Posted - 10 July 2003 :  20:42:21  Show Profile  Visit Kal Corp's Homepage
Think we can add support for NT mode?

Example add a domain group to a group for access?

or add different domain groups to a access group?

So add domain groups and not members?


{VAS}-Kal Corp
VAS Development NetWork - Forums for old Snitz Mods!
Creator of all things {VAS}
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 10 July 2003 :  20:47:48  Show Profile
hey Kal Corp ... long time no see. Yeah, maybe ... I hadn't been able to test it on NT ... have you? I mean can you group NT users and does it work?

Adding the domain group is a good idea, but i'm unfamiliar with the NT part of the code. Isn't it an option to use domain groups? If so, I'd need to check for that first. I'm not sure where to begin modifying it for domain groups. Got any pointers?

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

Kal Corp
Average Member

USA
878 Posts

Posted - 13 July 2003 :  11:29:13  Show Profile  Visit Kal Corp's Homepage
I will try to get this installed on a NT domain for testing and then i can tell you whats up. I have not looked at it yet


{VAS}-Kal Corp
VAS Development NetWork - Forums for old Snitz Mods!
Creator of all things {VAS}
Go to Top of Page

altisdesign
Junior Member

United Kingdom
357 Posts

Posted - 13 July 2003 :  15:16:56  Show Profile
Hi,

I just installed this mod on a site im developing, to try it out. The site is running off MySQL, and I got problems with the following line:

rsGroup.CursorLocation = 2

(about line 118 on admin_usergroups.asp)

It gave me a problem that the action was not allowable while the recordset was open, so I couldnt add new usergroups. I was a bit surprised cos that line was meant to be for MySQL, so what I did was to strip out all of the recordset code and replace it with an INSERT() statement to handle the inserting into the database initially like:

my_Conn.execute("INSERT INTO forum_usergroups (USERGROUP_NAME,USERGROUP_DESC) VALUES ('"&Request.Form("GroupName")&"', '"&Request.Form("GroupDesc")&"')")

and then I wrote a SELECT statement to receive the groupid to send on to the next part of the form. That seemed to work for me, and MySQL, and I've tested all of the security with various users, and everything seems to work fine. It even works with the event calendar mod, so that events that don't show up to the usergroups who don't have permissions. I will post the code changes I used if that helps.

Many Thanks for an excellent mod!
-Altis

Altis Design offers all manner of web design services to a variety of commercial and personal clients
Go to Top of Page

Nikkol
Forum Moderator

USA
6907 Posts

Posted - 13 July 2003 :  18:43:18  Show Profile
cool. thanks. I might just rewrite that bit of the code so that the newly inserted id isn't needed.

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

Ryan
Average Member

USA
858 Posts

Posted - 15 July 2003 :  15:24:16  Show Profile  Visit Ryan's Homepage
I carefully looked through all posts in this MOD topic BEFORE posting. If this question was already answered you have my apologies. I also did a search.

I was helping my friend with a MOD. He did part of the code and I did part. Some of the files have errors in them and most are the same error. Here is what it says:
Microsoft VBScript compilation error '800a03f4'

Expected 'If'

/inc_profile.asp, line 686

end Sub
----^

Of course depending on the file name the:
/inc_profile.asp, line 686 part
is different.


Those errors show up in register, inc_profile, and pop_profile that I see. Their may be others.
When I go to delete a reply I can delete it but I get an error anyway. But it is the best error I have ever found! When I go to delete a post I get an error after I type in the admin name and pass so I close the pop_delete window (the page doesnt refresh because of the error) and go ahead and delete another post. After I delete all I want to I THEN hit refresh
and all the posts I just deleted are gone! So unless this error will harm the forum in a different form I can only see this error as being of use.
And btw this is the first on I have ever found to be of use!

The Poultry Link - "Serving the best of the fancy with the best of the web"
Forum Setup Help
Go to Top of Page
Page: of 15 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.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07