Author |
Topic |
Nikkol
Forum Moderator
USA
6907 Posts |
Posted - 15 July 2003 : 15:37:32
|
please post implementation problems in the correct forum. The errors you are encountering are most likely NOT bugs, but incorrect addition of code.
And when you do make a post in the MOD implementation forum, it is not enough to say what error and what line in what file. You will need to make text versions of the files available for inspection. |
Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~ |
Edited by - Nikkol on 15 July 2003 15:39:17 |
|
|
Ryan
Average Member
USA
858 Posts |
Posted - 15 July 2003 : 15:48:34
|
quote: Originally posted by Nikkol
please post implementation problems in the correct forum. The errors you are encountering are most likely NOT bugs, but incorrect addition of code.
Thanks for letting me know.
quote: Originally posted by Nikkol
And when you do make a post in the MOD implementation forum, it is not enough to say what error and what line in what file. You will need to make text versions of the files available for inspection.
I make those upon request of the individual. I have had errors (and not just once) where I can be told what to do just by the person looking at the error (Way to go OneWay!).
|
The Poultry Link - "Serving the best of the fancy with the best of the web" Forum Setup Help |
|
|
Nikkol
Forum Moderator
USA
6907 Posts |
|
Ryan
Average Member
USA
858 Posts |
Posted - 15 July 2003 : 16:15:05
|
Ok I will post in response to your reply in the MOD implementation forum. |
The Poultry Link - "Serving the best of the fancy with the best of the web" Forum Setup Help |
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 17 July 2003 : 14:22:19
|
I must say I have not been this excited about a MOD being released since like... Moderated Registrations :) This is a wonderfull mod Nikkol |
Reinsnitz (Mike) |
|
|
Nikkol
Forum Moderator
USA
6907 Posts |
|
Gandiel
Starting Member
21 Posts |
Posted - 23 July 2003 : 14:16:03
|
Nikkol,
Hate to be the one to ask... but... we ready for release yet? Any word on other MOD integration issues?
Gandiel |
|
|
Nikkol
Forum Moderator
USA
6907 Posts |
Posted - 23 July 2003 : 16:18:35
|
Release of a non-Beta version? Essentially I'm just going to update the current zip with the fixes discussed in this thread. I just haven't had time, because "real life" is quite demanding right now.
What other MOD integration issues? Thus far, no one has said there have been problems. |
Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~ |
|
|
Gandiel
Starting Member
21 Posts |
Posted - 24 July 2003 : 10:38:02
|
quote: Originally posted by Nikkol
Release of a non-Beta version? Essentially I'm just going to update the current zip with the fixes discussed in this thread. I just haven't had time, because "real life" is quite demanding right now.
Yes... release of a non-beta. And don't worry. Real Life > Usergroups MOD Final Release.
quote:
What other MOD integration issues? Thus far, no one has said there have been problems.
That's exactly what I was looking for... whether anyone brought forth any issues. And since there is none, even better!
Thanks again for all your hard work Nikkol. You KNOW we all appreciate it!
Gandiel |
|
|
ajhvdb
Junior Member
Netherlands
392 Posts |
Posted - 27 July 2003 : 18:43:32
|
Nikkol great working mod, just what i've been looking for :)
I also added a new field into the usergroups table: JoinByEmailAddress Example: .nl;@company.com;.division@;
Now when the emailaddress of the new user matches ".nl" or "@company.com" or ".division@", only then the member is added to the group.
This saves me adding about 30 users in a new support forum! I can send you a copy if you want to integrate this, if not thanks anyway
Note: If you add a new group the options are not saved, they are saved with modify. |
|
|
kwhipp
Junior Member
USA
407 Posts |
Posted - 04 August 2003 : 14:13:28
|
quote: Originally posted by Reinsnitz
I must say I have not been this excited about a MOD being released since like... Moderated Registrations :) This is a wonderfull mod Nikkol
Ditto! Big time DITTO!!! |
- Kevin |
|
|
Nikkol
Forum Moderator
USA
6907 Posts |
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 09 August 2003 : 13:59:32
|
Bug found:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[TCX][MyODBC]Table 'freeworldsleague.FORUM2_USERGROUP_MEMBERS' doesn't exist
/forum2/inc_func_common.asp, line 1326
I get this error for all files that load... caus they all use inc_func_common.asp.
Explanation config.asp settings:
strTablePrefix = "FORUM2_"
strMemberTablePrefix = "DATA2_"
strFilterTablePrefix = "FORUM2_"
The MOD is using the table prefix rather than the member prefix ;)
Fix:
change line ~1320 from:
strSql = "SELECT USERGROUP_ID FROM " & strTablePrefix & "USERGROUP_MEMBERS " &_
change line ~1320 to:
strSql = "SELECT USERGROUP_ID FROM " & strMemberTablePrefix & "USERGROUP_MEMBERS " &_
edited by Reinhold to reflect Nikkol's input
Rename your table from your Member Prefix to your Forum Prefix. in my case DATA2_USERGROUP_MEMBERS gets renamed to FORUM2_USERGROUP_MEMBERS to get this working with the code properly. |
Reinsnitz (Mike) |
|
|
Nikkol
Forum Moderator
USA
6907 Posts |
Posted - 09 August 2003 : 14:18:29
|
Thanks Mike. However, there was a reason I coded it using the forumtable prefix instead of the member table prefix. I figured if you had more than one forum db, then you might want different usergroups for each forum. And if that is the case, the usergroup_members table would be different for each forum. Therefore, you'd need to add the usergroup related tables to each db. Make sense? I know in some case you'd want the exact same usergroups across forums, but I wasn't sure at the time how to set it up so that you could opt to share user groups or not. |
Nikkol ~ Help Us Help You | ReadMe | 3.4.03 fixes | security fixes ~ |
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 09 August 2003 : 18:09:20
|
Then you will want to re-code how your tables are created so that they use the TablePrefix, and not the MemberPrefix :)
Either way there is a bug here ;) |
Reinsnitz (Mike) |
|
|
Topic |
|