my site is Zen Cart 1.3.8 Server OS: Linux 2.6.24.5-grsec PHP Version: 5.2.6 (Zend: 2.2.0) PHP Memory Limit: 32M
Database: MySQL 5.0.67-community. I have the Ceon URI Mapping in staled.and works grate until you go and put items in the cart and it comes up empty. this is the rewrite rules I am using. I am new at this and Know enough to destroy my site so help. http://www.zen-cart.com/forum/images/smilies/unsure.gif
AddHandler RewriteRule .htaccess
RewriteEngine On

# Don't rewrite any files ending with .[xxxx], except for scripts/HTML files
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$ [OR]
RewriteCond %{REQUEST_URI} \.(php|xml|html|htm|aspx)$ [NC]
# Don't rewrite cpanel directories
RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
RewriteCond %{REQUEST_URI} !/frontend.* [NC]
# Don't rewrite admin directory
RewriteCond %{REQUEST_URI} !/admin.* [NC]
# Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/editors.* [NC]
# Don't rewrite payment pages/callback handlers
RewriteCond %{REQUEST_URI} !/ipn_main_handler.php.* [NC]
RewriteCond %{REQUEST_URI} !/iridium_3d_secure_iframe.php.* [NC]
RewriteCond %{REQUEST_URI} !/localities_remote_loader.php.* [NC]
RewriteCond %{REQUEST_URI} !/nochex_apc_handler.php.* [NC]
RewriteCond %{REQUEST_URI} !/protx_direct_3d_secure_iframe.php.* [NC]
RewriteCond %{REQUEST_URI} !/realex_remote_3d_secure_iframe.php.* [NC]
# Handle all other URIs/file types (php|html|htm etc.) using Zen Cart (index.php)
RewriteRule (.*) index.php?%{QUERY_STRING} [L]