Administration Suite Dissapeared

Found a bug? Tell us!!
Post Reply
Berg
Regular
Posts: 17
Joined: Sat May 20, 2006 5:38 pm

Administration Suite Dissapeared

Post by Berg »

Well most of it anyway. When I go into administer the site all I see are the Frontpage, Back to Weblog, ang Logout buttons...

It was working fine up until now, all I changed was the ability to add comments to my posts.

What gives?
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Administration Suite Dissapeared

Post by garvinhicking »

Hi!

This happens when your user account has no privileges anymore. This can have either happened because you set "Allow to create entries" in your user configuration to "No", or because you've removed yourself from usergroups.

Were you using Serendipity prior to 1.0-beta3? There it could happen that when changing your user properties, your browser would not submit the multi-select field with the association of your usergroups to your author.

You will need to restore that with an SQL code, entering in phpMyAdmin or similar. Let's say your authorid is "1" then you need to enter this to become an administrator again:

Code: Select all

UPDATE serendipity_config SET value = 0 WHERE authorid = 1 AND name = 'no_create';
INSERT INTO serendipity_authorgroups (groupid, authorid) VALUES (1,1);
INSERT INTO serendipity_authorgroups (groupid, authorid) VALUES (2,1);
INSERT INTO serendipity_authorgroups (groupid, authorid) VALUES (3,1);
Group #1 is the "Editor" group, #2 is the "chief" group and #3 the admin group by default. If you created custom usergroups you were a member of, you need to insert your author for those groups as well.

Upgrading to 1.0-beta3 will also enable a warning message that will be shown when you save your personal config when not having any authorgroup assigned to your account.

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply