Author |
Topic  |
|
Utorian
Starting Member
Denmark
18 Posts |
Posted - 16 May 2001 : 09:12:06
|
Is it me or is the NTGroup string CASE SENSETIVE???
How to change so it isn't???
|
|
Utorian
Starting Member
Denmark
18 Posts |
Posted - 17 May 2001 : 05:09:22
|
K! It seems i have found the solution for this problem. (beta testing right now)
What I did was:
Adding these linie to inc_functions.asp
case 8 chkDisplayForum= false if strAuthType="nt" THEN NTGroupSTR = Split(strNTGroupsSTR, ", ")
for j = 0 to ubound(NTGroupSTR)
NTGroupDBSTR = Split(rsAccess"F_PASSWORD_NEW"), ", ")
for i = 0 to ubound(NTGroupDBSTR)
if NTGroupDBSTR(i) = NTGroupSTR(j) then chkDisplayForum= true exit function elseif Lcase(NTGroupDBSTR(i)) = LcaseNTGroupSTR(j)) then chkDisplayForum= true exit function end if next next End if
|
 |
|
Utorian
Starting Member
Denmark
18 Posts |
Posted - 17 May 2001 : 05:10:14
|
the function is called:
function chkDisplayForum(fForum_ID)
|
 |
|
Utorian
Starting Member
Denmark
18 Posts |
Posted - 17 May 2001 : 05:46:50
|
Next goal for me and my NTGroup Authentication is using multiplied allowed NTGroups.
If on current time has any ideas about this, plz reply. Thanks.
And I will return with further info on this.
Over and out Utorian
|
 |
|
Utorian
Starting Member
Denmark
18 Posts |
Posted - 17 May 2001 : 06:30:01
|
function chkForumAccess(fForum) and sub chkUser4()
in inc_functions.asp
add the same linies showed in red from above, and the multiplied access from ntgroups should work. (the function did work, but were case sensitive).
Note: You should put the linies in "Case 8,9" in the functions.
|
 |
|
|
Topic  |
|