Welcome Guest, Not a member yet? Register   Sign In
Unable to connect to your database server using the provided settings. Filename: core/Loader.php Line Number: 346
#4

[eluser]InsiteFX[/eluser]
Test database, create a new php file in your root

Code:
<?php

$db_conn = mysqli_connect("localhost", "user_name", "password", "database_name");

// Evaluate the connection
if (mysqli_connect_errno())
{
    echo mysqli_connect_error();
    exit();
}
else
{
    echo "Successful database connection, happy coding!!!";
}

?>

I use MySQLi with pconnect and it works fine on my system.


Messages In This Thread
Unable to connect to your database server using the provided settings. Filename: core/Loader.php Line Number: 346 - by El Forum - 08-19-2014, 04:41 AM



Theme © iAndrew 2016 - Forum software by © MyBB