I’m attempting to migrate a development version of a client site to their production server, a GoDaddy hosting account on a Linux server.
I know GoDaddy isn’t a recommended host and I’ve read of the trials and tribulations fellow ExpressionEngine developers have had with their servers but I’ve also read of successes.
I’ve created a database via their PHPMyAdmin interface and imported the development version of the database. However, when I try to load the site in a browser I get this error:
Database Error: Unable to select your database
This is the relevant portion of my config.php file where DB_NAME is filler for the name of my database and 3XXXXXX is the database server number. All of the values were simply copied and pasted into my config file to prevent typos.
$conf['db_hostname'] = "DB_NAME.db.3XXXXXX.hostedresource.com";
$conf['db_username'] = "DB_USERNAME";
$conf['db_password'] = "PASSWORD";
$conf['db_name'] = "DB_NAME";Since others have been able to get ExpressionEngine to run on GoDaddy servers, is there a step I’m missing?