oketaojok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multisite subsites not working properlyhere is the link to the new form I created:
https://wordpress.org/support/topic/enabling-the-wordpress-multisite-network/
Forum: Fixing WordPress
In reply to: Multisite subsites not working properly@jnashhawkins sorry i’m pretty new to this. I do not have a working multisite, and therefore cannot add a subsite.
Forum: Fixing WordPress
In reply to: Multisite subsites not working properlydomain: dayschools.org
@jnashhawkins I am having kind of the same issue. Everything works just fine until I get to the section involving Enabling the Network:
1.Add the following to your wp-config.php file in /opt/bitnami/apps/wordpress/htdocs/ above the line reading /* That’s all, stop editing! Happy publishing. */:
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘dayschools.org’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);2. Add the following to your .htaccess file in /opt/bitnami/apps/wordpress/htdocs/, replacing other WordPress rules:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Every time i enter these lines of code my site breaks, and when I retry to install multi-site it gives me the following error:
Warning: An existing WordPress network was detected.
I have tried countless tutorials. Maybe im missing something. Any help would be amazing!!!