Welcome Guest, Not a member yet? Register   Sign In
mysql_connect Error
#2

I think you should try to make a simple PHP script (non-CodeIgniter) and see if you can connect. It's highly unlikely that CodeIgniter is your problem.


Code:
$mysqli = new mysqli("localhost", "user", "password", "database");
if ($mysqli->connect_errno) {
    echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}
echo $mysqli->host_info . "\n";
Reply


Messages In This Thread
mysql_connect Error - by iamthestreets - 07-06-2015, 11:48 AM
RE: mysql_connect Error - by skunkbad - 07-06-2015, 12:12 PM
RE: mysql_connect Error - by iamthestreets - 07-06-2015, 12:43 PM
RE: mysql_connect Error - by CroNiX - 07-06-2015, 01:41 PM



Theme © iAndrew 2016 - Forum software by © MyBB