Multisite problem
-
First a backup ??
For creating a multisite i was using this link:
https://www.wpbeginner.com/wp-tutorials/how-to-enable-multi-site-option-in-wordpress-3-0/First i made a subdomain with directadmin.
then i put this one in the wp-config file:
define(‘WP_ALLOW_MULTISITE’, true);I logged in again and saw the configuration start for the multisite.
So i made a blogs.dir directory in wp-content and gave it 777 permission.
I changed the .htacces file:
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L]
and also the wp-config.php. This is what i added above the: That’s all, stop editing! Happy blogging.
('WP_DEBUG', false); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'clouddog.eu' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
I logged in again and it seemed to be working.
but when i want to go to the dasboard of the fb.clouddog.eu
https://fb.clouddog.eu/wp-login.phpI get this error:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request. Apache/2 Server at fb.clouddog.eu Port 80
When i go look in the fb dir i see that it is empty except for the html file created when i created the subdomain.
So no wp-admin.php or whatever.When i go look in the blogs.dir. It’s also empty
I read somewhere that maybe the apache has to be rebuild but before i as the hoster i want some advice from this community.
Thx in advance
- The topic ‘Multisite problem’ is closed to new replies.