conor:
Sounds like you have either forgotten to modify includes/functions/html_output.php or have something wrong with your .htaccess which is conflicting.
ceon
Alright, I checked the html_output.php and it shows the ceon uri code in it, I don't see a modified html_output.php.
I merged the .htaccess with the existing one in the main directory of my shop, and it has the following in it:
(Sorry I am not experienced with any kind of code but I think I've followed all the directions in the docs.) THANKS!
This is used with Apache WebServers
The following blocks direct HTTP requests in this directory recursively
For this to work, you must include the parameter 'Limit' to the AllowOverride configuration
Example:
#<Directory "/usr/local/apache/htdocs">
AllowOverride Limit
'All' with also work. (This configuration is in your apache/conf/httpd.conf file)
This does not affect PHP include/require functions
<Files *.php>
Order Deny,Allow
Deny from all
</Files>
RewriteEngine On
ONLY rewrite URIs beginning with /shop/
RewriteCond %{REQUEST_URI} ^/shop/ [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} !^/shop/admin [NC]
Don't rewrite editors directory
RewriteCond %{REQUEST_URI} !^/shop/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]