Forum Replies Created

Viewing 1 replies (of 1 total)
  • I just started getting a 500 Internal error start last evening as well on 2.7 production release. I have made no changes for over 30 days.

    This is my .htaccess

    <Files .htaccess,.svn>
    order allow,deny
    deny from all
    </Files>
    Options +FollowSymlinks
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # End of Redirection
    
    # BEGIN Feedburner
    RewriteEngine on
    RewriteCond %{HTTP_USER_AGENT} !FeedBurner
    RewriteRule ^index\.xml$ https://feeds2.feedburner.com/[site name removed] [R,L]
    # END Feedburner

    I inserted the suggestion above:

    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php

    and simple got a blank browser screen. I also tried the php.ini trick to troubleshoot PHP memory errors–still returned 500. This one is puzzling. Any help is appreciated.

Viewing 1 replies (of 1 total)