简体   繁体   中英

not able to create super user in joomla from database

I am in a big problem. Earlier my site was on godaddy and I have recently changed the hosting to inmotion hosting. Now the issue is I am not able to login to backend. I tried creating new user from database but it again and again says no user account or username/password doesnot match. The db prefix is 'wq5p3_' but there is no only jos_users table in database, no wq5p3_users table. There is only one user in that table that has id 506.

Does that mean I've not uploaded full database? Or there is only one users table with default prefix? My site is http://hotinri.com.Joomla version is 3.3. Also Easy Blog, Community extensions are installed on site. Are they creating any problem?

Plus I dont have any previous database backups. Can anybody guide me through how to create new user?

Export again your database and try to import tables one by one or if you have already imported correctly

try insert data user related tables also

INSERT INTO `jos_users`
   (`name`, `username`, `password`, `params`)
VALUES ('Administrator2', 'admin2',
    'd2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199', '');
INSERT INTO `jos_user_usergroup_map` (`user_id`,`group_id`)
VALUES (LAST_INSERT_ID(),'8');

password is secret change it from admin panel or you can insert new salted password

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM