• So I used WP Automatic Upgrade to upgrade my WordPress from 2.51 to 2.6, and the upgrade “says” it went flawlessly – but when I go to my site now, there’s an Internal Server error. I’m on a Linux server.

    The site is https://www.ielectrify.com/resources/

    Please help!

Viewing 1 replies (of 1 total)
  • Thread Starter 758042

    A-HA! It works now, thanks to this bit of .htaccess code by member JonasBang. Try putting this in your .htaccess file – but MAKE A BACKUP FIRST.

    You can open .htaccess with Notepad. (Start > Accessories > Notepad)

    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
Viewing 1 replies (of 1 total)
  • The topic ‘2.51 to 2.6 Internal Server Error – used WPAU. Now What?’ is closed to new replies.