| 1 | <?php
 | 
|---|
| 2 | /** It is an additional loading for XPressME. */
 | 
|---|
| 3 | require_once dirname( __FILE__ ).'/include/add_xpress_config.php' ;
 | 
|---|
| 4 | 
 | 
|---|
| 5 | /**
 | 
|---|
| 6 |  * mb_language() sets language. If language  is omitted, it returns current language as string.
 | 
|---|
| 7 |  * language setting is used for encoding e-mail messages. 
 | 
|---|
| 8 |  * Valid languages are "Japanese", "ja","English","en" and "uni" (UTF-8). 
 | 
|---|
| 9 |  * mb_send_mail() uses this setting to encode e-mail.
 | 
|---|
| 10 |  * Language and its setting is ISO-2022-JP/Base64 for Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for English. 
 | 
|---|
| 11 |  */
 | 
|---|
| 12 |  if (function_exists("mb_language")) mb_language('Japanese');
 | 
|---|
| 13 |  if (function_exists("mb_internal_encoding")) mb_internal_encoding('UTF-8');
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // ** MySQL settings - You can get this info from your web host ** //
 | 
|---|
| 16 | // Do not change  'DB_NAME','DB_USER','DB_PASSWORD' & 'DB_HOST'
 | 
|---|
| 17 | // because copies a set value of XOOPS. 
 | 
|---|
| 18 | 
 | 
|---|
| 19 | /** Do not change. The name of the database for WordPress */
 | 
|---|
| 20 | define('DB_NAME', $xoops_config->xoops_db_name);
 | 
|---|
| 21 | 
 | 
|---|
| 22 | /** Do not change. MySQL database username */
 | 
|---|
| 23 | define('DB_USER', $xoops_config->xoops_db_user);
 | 
|---|
| 24 | 
 | 
|---|
| 25 | /** Do not change. MySQL database password */
 | 
|---|
| 26 | define('DB_PASSWORD', $xoops_config->xoops_db_pass);
 | 
|---|
| 27 | 
 | 
|---|
| 28 | /** Do not change. MySQL hostname */
 | 
|---|
| 29 | define('DB_HOST', $xoops_config->xoops_db_host);
 | 
|---|
| 30 |         
 | 
|---|
| 31 | /** Database Charset to use in creating database tables. */
 | 
|---|
| 32 | define('DB_CHARSET', 'utf8');
 | 
|---|
| 33 | 
 | 
|---|
| 34 | /** The Database Collate type. Don't change this if in doubt. */
 | 
|---|
| 35 | define('DB_COLLATE', '');
 | 
|---|
| 36 | 
 | 
|---|
| 37 | //define('WP_DEBUG' ,true);
 | 
|---|
| 38 | 
 | 
|---|
| 39 | /**#@+
 | 
|---|
| 40 |  * Authentication Unique Keys.
 | 
|---|
| 41 |  *
 | 
|---|
| 42 |  * Change these to different unique phrases!
 | 
|---|
| 43 |  * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
 | 
|---|
| 44 |  *
 | 
|---|
| 45 |  * @since 2.6.0
 | 
|---|
| 46 |  */
 | 
|---|
| 47 | define('AUTH_KEY', 'put your unique phrase here');
 | 
|---|
| 48 | define('SECURE_AUTH_KEY', 'put your unique phrase here');
 | 
|---|
| 49 | define('LOGGED_IN_KEY', 'put your unique phrase here');
 | 
|---|
| 50 | define('NONCE_KEY', 'put your unique phrase here');
 | 
|---|
| 51 | 
 | 
|---|
| 52 | if ($xoops_config->is_wpmu){    //for WordPressMU
 | 
|---|
| 53 |         define('VHOST', 'no'); 
 | 
|---|
| 54 |         $base = $xoops_config->mu_path_current_site;
 | 
|---|
| 55 |         define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site );
 | 
|---|
| 56 |         define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site );
 | 
|---|
| 57 |         define('SITE_ID_CURRENT_SITE', 1);
 | 
|---|
| 58 |         define('BLOGID_CURRENT_SITE', '1' );
 | 
|---|
| 59 | 
 | 
|---|
| 60 |         define('AUTH_SALT', 'put your unique phrase here');
 | 
|---|
| 61 |         define('LOGGED_IN_SALT', 'put your unique phrase here');
 | 
|---|
| 62 |         define('SECURE_AUTH_SALT', 'put your unique phrase here');
 | 
|---|
| 63 | }
 | 
|---|
| 64 | 
 | 
|---|
| 65 | /**
 | 
|---|
| 66 |  * WordPress Database Table prefix.
 | 
|---|
| 67 |  *
 | 
|---|
| 68 |  * You can have multiple installations in one database if you give each a unique
 | 
|---|
| 69 |  * prefix. Only numbers, letters, and underscores please!
 | 
|---|
| 70 |  */
 | 
|---|
| 71 | // Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name. 
 | 
|---|
| 72 | $table_prefix  = $xoops_config->module_db_prefix;
 | 
|---|
| 73 | 
 | 
|---|
| 74 | /**
 | 
|---|
| 75 |  * WordPress Localized Language, defaults to Japanese.
 | 
|---|
| 76 |  *
 | 
|---|
| 77 |  * Change this to localize WordPress.  A corresponding MO file for the chosen
 | 
|---|
| 78 |  * language must be installed to wp-content/languages. For example, install
 | 
|---|
| 79 |  * de.mo to wp-content/languages and set WPLANG to 'de' to enable German
 | 
|---|
| 80 |  * language support.
 | 
|---|
| 81 |  *
 | 
|---|
| 82 |  * Example:
 | 
|---|
| 83 |  * define ('WPLANG', '');               // language support to English
 | 
|---|
| 84 |  */
 | 
|---|
| 85 | define ('WPLANG', 'ja_UTF');            // language support to Japanese
 | 
|---|
| 86 | 
 | 
|---|
| 87 | /* That's all, stop editing! Happy blogging. */
 | 
|---|
| 88 | 
 | 
|---|
| 89 | /** WordPress absolute path to the Wordpress directory. */
 | 
|---|
| 90 | if ( !defined('ABSPATH') )
 | 
|---|
| 91 |         define('ABSPATH', dirname(__FILE__).'/');
 | 
|---|
| 92 | 
 | 
|---|
| 93 | /** Processing for XPressME is done.*/
 | 
|---|
| 94 | require_once( ABSPATH .'/include/add_xpress_process.php');
 | 
|---|
| 95 | 
 | 
|---|
| 96 | require_once(ABSPATH.'wp-settings.php');
 | 
|---|
| 97 | ?> | 
|---|