• Resolved mokidad

    (@mokidad)


    I have successfully had my wordpress install running in a subdirectory for weeks. Today I created a draft post with the iOS wordpress utility and all seemed to be well. Tonight when I went to edit the post, WHAM! 500 Internal server error.

    I cannot access any content of my blog. HOWEVER, I can access the /wp-admin/options-permalink.php and other .php files directly.

    My WP install is at http://mokidocavaliers.com/dogs/

    If I access http://mokidocavaliers.com/dogs/wp-login.php, there seems to be a login, but if I log into that: 500.

    I tried deleting my .htaccess to no avail. Help me gurus?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Your site seems to be working fine

    Thread Starter mokidad

    (@mokidad)

    But the folder where wp is installed /dogs gives a 404 and the static page that used to show all posts /dogs/blog is a 500 internal.

    Here is my .htaccess

    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^mokido.net [NC]
    RewriteRule ^(.*)$ http://mokidocavaliers.com/$1 [R=301,L]
    RewriteCond %{HTTP_HOST} ^www.mokido.net [NC]
    RewriteRule ^(.*)$ http://mokidocavaliers.com/$1 [R=301,L]
    RewriteCond %{HTTP_HOST} ^www.mokidocavaliers.com [NC]
    RewriteRule ^(.*)$ http://mokidocavaliers.com/$1 [R=301,L]
    
    Redirect 301 /Blog/ http://mokidocavaliers.com/dogs/blog
    Redirect 301 /blog/ http://mokidocavaliers.com/dogs/blog
    Redirect 301 /2011/ http://mokidocavaliers.com/dogs/2011/
    Redirect 301 /faq/ http://mokidocavaliers.com/dogs/faq/
    Redirect 301 /wp-content/ http://mokidocavaliers.com/dogs/wp-content/
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /dogs/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /dogs/index.php [L]
    </IfModule>
    
    # END WordPress

    Thread Starter mokidad

    (@mokidad)

    Steps to fix this:
    Uninstalled plugins.
    Reinstalled WordPress
    Changed Permalinks
    Changed Reading settings from static
    Reworked .htaccess

    Something in these steps worked.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘500 Internal Server error’ is closed to new replies.