1. Notified by dotEasy to remove what they felt were spam accounts. I was told that I could do that with phpMyAdmin. I brought up the users table and individually deleted a number of accounts as suggested. Most all the bot accounts and those I was 100 sure of being bogus. Also whacked the Anonymous account. That made the forum stop working.Noxwizard wrote:What kind of modifications have you made to the board and what exactly did you do to fix the guest user account?
I cannot get to anything on the forum. Can't get to ACPstevemaury wrote:Does the Anonymous user show up in the ACP? Is it a member of the Guests group and no other? Does it have the Guest access permission role?
P.S. - NEVER delete users directly from the database.
Well, that is a lesson already learned.Lumpy Burgertushie wrote:best advice I can give you is not to take any more advice from the support people at doteasy.
robert
As far as I know no MODs have been installed in quite some time. Probably two years since any may have been done. The script came from a post on this site:Noxwizard wrote:That's not quite what I was looking for. Do you have any MODifications installed? What script did you use to fix the account?
Code: Select all
INSERT INTO phpbb_users (user_id, user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_allow_massemail) VALUES (1, 2, 1, 'Anonymous', 'anonymous', 0, '', '', 'en', 1, 0, '', 0, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0);
That seems to have fixed it! Sheesh....Thank you so much. Now we have to figure out how to apply upgrades to get off this version.Noxwizard wrote:If that was the query used, then the account was created with the wrong user ID. It needs to have a user ID of 1. You should use this query instead:Code: Select all
INSERT INTO phpbb_users (user_id, user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_allow_massemail) VALUES (1, 2, 1, 'Anonymous', 'anonymous', 0, '', '', 'en', 1, 0, '', 0, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0);