Page 161 of 291 FirstFirst ... 61111151159160161162163171211261 ... LastLast
Results 1,601 to 1,610 of 2907
  1. #1601
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    No, it simply results in better URIs with names like "CD/DVD" becoming "cd-dvd" instead of "cddvd".

    All the best..

    Conor
    ceon
    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.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #1602
    Join Date
    May 2007
    Posts
    36
    Plugin Contributions
    0

    Default Auto data feed script cannot read

    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
    Last edited by als88; 17 Jun 2010 at 05:32 AM.

  3. #1603
    Join Date
    Mar 2010
    Location
    UK
    Posts
    445
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    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.

  4. #1604
    Join Date
    May 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    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?


  5. #1605
    Join Date
    May 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by als88 View Post
    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?


    Problem has been fixed in the end, this is a great module, thanks

  6. #1606

    Default Re: Ceon URI Mapping (SEO)

    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:



    When URI is turned on, the box just keeps loading:



    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:
    Code:
    RewriteCond %{REQUEST_URI} !^/facebox.* [NC]
    RewriteCond %{REQUEST_URI} !^/fec.* [NC]
    Is there anything else I could try to get these two fab mods to work together?

    Thanks :)

  7. #1607
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by nsanford View Post
    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
    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

  8. #1608

    Default Re: Ceon URI Mapping (SEO)

    Fixed! I had an incorrect exclude file path and now it all works brilliantly. I should've read more carefully, sorry about that.

  9. #1609
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by nsanford View Post
    Fixed! I had an incorrect exclude file path and now it all works brilliantly. I should've read more carefully, sorry about that.
    No problem, just glad to hear you got things working.

    All the best..

    Conor
    ceon

  10. #1610
    Join Date
    Jun 2010
    Location
    Phoeniz AZ
    Posts
    21
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    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

 

 

Similar Threads

  1. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  2. Ceon uri mapping vs Simple SEO
    By crixus in forum General Questions
    Replies: 0
    Last Post: 28 Feb 2014, 04:41 AM
  3. v151 Ceon URI Mapping (SEO) Issues?
    By yisou in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Jul 2013, 12:06 PM
  4. v151 Ceon URI Mapping (SEO) installation problem.
    By jmac2020 in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2012, 01:06 PM
  5. Ceon URI Mapping (SEO) How to install?
    By jackfitz in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 12:09 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR