yellow1912:
Your htaccess is not up-to-date
BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /zencart/
Deny access from .htaccess
RewriteRule ^.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
EOF SSU
Ok we have progress..! Thanks..!! Everything apperas to be ok on the site, will look at admin as see what goes there..
htaccess now reads
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
Prior to SSU, I had an existing .htaccess file which had this (for my 301 re-directions
RewriteCond %{HTTP_HOST} ^nortsandones.com.au$ [OR]
RewriteCond %{HTTP_HOST} ^www.nortsandones.com.au$
RewriteRule ^/?$ <http://www.nortsandones.com.au/index.php?main_page=> [R=301,L]
I tried to include this in with the SSU .htacess but I cant get past the pain page without gettng an error