I have received this error:
[21-Jul-2016 02:14:05 America/Chicago] PHP Warning: mysqli::__construct(): (42000/1203): User s already has more than 'max_user_connections' active connections in /home/s/public_html/config.php on line 8
So, people told me to use persistent connections, so I add the p: in front of hostname:
$hostname="127.0.0.1";
$user="xxx";
$pass="123";
$bd="xxx";
$mysqli_link = new mysqli("p:$hostname", $user, $pass, $bd);
but I now have this error:
Warning: mysqli::__construct(): Persistent connections are disabled. Downgrading to normal in /home/s/public_html/config.php on line 8
any ideas?