You Need Super Privileges for this operation
i put
SELECT @@GLOBAL.sql_mode;
SET @@global.sql_mode= 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
and MySQL Said
MySQL said:
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
what do i do to fix this? i dont have privileges tab to fix it
-
Hello :) Are you able to log in as the root user for this MySQL server? If so, you can enable the privilege by executing the following command from MySQL shell. mysql> GRANT SUPER ON dbname.* TO user@'localhost' IDENTIFIED BY 'password'; mysql> FLUSH PRIVILEGES; Do remember to change the dummy values such as dbname, user, password etc. with actual values. 0 -
Hello, To set Privileges you need to have root access for the server but I can see that your access level is Website Owner so you need to contact to your hosting provider to check this issue. 0 -
what do i do to fix this? i dont have privileges tab to fix it
Contact your host. They'll get you straightened out.0 -
i put SELECT @@GLOBAL.sql_mode; SET @@global.sql_mode= 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION'; what do i do to fix this? i dont have privileges tab to fix it
You are setting the global sql mode as normal mysql user. You need the root/admin privilege for your mysql server. If you don't own the server, ask to your server provider.0 -
i switched hosts and now it works thanks anyways guys! 0 -
Hello, I'm happy to see the issue is now addressed. Thank you for updating us with the outcome. 0 -
Same problem here 0
Please sign in to leave a comment.
Comments
7 comments