
Nigel J. Terry - 2013-12-30 04:06:22
There is an error in 3.0 with Persistent Connections.
On line 1060:
$this->mysql_link = @mysqli_pconnect(
should read:
$this->mysql_link = @mysqli_connect(
mysqli_pconnect() does not exist. You added the p: to the host correctly, but got the function wrong.
I wondered why upgrading from 2.5.1 to 3.0 didn't work.