Quote:
Originally Posted by bangman
Just edit this prefix for every install
Code:
$table_prefix = 'wp_'; //
For example, this could be a line from one of my blogs
$table_prefix = 'wp_'; //
And this from another one
$table_prefix = 'wp2_'; //
As long as they are different, it will work fine.
|
Yea I understand that part of it, but do I just put that line in the config file? or do I put it somewhere else?
for example :
// ** MySQL settings ** //
define('DB_NAME', 'wordpress'); //
define('DB_USER', 'username'); //
define('DB_PASSWORD', 'password'); //
define('DB_HOST', 'localhost'); //
$table_prefix = 'wp2_'; //
would that be correct?