View Single Post
  #3 (permalink)  
Old 08-14-2007, 01:48 PM
XDCC XDCC is offline
Rookie
 
Join Date: Aug 2007
Posts: 6
XDCC is on a distinguished road
Quote:
Originally Posted by TheDumbGamer View Post
This came up with I tried to go to furry-paws.com:
Warning: mysql_pconnect() [function.mysql-pconnect]: Host 'host3.furry-paws.com' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' in /home/nejlyn/fpscripts/db_connect.php on line 37
Couldn't connect to server. This probably means that the mysql server has been reset. Please try again in a few seconds.

How do I change it/make it go away?
I think you should never use mysql_pconnect.
pconnect stands for persistent connection.Unless you close it in your script it will stay open after script has finished executing.
use mysql_connect instead.
I am not sure if I am correct

Reply With Quote