Admin Panel

In order to create contents in the admin panel we need to start the server and login as administrator:

Default access:

URL: http://localhost:8080/reldens-admin
user: [email protected]
password: root

By default, only the root registered user is an administrator.

The admin role ID can be changed by setting the default "admin/roleId" in the "config" table in the database.

UPDATE `config` SET `value` = '[new-admin-role-id]' WHERE `scope` = 'server' AND `path` = 'admin/roleId';

That role has to be set in the user you want to be the administrator:

UPDATE `users` SET `role_id` = '[new-admin-role-id]' WHERE `email` = '[email protected]';

Last updated