I want to allow a particular user/group to edit or delete other peoples' posts witin a certain forum. However, I do not want them to be able to change other users' profile setting.
I searched the forums and the closest I found was a post from a couple years ago that stated:
Replace the entire section in register.asp after
'********************************************
'*** Check and setup page for admin mode ***
'********************************************
with:
'If the admin mode is enabled see if the user is an admin
If blnAdminMode AND blnAdmin = False Then
Set rsCommon = Nothing
adoCon.Close
Set adoCon = Nothing
Response.Redirect("insufficient_permission.asp?FID=" & intForumID)
End If
Now moderators can not view or edit member profiles anymore. You may also want to remove
the 'edit profile' button from the member popup profiles by changing the (I guess that it
looks that way)
If blnAdmin OR blnModerator then.....display 'edit profile button'
to:
If blnAdmin then.....display 'edit profile button'
I tried this, however it also prevented the administrator from editing users' profiles.
I want to be able to set up a group that can only edit/delete other peoples' posts from within the same forum only but not change their profile. I also want the administrator to be able to edit user profiles.
Is there a way to do this and so how?