SET CHARACTER SET 'utf8';

SET CHARACTER SET ‘utf8’;

MySQL said: Documentation

#1226 - User ‘epiz_21438939’ has exceeded the ‘max_questions’ resource (current value: 100000)

how to solve this

@Streetwulf said:
SET CHARACTER SET ‘utf8’;

MySQL said: Documentation

#1226 - User ‘epiz_21438939’ has exceeded the ‘max_questions’ resource (current value: 100000)

how to solve this

Hi,
Well the error has already explained to you on my perspective.
As far as what I have understand about the error it means the you have reached the limit for the “Max question” (what is this?) quota.

@UnknownLolz said:
As far as what I have understand about the error it means the you have reached the limit for the “Max question” (what is this?) quota.

“max questions” is essentially the number of MySQL database queries you have executed. To prevent a single account from overloading the database, you cannot execute more than 100k database queries in an hour.

To solve this you need to wait for the hour to end and the counter to reset, and then check what’s causing such extreme numbers of database queries to be generated and then try to limit that.