I am using PHP 5.5 and MAMP (downloaded from here):
I have a basic script like this:
<?php
$servername = "127.0.0.1";
$username = "root";
$password = "root";
// Create connection
$conn = mysqli_connect($servername, $username, $password);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
echo "Connected successfully";
?>
and when I run this script I get this error:
PHP Warning: mysqli_connect(): (HY000/2002): Connection refused in /Applications/MAMP/htdocs/test/test.php on line 7
Is there some configuration issue that I need to set up within MAMP or PHP?
localhost
,127.0.0.1
and password ofroot
and empty string. The credentials and the port should be whatever defaults came with MAMP when I downloaded it earlier today. – johncorser.ini
or other system files, you'll need to restart all services in order for the changes to take effect. – Funk Forty Niner