|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 03/05/2007 20:04:35
Posts: 4,
Visits: 8
|
|
The admin account now has been changed from the default permission set to "moderator" leaving no admin-enabled accounts. Is there any way to create a new admin account or re-enable admin permisions for the admin account?
Pardon me if this has been asked & answered before, but I couldn't find anything on point using the search tool.
-- Mark
|
|
|
|
|
Support Supremo
      
Group: Customers
Last Login: 13/11/2008 12:44:07
Posts: 568,
Visits: 2,507
|
|
CrashDummy (5/3/2007) The admin account now has been changed from the default permission set to "moderator" leaving no admin-enabled accounts. Is there any way to create a new admin account or re-enable admin permisions for the admin account?
Pardon me if this has been asked & answered before, but I couldn't find anything on point using the search tool.
-- MarkDear Mark, if this one is the unique admin account, you will have to do it via SQL SERVER running the sql command bellow: update InstantASP_Users set primaryroleid= 5 where userid = 1 It should fix your problem.
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 03/05/2007 20:04:35
Posts: 4,
Visits: 8
|
|
Thanks Carlos, that got me part way there.
The rest of the way was to insert a record back into the InstantASP_UserRoles table to re-associate User 1 to Role 5 so the Admin CP link would show up in the top menu again.
INSERT INTO InstantASP_UsersRoles UserID, RoleID VALUES (1, 5)
|
|
|
|