Quote:
Originally Posted by jacked
first time i noticed it in the wp-config the other day
Code:
// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-content/languages.
// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
/* That's all, stop editing! Happy blogging. */
this is under the MySQL settings in the config just change the prefix to wp_1 instead of wp_ , and you should be good to go.
|
Yeah, DON'T DO THAT! That will only change the configuration, but not the actual table names. Table prefix is configure BEFORE the tables are created

But yeah, you can put 100s of them in 1 single db and watch it crash
