Quote Originally Posted by mc12345678 View Post
Need to provide more information. Might suggest providing the .htaccess file but with the admin directory obscured. Also to identify if the store is in the main directory or a sub-directory, other htaccess modifyiing plugins installed? Other posting guideline questions that have been missed?
Thank you for the reply. .htaccess is:

## BEGIN CEON URI MAPPING REWRITE RULE

RewriteEngine On

# ONLY rewrite URIs beginning with /onlinestore/
RewriteCond %{REQUEST_URI} ^/onlinestore/ [NC]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-z]{2,5}$ [NC]
# Don't rewrite any URIs for some, popular specific file format extensions,
# which are not covered by main file extension condition above
RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
# Don't rewrite any URIs for some specific file format extensions,
# which are not covered by main file extension condition above
# Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
#RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/onlinestore/adminxxxxxxx [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/onlinestore/editors/ [NC]
# Don't rewrite modules directory
RewriteCond %{REQUEST_URI} !^/onlinestore/modules/ [NC]
# Don't rewrite languages directory
RewriteCond %{REQUEST_URI} !^/onlinestore/languages/ [NC]
# Don't rewrite min directory
RewriteCond %{REQUEST_URI} !^/onlinestore/min/ [NC]
# Don't rewrite cgi-bin directory
RewriteCond %{REQUEST_URI} !^/onlinestore/cgi\-bin/ [NC]
# Don't rewrite cron directory
RewriteCond %{REQUEST_URI} !^/onlinestore/cron/ [NC]
# Don't rewrite sitemap directory
RewriteCond %{REQUEST_URI} !^/onlinestore/sitemap/ [NC]
# Don't rewrite templates directory
RewriteCond %{REQUEST_URI} !^/onlinestore/templates/ [NC]
# Don't rewrite bmz_cache directory
RewriteCond %{REQUEST_URI} !^/onlinestore/bmz_cache/ [NC]
# Don't rewrite logs directory
RewriteCond %{REQUEST_URI} !^/onlinestore/logs/ [NC]
# Handle all other URIs using Zen Cart (its index.php)
RewriteRule .* /onlinestore/index.php [QSA,L]

## END CEON URI MAPPING REWRITE RULE

I didn't change anything from the example Rewrite rule.
The .htaccess is located in the root while the store is inside /onlinestore
There is no other rewrites active.
new files uploaded properly together with the modified core files and the template overrides. TIA.