wp-config settings
-
I have a wpmu installation ugraded to wp 3.0 – it is working well with subdomains.
I have the following wp-config settings:
define(‘VHOST’, ‘yes’);
//define(‘SUBDOMAIN_INSTALL’, true);
define(‘PATH_CURRENT_SITE’, ‘/wp_mu/’);
define(‘BLOGID_CURRENT_SITE’, ‘1’);define( ‘WP_ALLOW_MULTISITE’, true );
//define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
//define( ‘DOMAIN_CURRENT_SITE’, ‘it-gnoth.de’ );
//define( ‘PATH_CURRENT_SITE’, ‘/’ );
//define( ‘SITE_ID_CURRENT_SITE’, 1 );
//define( ‘BLOG_ID_CURRENT_SITE’, 1 );
define( “WP_USE_MULTIPLE_DB”, false );I got the message that VHOST is deprecated and I should use SUBDOMAIN_INSTALL instead.
If I set this to true the whole installation is no more accessible and I get a message that the database connection is not possible.Has anyone an idea how to set those constants?
- The topic ‘wp-config settings’ is closed to new replies.