• Resolved deleteme

    (@krackenit)


    I set up wordpress, everythings all hunky-dory. I tried to set up Multisite, everything went according to plan.
    THEN I tried to create a new site, that also worked, I can edit the general info from the Network admin, and I can edit and run the original site like normal, but when I try to go the new site, or it’s dashboard I receive a 404 Not Found page.

    My .htaccess is exactly what the “Network Setup” under the Network Admin’s Dashboard, same with the list of defines in the wp-config.php file. I have placed them below:

    wp-config.php:

    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', true);
    define('DOMAIN_CURRENT_SITE', '[SERVER_IP]');
    define('PATH_CURRENT_SITE', '/wordpress/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    .htaccess:

    RewriteEngine On
    RewriteBase /wordpress/
    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]

    Any help would be greatly appreciated

Viewing 10 replies - 1 through 10 (of 10 total)
  • I have the same problem.

    Thread Starter deleteme

    (@krackenit)

    I found a fix! After doing countless hours of research I found the issue. All I needed to do was change the line
    AllowOverride None to AllowOverride FileInfo Options

    You can find this in your httpd.conf search for “Options FileInfo AuthConfig Limit” (found in the comments) and change the line of code below it

    what u mean with ” AllowOverride None to AllowOverride FileInfo Options”

    I have the same problem. What is a httpd.conf?!

    it seems i know what is my problem

    the dns in the domain register is wrong it is pointing to another nameserver and this is the problem

    i’ll update with solutions if it’s not it

    For CPanel users:

    Have you created a Wildcard subdomain entry in you CPanel?

    That was one of my first mistakes…

    https://codex.www.ads-software.com/Configuring_Wildcard_Subdomains

    well in my case it was wrong dns but in all there is no good guide to explain about it all and i want to do that step by step with all things that need to be checked.

    Thread Starter deleteme

    (@krackenit)

    “what u mean with ” AllowOverride None to AllowOverride FileInfo Options””

    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

    where is the http.conf file? It is not in the root directory

    Yeah! Where is it?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Multisite – Can't view new sites, but able to create them’ is closed to new replies.