HTTP 500 Internal Server Error
-
I’ve read through a dozen or so forums about this issue, but found no solid resolution and many were closed as they were 3 years old. So I know there are other people out there with this same problem, which at least keeps me from feeling hopeless.
Yesterday, added new, scheduled posts at about 4pm. Blog was fine at 6pm. By 10pm, all pages were gone, including the /wp-admin page, so I have to get in using GoDaddy dashboard.
Looked here on forums first, found people were suggesting that I call GoDaddy. Called GD, spoke with dedicated server department, and was told that the problem looks like a PHP version error, that the server PHP and the installed WP PHP are not the same. On the server, the version is PHP 5.2.6. Came back to forums to research this, found posts asking to add
“AddType x-mapp-php5 .php”
to the top line of the .htaccess script in the wp-admin section. I soon realized that while my domain has an .htaccess file, the wp-admin does not. I looked for further instruction and found that I can add my own .htaccess file and suggestions for what to add to a corrupt .htaccess file that may also be causing the 500 Internal Server Error.After piecing together what I have found on various forum posts related to PHP and HTTP500 errors, I’ve now added an .htaccess file to my wp-admin folder that looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
<IfModule mod_security.c>
SecFilterInheritance Off
</IfModule>
<Files index-extra.php>
SecFilterInheritance Off
</Files># END WordPress
I also tried adding the x-mapp (AddType x-mapp-php5 .php) by removing the space before the .php, adding <> brackets around it, going without the brackets, and also in various locations. With or without the x-mapp suggestion in the .htaccess file, my blog still does not work. I’ve tried every suggestion I found on a forum board and am out of ideas. Does anyone have any suggestions? Am I doing something wrong with the .htaccess file?
blog lives at https://www.medibid.com/blog
- The topic ‘HTTP 500 Internal Server Error’ is closed to new replies.