I lost my administrator log-in form from back-end. Can any one please help to recover it?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You have to log in your database (via phpmyadmin) and run this query (workig for joomla version 2.5 and 3):
INSERT INTO `jos31_users`
(`name`, `username`, `password`, `params`)
VALUES ('Administrator2', 'admin2',
'd2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199', '');
INSERT INTO `jos31_user_usergroup_map` (`user_id`,`group_id`)
VALUES (LAST_INSERT_ID(),'8');
* You have to change jos31_
with your database table prefix.
Then you could log in to your joomla with username: "admin2" and password "secret".
Here is the complete tutorial how you could recover admin password in joomla.
Good Luck!