Search results

  1. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    When I created the database and dbuser I used "mysql database" Not the "mysql database wizard"
  2. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    Ok here is the latest I have. I have created a dummy dbuser for testing my connecting problem. index.html <!DOCTYPE html> <html> <body> <p> <a href="dbconfig.php">config file</a> </p> </body> </html> dbconfig.php <?php // connects to the mysql db or outputs an error $conn =...
  3. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    what table would have the password for the user?
  4. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    just checked user & database name looks correct to me
  5. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    Connect string now looks like this: $conn = mysqli_connect('localhost', 'yourname_dbusername', 'dbpassword', 'yourname_dbname') I believe dbusername, dbpassword and dbname to be correct. Here is the expanded error message I get: Warning: mysqli_connect(): (42000/1044): Access denied for user...
  6. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    Connect string now looks like this: $conn = mysqli_connect('localhost', 'yourname_dbusername', 'dbpassword', 'dbname') I get this new error message: Warning: mysqli_connect()...
  7. jerome1g

    Warning: mysqli_connect(): (28000/1045): Access denied

    When I try to connect to my database and user on x10 I get the following message: Warning: mysqli_connect(): (28000/1045): Access denied for user '221cf1'@'localhost' (using password: YES) in/home/jerome1g/public_html/dbconfig.php on line 4 Connect string looks like this: $conn =...
  8. jerome1g

    mysql_connect error

    I changed my connect around. It now reads: $conn = mysqli_connect('localhost', 'my_user', 'my_password', 'my_db') or die(mysqli_error()); In addition I think I had the database name as...
  9. jerome1g

    mysql_connect error

    When I try to connect to the database I get the following error: Unknown MySQL server host ' xo3.x10hosting.com' (4) My dbconfig.php looks likes this: <?php $conn = mysql_connect('xo3.x10hosting.com', 'dbusername', 'dbpassword'); What should the sever name be ^ mysql_select_db('dbname'); ?>...
  10. jerome1g

    #1044 - Access denied

    To all, I am trying to import a .sql file that will create a database with a user and tables and data into x10hosting(free account) I get the following message: Error SQL query: CREATE DATABASE IF NOT EXISTS `jerome1g_career1transit` /*!40100 DEFAULT CHARACTER SET latin1 */; MySQL said...
  11. jerome1g

    Newbie looking to update phpMyAdmin

    When I click on the phpmyadmin button on X10hosting(free account) I get the following information: Version information: 4.0.10.7, latest stable version: 4.6.1 A newer version of phpMyAdmin is available and you should consider upgrading. The newest version is 4.6.1, released on 2016-05-03. How...
Top