PHP Classes

ERROR in 3.0 for Persistent Connections

Recommend this page to a friend!

      Ultimate MySQL  >  All threads  >  ERROR in 3.0 for Persistent Connections  >  (Un) Subscribe thread alerts  
Subject:ERROR in 3.0 for Persistent Connections
Summary:ERROR in 3.0 for Persistent Connections
Messages:1
Author:Nigel J. Terry
Date:2013-12-30 04:06:22
 

  1. ERROR in 3.0 for Persistent Connections   Reply   Report abuse  
Picture of Nigel J. Terry 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.