| 1 | <?php
|
|---|
| 2 | require_once( dirname(__FILE__) . '/../common/omconfig.php' );
|
|---|
| 3 |
|
|---|
| 4 | // ** MySQL settings ** //
|
|---|
| 5 | define('DB_HOST' , OMCOLLAB_DB_HOSTNAME );
|
|---|
| 6 | define('DB_NAME' , OMBLOG_DATABASE_NAME );
|
|---|
| 7 | define('DB_USER' , OMBLOG_DB_USERNAME );
|
|---|
| 8 | define('DB_PASSWORD' , OMBLOG_DB_PASSWORD );
|
|---|
| 9 | define('DB_CHARSET' , 'utf8');
|
|---|
| 10 | define('DB_COLLATE' , '');
|
|---|
| 11 |
|
|---|
| 12 | // Change SECRET_KEY to a unique phrase. You won't have to remember it later,
|
|---|
| 13 | // so make it long and complicated. You can visit http://api.wordpress.org/secret-key/1.0/
|
|---|
| 14 | // to get a secret key generated for you, or just make something up.
|
|---|
| 15 | define('SECRET_KEY', 'Change this to a unique phrase'); // Change this to a unique phrase.
|
|---|
| 16 |
|
|---|
| 17 | // You can have multiple installations in one database if you give each a unique prefix
|
|---|
| 18 | $table_prefix = OMBLOG_DB_TABLE_PREFIX;
|
|---|
| 19 |
|
|---|
| 20 | // Change this to localize WordPress. A corresponding MO file for the
|
|---|
| 21 | // chosen language must be installed to wp-content/languages.
|
|---|
| 22 | // For example, install de.mo to wp-content/languages and set WPLANG to 'de'
|
|---|
| 23 | // to enable German language support.
|
|---|
| 24 | define ('WPLANG', '');
|
|---|
| 25 |
|
|---|
| 26 | /* That's all, stop editing! Happy blogging. */
|
|---|
| 27 |
|
|---|
| 28 | define( 'WP_SITEURL', "http://{$_SERVER['HTTP_HOST']}". RR_OMCOLLAB_DIRECTORY ."blogs" );
|
|---|
| 29 | define( 'WP_HOME' , "http://{$_SERVER['HTTP_HOST']}". RR_OMCOLLAB_DIRECTORY ."blogs" );
|
|---|
| 30 |
|
|---|
| 31 | define( 'ABSPATH' , dirname(__FILE__).'/' );
|
|---|
| 32 |
|
|---|
| 33 | require_once(ABSPATH.'wp-settings.php');
|
|---|
| 34 | ?>
|
|---|