fix joomla "E_NOLOGIN_ACCESS"
follow by this
assume use default prefix table "jos"
There are 3 table relate with
1 jos_users
2 jos_core_acl_aro
3 jos_core_acl_groups_aro_map
use these sql command
LAST_INSERT_ID() = latest jos_users.id
LAST_INSERT_ID() = latest jos_core_acl_aro.id
now you can login joomla with user 'admin2' and password 'secret'
follow by this
assume use default prefix table "jos"
There are 3 table relate with
1 jos_users
2 jos_core_acl_aro
3 jos_core_acl_groups_aro_map
use these sql command
INSERT INTO `jos_users` (`name`, `username`, `password`, `params`) VALUES ('Administrator2', 'admin2', 'd2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199', '');
insert into `jos_core_acl_aro` (`section_value`,`value`,`order_value`,`name`,`hidden`) VALUES ( 0,
LAST_INSERT_ID(), 0, 'admin2', 0)
LAST_INSERT_ID() = latest jos_users.id
INSERT INTO jos_core_acl_groups_aro_map( `group_id` , `aro_id` ) VALUES ( 25,LAST_INSERT_ID() )
LAST_INSERT_ID() = latest jos_core_acl_aro.id
now you can login joomla with user 'admin2' and password 'secret'
ความคิดเห็น
แสดงความคิดเห็น