The username filter for some reason is not working. Nor is the locking. When I enable a lock for that username and I try logging in with that same username. Snitz simply creates another account.
Where can I diagnose this. Or where is in the code are the filters being referenced......
Snitz can not create another account without going through the registration process, so perhaps you should maybe explain a bit more of what you are doing.
1) are you using NT or DB authentication ? 2) what db are you using 3) Have you modified any of the files
I'm using NT Authentication with auto registration.
It seems the problems didn't start until I modified the following codes.
File: post.asp
Line: 294
Code: if (mLev = 4) or (chkForumModerator(strRqForumId, strDBNTUserName) = "1") then '## Do Nothing else Go_Result "Only moderators and administrators can create topics" end if
Action: Add under the “end if” statement and above “case "Category” statement at around line 294.
File: form.asp
Line: 698
Code: CHANGE
if Forum_Status <> 0 then TO if Forum_Status <> 0 and ((mLev = 4) or ((chkForumModerator(Forum_ID, strDBNTUserName) = "1"))) then
File: topic.asp
Line: 878
Code: CHANGE
if ((Cat_Status = 1) and (Forum_Status = 1)) then to if ((Cat_Status = 1) and (Forum_Status = 1)) and ((mLev = 4) or ((chkForumModerator(Forum_ID, strDBNTUserName) = "1"))) then
This code makes sure only MODERATORS and ADMINISTRATORS can add topics....