Connor,
I just wanted to say a HUGE thanks for this mod, for all your hard work into it and the incredible support you offer on this forum. It's very powerful, and is doing what I need it to do. 
It took me a while to figure out the .htaccess part of things, but after I figured it out, things are working like a charm.
Thanks once again! 
For the uninitiated (like me), if you get a 404 Page Not Found error, here are some simple steps to follow (after browsing all the messages on this subforum, there seems to be a common pattern):
1. Make sure your .htaccess file is placed in the root directory. Look for your Zen Card "index.php" file, and your .htaccess file should be sitting pretty next to it. Connor already mentions this in the installation guide on his site.
2. The 5 rewrite rule examples he gives are examples, and to get yours to work, you may need a combination of them. I had changed my admin folder name, but I used rule example 1, and simply changed the line:
Code:
RewriteEngine On
# Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !^/YOUR RENAMED ADMIN FOLDER.* [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]
Hope this helps any newbies similar to me.
Bookmarks