No problem. I just hope you won’t be waiting too long 😉
my htaccess looks like this:
# 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 application/x-httpd-php5 .php
# END WordPress
I had the same problem.
It’s because you have old php version and you must upgrade it to php5 by editing .htaccess on your server/ftp and putting this line:
addhandler application/x-httpd-php5 .php
Now I have my plugin installed correctly. Try it by yourself. Cheers
Michael