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
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