Oh... urgent... yeah... ok right...
Not urgent enough for you to get reading the F'ing manual though I guess.
--quote from the MySQL manual --
19.2.3 Host '...' is blocked error
If you get a error like this:
Host 'hostname' is blocked because of many connection errors.
Unblock with 'mysqladmin flush-hosts'
This means that mysqld has gotten a lot (max_connect_errors) of connect requests from the host 'hostname' that have been interrupted in the middle. After
max_connect_errors failed requests, mysqld assumes that something is wrong (like a attack from a cracker), and blocks the site from further connections until
someone executes the command mysqladmin flush-hosts.
By default, mysqld blocks a host after 10 connection errors. You can easily adjust this by starting the server like this:
shell> safe_mysqld -O max_connect_errors=10000 &
Note that if you get this error message for a given host, you should first check that there isn't anything wrong with TCP/IP connections from that host. If your TCP/IP
connections aren't working, it won't do you any good to increase the value of the max_connect_errors variable!
-- end quote --