Support » Networking WordPress » Existant WP site to Multisite

  • hello,

    I follow the process to create an existe site wordpress to a multisite.

    As below

    Step 1 : wp config

    define( ‘WP_ALLOW_MULTISITE’, true );

    define(‘MULTISITE’, true); define(‘SUBDOMAIN_INSTALL’, false); define(‘DOMAIN_CURRENT_SITE’, ‘geoffraygroetzimmobilier.fr/); define(‘PATH_CURRENT_SITE’, ‘/’); define(‘SITE_ID_CURRENT_SITE’, 1); define(‘BLOG_ID_CURRENT_SITE’, 1);

    Step 2 : HTHACCES.

    RewriteEngine On RewriteBase / RewriteRule ^index.php$ – [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ – [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*.php)$ $1 [L] RewriteRule . index.php [L]

    Then I got the problem

    Database connection disabled

    I added

    define(‘WP_ALLOW_REPAIR’, true); on config.php.

    then i got information below

    Database was not able to be find :

    wpgd_1_posts: Table ‘ijux1164_wp173.wpgd_1_posts’ doesn’t exist

    wpgd_1_comments: Table ‘ijux1164_wp173.wpgd_1_comments’ doesn’t exist

    wpgd_1_links: Table ‘ijux1164_wp173.wpgd_1_links’ doesn’t exist

    wpgd_1_options: Table ‘ijux1164_wp173.wpgd_1_options’ doesn’t exist

    wpgd_1_postmeta: Table ‘ijux1164_wp173.wpgd_1_postmeta’ doesn’t exist

    wpgd_1_terms: Table ‘ijux1164_wp173.wpgd_1_terms’ doesn’t exist

    wpgd_1_term_taxonomy: Table ‘ijux1164_wp173.wpgd_1_term_taxonomy’ doesn’t exist

    wpgd_1_term_relationships: Table ‘ijux1164_wp173.wpgd_1_term_relationships’ doesn’t exist

    wpgd_1_termmeta: Table ‘ijux1164_wp173.wpgd_1_termmeta’ doesn’t exist

    wpgd_1_commentmeta: Table ‘ijux1164_wp173.wpgd_1_commentmeta’ doesn’t exist

    What I try to do it’s have sub domain link to a page of the website.

    I thought about multisite ?

    Do the error it’s because I created a have many to set

    define(‘SUBDOMAIN_INSTALL’, True); instead of define(‘SUBDOMAIN_INSTALL’, false); ??

    Thanks for help

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • It looks like you may have run into a database error after attempting to enable the WordPress multisite feature. The error message indicates that certain database tables are missing, which may have occurred during the creation of the multisite.

    It’s possible that the error could be related to the value of the SUBDOMAIN_INSTALL constant in your wp-config.php file. If you’re planning to use subdomains for your multisite, this value should be set to true. However, if you’re planning to use subdirectories instead, it should be set to false.

    To resolve the missing table errors, you may need to manually create the missing database tables or restore them from a backup. You may also want to check your database credentials and ensure that the user account you’re using has sufficient privileges to access and modify the database.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.