Hi
I've installed ceon uri mapping 3.8.0 on a zen cart version 1.3.9f.
Two issues I'm trying to figure out
The first issue is when checking out with paypal. I can checkout and make payment but after payment I get returned to a blank page whether I click the return link or wait for it to auto return.
When I go back to the site I see the order in admin but the order doesn't show up in PayPal Instant Payment Notifications and the stock level has not been reduced. In the storefront I see the item still in the cart. I'm hoping it is something simple to resolve in the htaccess.
The other issue is the admin url. If this type of url is used
HTML Code:
http://website.com/zc_admin
I get redirected to the storefront, so to get in to admin this kind of url needs to be used
HTML Code:
http://website.com/zc_admin/login.php
I think it must be something in the htaccess. This is what is being used in the htaccess file.
The last two strings is what is original to the file.
Any help would be really appreciated.
HTML Code:
RewriteEngine On
# 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} !^/zc_admin[NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/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]
RewriteCond %{HTTP_HOST} ^websitename.com$
RewriteRule ^/?$ "http\:\/\/www\.websitename\.com" [R=301,L]
Bookmarks