I've tried the Admin Level Mod and it's not giving me the effect I want.
I would like my level of administrators to be able to log onto the admin options but get different admin_home.asp pages. in other words if I set a member to Alevel 2 in the data base he/she would get admin_homeXXX.asp page if I set them to Alevel 3 they would get admin_homeYYY.asp page
I believe the issue can be done in the admin_login.asp file. what changes would have to be made to get this here is where I think the code should be changed but I'm not sure. From admin_login.asp
Conditional Positioning:
Response.Write " <table border=""0"" width=""100%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td width=""33%"" align=""left"" nowrap><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>" & vbNewLine & _
" " & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""default.asp"">All Forums</a><br />" & vbNewLine
if mLev > 3 then
Response.Write " " & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpen,"","") & " <a href=""admin_home.asp"">Admin Section</a><br />" & vbNewLine
else
Response.Write " " & getCurrentIcon(strIconBar,"","align=""absmiddle""") & getCurrentIcon(strIconFolderOpenTopic,"","align=""absmiddle""") & "Staff Tools<br /></font></td>" & vbNewLine
end if
Response.Write " " & getCurrentIcon(strIconBlank,"","") & getCurrentIcon(strIconBar,"","") & getCurrentIcon(strIconFolderOpenTopic,"","") & " Staff Tasking<br /></font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine
Conditional Menu:
if mLev < 2 then
' Ordinary member or not-registered, no access.
' Next 3 lines are used to redirect to new page.
strDest=Request.ServerVariables("HTTP_REFERER")
if strDest="" then strDest=strForumURL
Response.Redirect strDest
else if mLev = 2 then
' Next line is used to redirect to new page.
Response.Redirect "admin_staff.asp"
' Alternatively, use to bypass functions on one page.
' Do moderator features only.
Response.Write "This is the moderator menu ...." & vbNewLine & _
"... End of moderator menu."
else if mLev = 3 and MEMBERID<>intAdminMemberID then
' Next line is used to redirect to new page with conditional filename.
Response.Redirect "admin_staff"+cStr(MEMBERID)+".asp
' Alternatively, use to bypass functions on one page.
' Do moderator features and specific admin features.
Response.Write "This is the conditional admin menu ...." & vbNewLine
Select Case(MEMBERID)
Case "2"
Response.Write "Menu for admin with user ID #2 ..." & vbNewLine & _
"Menu continues ..." & vbNewLine
Case "57"
Response.Write "Menu for admin with user ID #57 ..." & vbNewLine & _
"Menu continues ..." & vbNewLine
Case Else
Response.Write "Menu for forum admin" & vbNewLine & _
"Menu continues ..." & vbNewLine
End Select
Response.Write "... End of admin menu." & vbNewLine
end if