• Hi all,

    I recently tried to remove a Multisite install by following instructions on this page:

    https://premium.wpmudev.org/blog/uninstall-multisite/?tchv=b&utm_expid=3606929-72.AqocGS0YR5Gn_p3r6t6_AA.1&utm_referrer=https%3A%2F%2Fwww.google.co.uk%2F

    However, my website is now down and I received the following errors:

    wpsjxx_usermeta: 2 clients are using or haven’t closed the table properly
    wpsjxx_1_posts: Table ‘charliek_w1505b.wpsjxx_1_posts’ doesn’t exist
    wpsjxx_1_comments: Table ‘charliek_w1505b.wpsjxx_1_comments’ doesn’t exist
    wpsjxx_1_links: Table ‘charliek_w1505b.wpsjxx_1_links’ doesn’t exist
    wpsjxx_1_options: Table ‘charliek_w1505b.wpsjxx_1_options’ doesn’t exist
    wpsjxx_1_postmeta: Table ‘charliek_w1505b.wpsjxx_1_postmeta’ doesn’t exist
    wpsjxx_1_terms: Table ‘charliek_w1505b.wpsjxx_1_terms’ doesn’t exist
    wpsjxx_1_term_taxonomy: Table ‘charliek_w1505b.wpsjxx_1_term_taxonomy’ doesn’t exist
    wpsjxx_1_term_relationships: Table ‘charliek_w1505b.wpsjxx_1_term_relationships’ doesn’t exist
    wpsjxx_1_termmeta: Table ‘charliek_w1505b.wpsjxx_1_termmeta’ doesn’t exist
    wpsjxx_1_commentmeta: Table ‘charliek_w1505b.wpsjxx_1_commentmeta’ doesn’t exist
    wpsjxx_1_woocommerce_termmeta: Table ‘charliek_w1505b.wpsjxx_1_woocommerce_termmeta’ doesn’t exist

    Any suggestions would be really appreciated!

    charlie

Viewing 1 replies (of 1 total)
  • HI CharlieGorilla,
    To remove Multisite Install Open your wp-config.php file and delete the following similar code:

    define( 'MULTISITE', true );
    define( 'SUBDOMAIN_INSTALL', false );
    $base = '/wordpress/';
    define( 'DOMAIN_CURRENT_SITE', 'localhost' );
    define( 'PATH_CURRENT_SITE', '/wordpress/' );
    define( 'SITE_ID_CURRENT_SITE', 1 );
    define( 'BLOG_ID_CURRENT_SITE', 1 );

    Also remove .htaccess file and re add below file in .htaccess

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘Errors when removing multisite’ is closed to new replies.