I have install Drupal 4.6.1 with default.
I need to be able to organize the database field with a prefix.
But when I set the $db_prefix, drupal didn't work.
Do I need do anymore, such as edit database?
Need Help!

Comments

Emiliano’s picture

Hello!

If you define $db_prefix you must edit database.mysql and prefix each table to match your settings. Let's say you define:

$db_prefix = 'chw_';

Then you must prefix each table of the script with 'chw_' and every time you install a new module you must prefix its table as well.

I hope this helps you.

Emiliano
http://www.novayork.com

chweifly’s picture

Thanks for your help!