Quote:
Originally Posted by TheDumbGamer 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