Hi. I've been using this module on my test site ok.. But there is an issue I can't figure out. When I log in as a customer I get a 404 page not found. When I switch off URI mapping in Admin it works fine. So it must be an issue with the mapping.
I am running zen cart v1.3.9d in a subdirectory on an Apache webserver.
Other plugins installed are ( I doubt the mess this up!)
Image Handler 2
Fual Slimbox
Froogle feeder
htaccess example as follows -
RewriteEngine On
ONLY rewrite URIs beginning with /testsite2/
RewriteCond %{REQUEST_URI} ^/testsite2/ [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 admin directory
RewriteCond %{REQUEST_URI} !^/testsite2/myrenamedadmin [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/testsite2/editors [NC]
Don't rewrite cPanel directories
RewriteCond %{REQUEST_URI} !/cpanel [NC]
RewriteCond %{REQUEST_URI} !/frontend [NC]
Handle all other URIs using Zen Cart (index.php)
RewriteRule .* index.php?%{QUERY_STRING} [L]
I'm a designer really, so I'm not completely familiar with this sort of gubbins, so excuse me if this is a really simple problem I've missed. I also noticed a similar 404 error occured when I tested a PayPal Sandbox.
Thanks in advance for any advice on what might be wrong here.