So in other words Conor what you saying is that it will not autogenerate the urls like the simple seo add on does. I know what DivaVocals said to do but that seems to take a while to do when I have a lot of products all ready.
Printable View
I intall a "ceon_uri_mapping_3.6.2_for_zc" the .htaccess files has been add on this follwing:
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} !^/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]
I find after .htaccess files changed, my Auto data feed script (.php) cannot read and doesn't work.
Do I done anything wrong or I have to do something extra?
Please help.many thanks
You'll need to change the order of the rules, as it is likely they are interacting with each other, or else add an exclusion to stop those requests being incorrectly processed.
Additionally, delete the trailing .* characters from every RewriteCond line. They are not required.
Thanks for your reply, I has been remove the .* characters
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} !^/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]
The Auto data feed script (.php) still been block.
I thing need to add something exclusion to allow the script (.php) can be access, but I don't know how?:blink:
Hi Conor,
I really want to get FEC 1.8.1 working with this mod.
I've got a clean install of 1.3.9D, running on php5.3.0.
Only mods installed at this time are: FEC 1.8.1 and Ceon URI 3.6.3
On the checkout page, when clicking the "Change Address" button, FEC pops up a box for you to do that like so:
http://www.npsdesignz.com/fec_ceon_off.jpg
When URI is turned on, the box just keeps loading:
http://www.npsdesignz.com/fec_ceon_on.jpg
I've tried adding to the the exclude files:
/fec/fec_change_new_address.php?type=change_shipping_address,
/fec/fec_change_new_address.php?type=change_payment_address
Also added to .htaccess file:
Is there anything else I could try to get these two fab mods to work together?Code:RewriteCond %{REQUEST_URI} !^/facebox.* [NC]
RewriteCond %{REQUEST_URI} !^/fec.* [NC]
Thanks :)
Hi,
I'm guessing that this new version of FEC has scripts which call the Zen Cart system directly. Rewrite conditions won't affect anything.
All the information you need is in the documentation, in the section "Ensuring 100% Compatibility with Third Party Zen Cart Modules - Specifying Individual Files to be Excluded from URI Mapping".
(More that likely from what you've posted the excluded file's path should be:
/fec/fec_change_new_address.php
I'm sure that'll get you sorted.
All the best..
Conor
ceon
Fixed! I had an incorrect exclude file path :wacko: and now it all works brilliantly. I should've read more carefully, sorry about that.
Hi,
No problem, just glad to hear you got things working.
All the best..
Conor
ceon
Conor,
I am back once again.
After fixing the issue I had before, I updated your product to 3.6.3.
I have gone through the site and redid all the mappings but it doesn't seem to do it. Could you please help.
Thanks