MyBB Community Forums

Full Version: Error message
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:1226 - User 'id9410513_alexandre' has exceeded the 'max_updates_per_hour' resource (current value: 5000)
Query:DELETE FROM mybb_themes
Quote:exceeded the 'max_updates_per_hour' resource (current value: 5000)

it is a server limit set by your web host. contact them for more details.

do you have a lot of plugins / heavy traffic visiting your forum ?
The trouble comes from MySQL, your mysql user is limited to 5000 updates per hour.
Change this value in MySQL if you can (you need root privileges):

To put to 10.000 :
ALTER USER 'id9410513_alexandre'@'localhost' WITH MAX_QUERIES_PER_HOUR 10000;

To remove limitation:
ALTER USER 'id9410513_alexandre'@'localhost' WITH MAX_QUERIES_PER_HOUR 0;

(modify the user and/or the server host)