|
I have installed magento on the server in main root directory public_html and followed the CGI steps and i still get this
Whoops, it looks like you have an invalid PHP version.
Magento supports PHP 5.2.0 or newer. Find out how to install Magento using PHP-CGI as a work-around
The website address is http://www.ukimportdirect.com if want to look but my .htaccess file is CHMOD 755 and same for directory .
The file .htaccess is
<IfModule mod_php5.c>
php_flag magic_quotes_gpc off
php_flag short_open_tag on
</IfModule>
DirectoryIndex index.php
RewriteEngine on
#RewriteBase /
RewriteCond %{REQUEST_URI} !^/media/
RewriteCond %{REQUEST_URI} !^/skin/
RewriteCond %{REQUEST_URI} !^/js/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
SetEnv PHP_VER 5
and the CGI file is at http://www.ukimportdirect.com/cgi-bin/php5-cgi.txt
Can someone please help
|