I have a remote db, hosted on Godaddy.com I use wamp on my development computer. I want my locally installed wordpress to read/write from a remote DB on my Godaddy hosting.
I created the DB on my hosting account. I setup wordpress WP-config
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'my_db_name');
/** MySQL database username */
define('DB_USER', 'my_user_name');
/** MySQL database password */
define('DB_PASSWORD', 'asldk12%$3asBNSdiuhw4eD(8s7fC@#');
/** MySQL hostname */
define('DB_HOST', 'address_remote_mysql_server');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
The database DOES allow remote connections.
In my browser (firefox) i go to http://localhost/wordpress/ The installer asks me for a user name and password, and a site name. I submit this form, the browser loads a white page with only a Wordpress logo. There, my installation ends.
I check my db, there I find that Wordpress has written 11 tables into the db. All tables except for wp_options are empty. wp_options has several records, but they are full of default information, not the data I wrote into the install page form.
What is going on here?