source: trunk/blogs/wp-config.php @ 103

Revision 103, 1.4 KB checked in by admin, 4 years ago (diff)

Merged 1.003 into Trunk

Line 
1<?php
2require_once( dirname(__FILE__) . '/../common/omconfig.php' );
3
4// ** MySQL settings ** //
5define('DB_HOST'     , OMCOLLAB_DB_HOSTNAME   );
6define('DB_NAME'     , OMBLOG_DATABASE_NAME   );
7define('DB_USER'     , OMBLOG_DB_USERNAME     );
8define('DB_PASSWORD' , OMBLOG_DB_PASSWORD );
9define('DB_CHARSET'  , 'utf8');
10define('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.
15define('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.
24define ('WPLANG', '');
25
26/* That's all, stop editing! Happy blogging. */
27
28define( 'WP_SITEURL', "http://{$_SERVER['HTTP_HOST']}". RR_OMCOLLAB_DIRECTORY ."blogs" );
29define( 'WP_HOME'   , "http://{$_SERVER['HTTP_HOST']}". RR_OMCOLLAB_DIRECTORY ."blogs"  );
30
31define( 'ABSPATH'   , dirname(__FILE__).'/' );
32
33require_once(ABSPATH.'wp-settings.php');
34?>
Note: See TracBrowser for help on using the repository browser.