Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configure COmanage Registry

Copy the file registry-sourcecurrent/app/Config/database.php.default to registry-sourcecurrent/local/Config/database.php. (For versions prior to v1.0.0, copy the file to registry-sourcecurrent/app/Config/database.php instead.)

...

Note
titlePrefix Must Be cm_

Currently, the prefix value must be set to "cm_". (CO-174).

Code Block
borderStylesolid
titleexample database.php for MySQLborderStylesolid
var $default = array(
 'driver' => 'Database/Mysql',
 'persistent' => false,
 'host' => 'localhost',
 'login' => 'registry_user',
 'password' => 'a good password goes here',
 'database' => 'registry',
 'prefix' => 'cm_',
 );
Code Block
borderStylesolid
titleexample database.php for PostgreSQLborderStylesolid
var $default = array(
 'driver' => 'Database/Postgres',
 'persistent' => false,
 'host' => 'localhost',
 'login' => 'registry_user',
 'password' => 'a good password goes here',
 'database' => 'registry',
 'prefix' => 'cm_',
 );

...