I host my websites on a server that has some problems with MySQL. Looking at PHPMyAdmin statistics tab, I see these stats:
PHPMyAdmin stats http://www.slagalica.tv/henet.mysql.png
It shows that 99.68% connections have beed aborted. I googled a little bit about it, but I can't figure out what it really means. What is the reason for this and how can it be fixed?
See http://dev.mysql.com/doc/refman/5.1/en/communication-errors.html
An aborted connection is one that:
I'm guessing from the very high rate that you're creating connections to the database but not closing them when you're finished with them.
The most common reason for an aborted connection is bad coding. Programs open the connection but don't close it when they're done. Just sloppy programming.