Is there an MySQL cmd that can be run that adds a superuser. Right now after logging in I get access denied. I edited the user table and changed the account ACCESS_LEVEL from 0 to 100.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The access_level column is not used in the latest versions of ART. Instead, there are permissions and roles. You can create a role that has all the permissions and then create a user and add a column in the user_roles table for that user and that role.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there an MySQL cmd that can be run that adds a superuser. Right now after logging in I get access denied. I edited the user table and changed the account ACCESS_LEVEL from 0 to 100.
The access_level column is not used in the latest versions of ART. Instead, there are permissions and roles. You can create a role that has all the permissions and then create a user and add a column in the user_roles table for that user and that role.