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]
- You must be logged in to reply to this topic.