Re: Too Many Aborted Connects

2002-10-25 Thread Andy Etemadi
I know I'm not the only one experiencing this problem. The solutions recommended in the documentation haven't helped resolve it. I've heard of people using flush-hosts as a solution, but that's just a band-aid. Any ideas? - Original Message - From: "Andy Etemadi" <[EMAIL PROTECTED]> To

Re: Too many Aborted Connects

2001-02-26 Thread Jason Landry
Your problem is that you shouldn't be using mysql_pconnect().That comment is for persistent connections, which you really don't want. What is likely happening is the php thread ends, aborting what MySQL thought would be a persistent connection. Try changing it to mysql_connect() here's some