Your first error is caused by some kind of modification or custom script (topXstats.php). You need to consult the author on how to fix your problem.
For the second error, here is an extract from the
manual:
Quote:
mysql_connect(): Too many connections
The server has maxed out the number of MySQL connections it allows. You can try turning persistent connections off by adding this to your config.php:
PHP Code:
$config['MasterServer']['usepconnect'] = 0;
But if you still have problems after that, you will need ask your host to raise the maximum number of connections they allow.
Here is more info on that error: http://dev.mysql.com/doc/refman/5.0/...nnections.html
|