Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • @jnashhawkins sorry i’m pretty new to this. I do not have a working multisite, and therefore cannot add a subsite.

    domain: 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!!!

    • This reply was modified 5 years, 9 months ago by oketaojok.
    • This reply was modified 5 years, 9 months ago by oketaojok.
Viewing 3 replies - 1 through 3 (of 3 total)