Please correct my query
UPDATE qa_users SET level =??? WHERE userid =1234;
Thanks.
The levels are defined in the file qa-include/app/users.php. The level for "editor" is 50:
define('QA_USER_LEVEL_EDITOR', 50);
so change your query to this:
UPDATE qa_users SET level = 50 WHERE userid = 1234;
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.