View Single Post
  #6  
Old 21st July 2008, 19:47
nako75018 nako75018 is offline
Senior Member
 
Join Date: Jan 2008
Posts: 15
Default Re: problem with mysql
No i don't have setting for this

The issue you reported to Network Solutions on 7/20/2008 04:42:52 AM and assigned to
Service Request has been completed and closed.

Your website is now resolving without error.

The error you were receiving was due to too many active connections to your MySQL database.

If you are using mysql_pconnect(), this type of connection never closes.
It is a persistent connection that stays open for later use. This can easily cause you to have too many active connections depending on how many people visit the website.

We suggest you change it to mysql_connect()instead if you are using this.

If you are using mysql_connect(), you may not be closing the database connection at the end of a query, please check that all connections are closed after use.
Reply With Quote