Posted by ZeldorBlat on 09/26/05 20:27
You have one of two problems. Either the MySQL server has too many
connections to it or PHP is making too many connections to MySQL. The
max number of connections PHP can open is specified by the following
php.ini directives:
<http://www.php.net/manual/en/ref.mysql.php#ini.mysql.max-links>
<http://www.php.net/manual/en/ref.mysql.php#ini.mysql.max-persistent>
You can changes the maximum number of connections that MySQL will allow
with the following:
mysql> set global max_connections=xxx;
[Back to original message]
|