500 Internal Server Error - [Solved?]

Discussion in 'Troubleshooting' started by tokazama2, Aug 7, 2013.

  1. tokazama2

    tokazama2 aMember Pro Customer

    Joined:
    Feb 7, 2013
    Messages:
    54
    I thought this might help someone...someday...

    For the past week I have been receiving a 500 Internal Server Error nearly every time I updated a page in aMember admin. I enabled error logs on my hosting's control panel. It showed the following errors:
    • [Wed Aug 07 12:55:37 2013] [myaccountnumber] [fcgid:warn] (104)Connection reset by peer: [client 216.52.207.75:13657] mod_fcgid: error reading data from FastCGI server, referer https://www.ahacpa.org/aMember/login
    • [Wed Aug 07 12:55:37 2013] [myaccountnumber] [core:error] [client 216.52.207.75:13657] End of script output before headers: index.php, referer https://www.ahacpa.org/aMember/login
    After much weeping and wailing I believe the problem is solved.

    I added the three addhandler statements into my .htaccess file in my root folder.
    Code:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    addhandler x-httpd-php-cgi .php4
    addhandler x-httpd-php5-cgi .php
    addhandler x-httpd-php5-cgi .php5
    # END WordPress
    
    I have gone nearly an hour without receiving the error. Huzzah!
  2. tokazama2

    tokazama2 aMember Pro Customer

    Joined:
    Feb 7, 2013
    Messages:
    54
    By the way...I have also been having new problems with my autoresponder emails. This seems to have solved that problem too!

Share This Page