You are not logged in.
- Topics: Active | Unanswered
#1 2020-09-11 18:00:10
- Aszab123
- New member
- Registered: 2020-09-11
- Posts: 2
FluxBB did not create GUEST user
Hello. FluxBB did not create the GUEST user, and I tried reinstalling it too. If someone could give me the SQL code to create it manually, I would really appreciate it!
Offline
#2 2020-09-12 06:32:55
- DenisVS
- Member
- Registered: 2015-03-20
- Posts: 32
Re: FluxBB did not create GUEST user
INSERT INTO `users` (`id`, `group_id`, `username`, `password`, `email`, `title`, `realname`, `url`, `jabber`, `icq`, `msn`, `aim`, `yahoo`, `location`, `signature`, `disp_topics`, `disp_posts`, `email_setting`, `notify_with_post`, `auto_notify`, `show_smilies`, `show_img`, `show_img_sig`, `show_avatars`, `show_sig`, `timezone`, `dst`, `time_format`, `date_format`, `language`, `style`, `num_posts`, `last_post`, `last_search`, `last_email_sent`, `last_report_sent`, `registered`, `registration_ip`, `last_visit`, `admin_note`, `activate_string`, `activate_key`) VALUES
(1, 3, 'Guest', 'Guest', 'Guest', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 'English', 'Air', 0, NULL, NULL, NULL, NULL, 0, '0.0.0.0', 0, NULL, NULL, NULL),
Offline