Don’t Panic!
But I did.
I was like saying “Sheeks! I didn’t backed up my blog!” when I got my last WordPress version upgraded to the lastest WordPress 3.0. Who wouldn’t if you’ll get an error 500 to your admin page and to your blog?
Error 500 – Internal server error
An internal server error has occured!
Please try again later.
Good to know that my brain was working and made some changes to the .htaccess file.
I was checking what PHP version I was using with the WordPress Version 2.9.x I had, and found out that it’s still PHP4. I thought on parsing it to PHP5 and to hopefully work. It did!
On my wordpress folder in my webspace, I added a one line script to parse PHP4 to PHP5. This can be done through your .htaccess file like this as highlighted in line 02.
Line 01, # BEGIN WordPress
Line 02, AddType x-mapp-php5 .php
Line 03, <IfModule mod_rewrite.c>
Line 04, RewriteEngine On
Line 05, RewriteBase /
Line 06, RewriteCond %{REQUEST_FILENAME} !-f
Line 07, RewriteCond %{REQUEST_FILENAME} !-d
Line 08, RewriteRule . /index.php [L]
Line 09, </IfModule>
Line 10, # END WordPress
And that should do the trick to run your WordPress 3.0!