Support » Networking WordPress » Page Not Found Error

  • dunksphotography

    (@dunksphotography)


    I’ve been attemtpting to setup and run a multisite wordpress installation on a godaddy hosting server and despite my best efforts can’t seem to make it work. I’ve followed the instructions and gotten to the point where it’s all setup properly with the superadmin menu and site creation up, but after i make a site and click on visit dashboard it gives me a graphicless page that says “page not found” but has all the basic wordpress links on the page (http://markitect.me/soup/wp-admin/)

    I’ve been searching both godaddy and wordpress support forums and can’t find a similar problem. I would be extremely grateful for some assistance with this issue.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter dunksphotography

    (@dunksphotography)

    I couldn’t figure out how to properly, which is why I setup the network as a sub-path directory instead.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Deleted the weird blank post and the bump with just a URL.

    Okay. http://markitect.me/soup/ is showing no images, so I think you didn’t get your .htaccess set up right 🙂 What’s in it?

    Thread Starter dunksphotography

    (@dunksphotography)

    okay, I’m pretty clueless when it comes to most of this stuff.

    This is what I have in it:

    RewriteEngine On
    RewriteCond %{QUERY_STRING}	^.*(w|h|f)\=.*$
    RewriteRule ^(wp\-content\/uploads\/.*\.)(jpg|JPG|jpeg|png|PNG|gif|GIF)$ /thumb.php?image=$1$2 [QSA,L]
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Thread Starter dunksphotography

    (@dunksphotography)

    I tried inputting the subfolder .htaccess file from that page and it just ended up causing a “500 internal server error” so i deleted it completely and the site came back online but still no working multisite. Now the multisite home pages don’t even show up but I’m assuming that’s cause of no .htaccess file. I don’t know if it’s relevant or not but it doesn’t seem like any of the extra wordpress php files were created when I setup the basic multisite settings.

    This is what I put in this time:

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I don’t know if it’s relevant or not but it doesn’t seem like any of the extra wordpress php files were created when I setup the basic multisite settings.

    There are no extra files.

    If your .htaccess is causing an error 500, ask your webhost if AllowOverride is set to ALL for your httpd.conf.

    Thread Starter dunksphotography

    (@dunksphotography)

    Is there a place I can go in and manually change httpd.conf? I use godaddy and while I’m pretty new to anything more complex then html I know they have a unreal amount of manual options to configure your server.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Depends on what sort of GD account you have, really. Shared host, you can’t. VPS you should be able to.

    Normally, httpd.conf file is in the /usr/local/apache/conf directory.

    Per http://help.godaddy.com/article/1228?locale=en that’s where it is.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Page Not Found Error’ is closed to new replies.