Forum for discussing general topics related to Couch.
3 posts Page 1 of 1
Hi all,

I've built a few sites with Couch now and I'm going to host them with a hosting provider, but the cheaper plan only supports 3 Mysql databases? Can I run multiple Couch sites on 1 database? This is possible with a table prefix (that's what is is called, right?) right?

Thanks in advance!
-Jan
Exactly, just change 7b in the config.php file and you will be able to use multiple Couch instances in one database.

// 7b.
// Needed only if multiple instances of this CMS are to be installed in the same database
// (please use only alphanumeric characters or underscore (NO hyphen) )
define( 'K_DB_TABLES_PREFIX', 'prefixHere_' );
krisdoff wrote: Exactly, just change 7b in the config.php file and you will be able to use multiple Couch instances in one database.

// 7b.
// Needed only if multiple instances of this CMS are to be installed in the same database
// (please use only alphanumeric characters or underscore (NO hyphen) )
define( 'K_DB_TABLES_PREFIX', 'prefixHere_' );

Thanks a lot! :D
3 posts Page 1 of 1