I upgraded from PHP 5.3 to 5.6 to take advantage of >2GB upload capability in 5.6. In doing so, the following line dies
:
$db = ($GLOBALS["___mysqli_ston"] = mysqli_connect($dbhost, $dbuser, $dbpass))
or die("The site database appears to be down.");
The logfile message is:
mysqli_connect(): The server requested authentication method unknown to the client
What about upgrading to PHP 5.6 would cause this line to fail?