You are not logged in.
Pages: 1
Is it possible to bring back a super-admin from a simplified view?
Offline
mysql -p -u root
mysql> show tables;
we need a table - glpi_profiles
select * from glpi_profiles where name='super-admin';
update glpi_profiles set interface='central' where name='super-admin';
let's check it out
select * from glpi_profiles where name='super-admin';
logoff/login
Offline
Pages: 1