Viewing 2 replies - 1 through 2 (of 2 total)
  • It is possible to have 2 WordPress installations running from the same database. You would not want to use the same tables though. Using the same tables means that you would have the same info and settings on both sites.

    What you need to do is change this line in your wp-config.php files so that the prefix is different for each site:

    $table_prefix = 'wp_';

    Change ‘wp_’ to anything else for the second site, and you’ll be fine.

    Thread Starter pricklepantz

    (@pricklepantz)

    I see, got it Michael.
    Thank you for your answer, really appreciate it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘2 WordPress using one database and tables’ is closed to new replies.