XPressME Integration Kit

Trac

source: trunk/extras/xpress_i18n/portuguese-br/xpressme_modules_root/wp-config.php @ 355

Last change on this file since 355 was 355, checked in by toemon, 15 years ago

今後の変更にる各言語用のwp-config.phpへの影響を最小限に抑えるため、、wp-config.phpを極力変更しない構成にする。 fixes #196

File size: 3.3 KB
Line 
1<?php
2/** It is an additional loading for XPressME. */
3require_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('uni');
13
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 */
20define('DB_NAME', $xoops_config->xoops_db_name);
21
22/** Do not change. MySQL database username */
23define('DB_USER', $xoops_config->xoops_db_user);
24
25/** Do not change. MySQL database password */
26define('DB_PASSWORD', $xoops_config->xoops_db_pass);
27
28/** Do not change. MySQL hostname */
29define('DB_HOST', $xoops_config->xoops_db_host);
30       
31/** Database Charset to use in creating database tables. */
32define('DB_CHARSET', 'utf8');
33
34/** The Database Collate type. Don't change this if in doubt. */
35define('DB_COLLATE', '');
36
37/**#@+
38 * Chaves únicas de autenticação.
39 *
40 * Altere cada chave para um frase única!
41 * Você pode gerá-las usando {@link http://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}
42 *
43 * @since 2.6.0
44 */
45define('AUTH_KEY', 'coloque sua frase única aqui');
46define('SECURE_AUTH_KEY', 'coloque sua frase única aqui');
47define('LOGGED_IN_KEY', 'coloque sua frase única aqui');
48define('NONCE_KEY', 'coloque sua frase única aqui');
49/**#@-*/
50
51if ($xoops_config->is_wpmu){    //for WordPressMU
52        define('VHOST', 'no');
53        $base = $xoops_config->mu_path_current_site;
54        define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site );
55        define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site );
56        define('SITE_ID_CURRENT_SITE', 1);
57        define('BLOGID_CURRENT_SITE', '1' );
58
59        define('AUTH_SALT', 'put your unique phrase here');
60        define('LOGGED_IN_SALT', 'put your unique phrase here');
61        define('SECURE_AUTH_SALT', 'put your unique phrase here');
62}
63
64/**
65 * Prefixo da tabela do banco de dados do WordPress.
66 *
67 * Você pode ter várias instalações em um único banco de dados se você der para cada um um único
68 * prefixo. Somente números, letras e sublinhados!
69 */
70// Do not change. $table_prefix is generated from XOOPS DB Priefix and the module directory name.
71$table_prefix  = $xoops_config->module_db_prefix;
72
73/**
74 * O idioma localizado do WordPress é o inglês por padrão.
75 *
76 * Altere esta definição para localizar o WordPress. Um arquivo MO correspondente a
77 * língua escolhida deve ser instalado em wp-content/languages. Por exemplo, instale
78 * pt_BR.mo em wp-content/languages e altere WPLANG para 'pt_BR' para habilitar o suporte
79 * ao português do Brasil.
80 */
81define ('WPLANG', 'pt_BR');
82
83/* Isto é tudo, pode parar de editar! :) */
84
85/** Caminho absoluto do WordPress para o diretório Wordpress. */
86if ( !defined('ABSPATH') )
87        define('ABSPATH', dirname(__FILE__) . '/');
88
89/** Processing for XPressME is done.*/
90require_once( ABSPATH .'/include/add_xpress_process.php');
91
92require_once(ABSPATH.'wp-settings.php');
93?>
Note: See TracBrowser for help on using the repository browser.