PDA

View Full Version : Mysql error


Ndogg
08-15-2009, 07:36 AM
I dont know what happened:

User '*ME*' has exceeded the 'max_questions' resource (current value: 100000)

I dont have anything in the DB with a value of 100000 and I deleted the most recent things added.

ckeyrouz
08-15-2009, 08:16 AM
Maybe you are opening connections to the database and you are not closing them.
Each connection will stay alive if you do not close it.

This might be reason.

_Aerospace_Eng_
08-15-2009, 09:21 AM
The reason for your error is because you've exceeded the number queries allowed by your host. You may need to contact your host. I don't know if the number of queries you've ran is being counted ongoing. Its also possible as stated previously that you have too many connections to your server. Its best to close any connections that you open. So if you open them at the top of a page, close them at the bottom or something.