• I’ve spent a significant period of time trying to debug this but to no avail.

    I have just setup a multisite at the following URL – https://104.131.150.17

    When I try to create a new site on the network, it just hangs. I have setup wildcard domains already with my hosting provider (digital ocean)

    https://104.131.150.17/wp-signup.php

    Here is my config and .htaccess file code, if this helps.

    /* Multisite */
    define('WP_ALLOW_MULTISITE', true );
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', '104.131.150.17');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    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]
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello theplastickid,

    Please contact with your hosting provider and ask him to set below
    In the “http.conf” file you need to find the line that says “AllowOverride None” and change it to “AllowOverride FileInfo Options”. If you search the file for FileInfo Options you should find via the comments which line to replace.

    Thanks

    Thread Starter theplastickid

    (@theplastickid)

    Thanks for the reply Clarion.

    Do you know which of the following I should change?

    # Sets the default security model of the Apache2 HTTPD server. It does
    # not allow access to the root filesystem outside of /usr/share and /var/www.
    # The former is used by web applications packaged in Debian,
    # the latter may be used for local directories served by the web server. If
    # your system is serving content from a sub-directory in /srv you must allow
    # access here, or in any related virtual host.
    <Directory />
            Options FollowSymLinks
            AllowOverride None
            Require all denied
    </Directory>
    
    <Directory /usr/share>
            AllowOverride None
            Require all granted
    </Directory>
    
    <Directory /var/www/>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
    </Directory>
    
    #<Directory /srv/>
    #       Options Indexes FollowSymLinks
    #       AllowOverride None
    #       Require all granted
    #</Directory>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cannot create new sites on my multisite installation’ is closed to new replies.