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.

Can it be possible to run two (or more) wordpress copies from different locations and same database prefix tables (for example wp)?

example :
dev.mydomain.com/developer1/wordpress
dev.mydomain.com/developer2/wordpress
live.mydomain.com/wordpress

Please note that some widgets use serialized baseurl saved in the database.

EDIT
I will try to explain more about the desired result.
So we have two people working on one wordpress site and each have his own directory (see example above) but they must share same database and tables.If somebody add new post others must see it too.
Hope this helps.

share|improve this question
1  
How does Google not answer your question? – ta.speot.is Sep 24 '12 at 9:00

closed as off topic by Quentin, ta.speot.is, JvdBerg, adlawson, hims056 Sep 24 '12 at 9:21

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

You can find some posts here, may be useful to you:

two sites one database wordpress

multiple wp blogs using same database

Good Luck !

share|improve this answer

Sure. You can maybe have some issues with the serialized baseurl but it works great for me and a lot of Wordpress developers.

share|improve this answer

Yes, it is possible, you need however to specify different settings in both wp-config.php files, most important different $table_prefix, otherwise the data will be overwritten, let`s say "db1_" and "db2_".

Example wp-config.php file should look like this:

define('DB_NAME', 'database');

/** MySQL database username */
define('DB_USER', 'user');

/** MySQL database password */
define('DB_PASSWORD', 'password');

/** MySQL hostname */
define('DB_HOST', 'localhost');

/**
 * WordPress Database Table prefix.
 *
 * You can have multiple installations in one database if you give each a unique
 * prefix. Only numbers, letters, and underscores please!
 */
$table_prefix  = 'db1_';
share|improve this answer
This is not enough. You also need to change some DB entries. codegarage.com/blog/2011/08/… – janw Sep 24 '12 at 9:06

You can run more then one WP in one DB just use different prefixes for the tables.
If your sites already are live changing the prefix is not just editeing the wp-config.php
Take a look here http://codegarage.com/blog/2011/08/how-to-change-your-wordpress-table-prefix/

http://codex.wordpress.org/Installing_Multiple_Blogs

share|improve this answer

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