Gossamer Forum
Home : Products : DBMan : Discussions :

Re: User Options Dilemma

Quote Reply
Re: User Options Dilemma In reply to
Since it's happening with every userid (except the last on in the .pass file) the problem has got to be in auth.pl, specifically sub auth_check_password.

Try changing

foreach (0 .. 3) { $permissions[$_] = int($permissions[$_]); }

to

Code:

$view = int($view); $add = int($add);
$del = int($del); $mod = int($mod);
$admin = int($admin);
There is probably some real significance to this not occurring with the last entry in the .pass file. Hmmm. Lemme check something.... Well, that didn't tell me what I thought it might. I was thinking that if I added a new userid, the test2/test2 would have the same problem as the others. It doesn't.

Did all of these people sign up through DBMan or is this an imported file?

JPD
http://www.jpdeni.com/dbman/
Subject Author Views Date
Thread User Options Dilemma ezfindit 4666 Aug 6, 2000, 8:13 PM
Thread Re: User Options Dilemma
Stealth 4595 Aug 6, 2000, 8:18 PM
Thread Re: User Options Dilemma
ezfindit 4594 Aug 6, 2000, 9:43 PM
Thread Re: User Options Dilemma
JPDeni 4598 Aug 6, 2000, 10:26 PM
Thread Re: User Options Dilemma
ezfindit 4586 Aug 6, 2000, 10:42 PM
Thread Re: User Options Dilemma
JPDeni 4576 Aug 6, 2000, 11:02 PM
Thread Re: User Options Dilemma
ezfindit 4576 Aug 6, 2000, 11:53 PM
Post Re: User Options Dilemma
JPDeni 4573 Aug 7, 2000, 12:05 AM
Thread Re: User Options Dilemma
ezfindit 4569 Aug 7, 2000, 12:07 AM
Post Re: User Options Dilemma
JPDeni 4566 Aug 7, 2000, 12:16 AM