XPressME Integration Kit

Trac

Changeset 210 for trunk/wp-config.php


Ignore:
Timestamp:
May 19, 2009, 7:39:43 PM (15 years ago)
Author:
toemon
Message:

WordPressMUをインストールするための変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-config.php

    r207 r210  
    5151define('LOGGED_IN_KEY', 'put your unique phrase here'); 
    5252define('NONCE_KEY', 'put your unique phrase here'); 
     53 
     54if ($xoops_config->is_wpmu){    //for WordPressMU 
     55        define('VHOST', 'no');  
     56        $base = $xoops_config->mu_path_current_site; 
     57        define('DOMAIN_CURRENT_SITE', $xoops_config->mu_domain_current_site ); 
     58        define('PATH_CURRENT_SITE', $xoops_config->mu_path_current_site ); 
     59        define('SITE_ID_CURRENT_SITE', 1); 
     60        define('BLOGID_CURRENT_SITE', '1' ); 
     61 
     62        define('AUTH_SALT', 'put your unique phrase here'); 
     63        define('LOGGED_IN_SALT', 'put your unique phrase here'); 
     64        define('SECURE_AUTH_SALT', 'put your unique phrase here'); 
     65} 
    5366 
    5467/** 
Note: See TracChangeset for help on using the changeset viewer.