Wordpress Multisite “Error establishing a database connection” in localhost

后端 未结 11 1390
北荒
北荒 2020-12-24 14:04

When attempting to convert WordPress to a Multisite setup, I get the error:

Error establishing a database connection

I\'m using

11条回答
  •  独厮守ぢ
    2020-12-24 14:30

    I added $base = '/'; into the config, which solved the issue.

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', 'mydomain.com');
    $base = '/';
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    

提交回复
热议问题