Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
It's unusual for godaddy to allow remote database connections – case1352 Oct 28 '12 at 21:26

1 Answer

up vote 0 down vote accepted

What version of PHP you are using? This may be problem with lower version of PHP.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.