Results 1 to 10 of 2445

Hybrid View

  1. #1
    Join Date
    Aug 2009
    Posts
    368
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Is CEON URI Mapping by default convert products_all , new , specials pages for SEO ?
    After I install it I can see those page in old format like index.php?main_page=products_all

  2. #2
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by solo_400 View Post
    Is CEON URI Mapping by default convert products_all , new , specials pages for SEO ?
    After I install it I can see those page in old format like index.php?main_page=products_all
    No, and there is a section in the readme which explains how you can add these pages to the mappings table if you like..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #3
    Join Date
    Apr 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Hello,

    I have the CEON installed, and wanted to know the feature limitations that the free downloadable version has versus the registered version tor with the use of the URI Mapping (SEO/SEF) Software that is mentioned in the readme.

    With the free version without the mapping software, one would have to go into manually and enter the URL for each product, and with the Mapping software this would be auto-generated for all of them automatically is this correct ?

    I went to the CEON here, but didn't see an order button link:

    http://store.ceon.net/business/zen-c...ppings-manager

    Can you send me pricing and how one can place an order for this ?

    Thanks,

    Rudy

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by rudyg99 View Post
    Hello,

    I have the CEON installed, and wanted to know the feature limitations that the free downloadable version has versus the registered version tor with the use of the URI Mapping (SEO/SEF) Software that is mentioned in the readme.

    With the free version without the mapping software, one would have to go into manually and enter the URL for each product, and with the Mapping software this would be auto-generated for all of them automatically is this correct ?

    I went to the CEON here, but didn't see an order button link:

    http://store.ceon.net/business/zen-c...ppings-manager

    Can you send me pricing and how one can place an order for this ?

    Thanks,

    Rudy
    So to answer your question.. your summary of the differences between the free and commercial versions of Ceon's URI modules is correct.. Can't post pricing info on commercial products on the site.. Admins frown upon this..

    Dunno what's wrong with the Ceon site, but it looks like someone tried to setup some kind of re-direct on Conor's site and borked it pretty badly..

    As you may or may not know, Conor Kerr, the owner of Ceon and author of all the fabu Ceon modules passed away end of last year.. JSWeb has apparently taken over the maintenance of Conor's mods (not sure if they will continue to provide active support for the free Ceon modules on this forum or not --that still remains to be seen)

    Google JS Web.. You'll find them.. (I'm on a mobile device and it's a PITA to copy and paste from these devices..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #5
    Join Date
    Apr 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Thanks for the reply.

    I had one more question regarding the CEON as it relates to just getting the manual entry form of CEON working properly.

    These two categories here were somehow automatically placed in the shortened CEON format.

    http://tiledart.com/shop2/mosaics
    http://tiledart.com/shop2/mosaics?pg=store

    http://tiledart.com/shop2/terra-ferma-import
    http://tiledart.com/shop2/terra-ferma-import?pg=store

    Im not able to have the URI mapping take effect. I am able to enter it on the backend, but it doesn't activate on the frontend.
    On this product here below. I have the manual URI mapping on the product as /shop2/mosaics/airblack
    but it is not accessible via this URL, but only the regular zencart format @
    http://tiledart.com/shop2/index.php?...roducts_id=299

    This is the .htaccess config that I have:

    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # ONLY rewrite URIs beginning with /shop2/
    RewriteCond %{REQUEST_URI} ^/shop2/ [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 any URIs for some, popular specific file format extensions,
    # which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    # which are not covered by main file extension condition above
    # Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/shop2/editors/ [NC]
    # Don't rewrite logs directory
    RewriteCond %{REQUEST_URI} !^/shop2/logs/ [NC]
    # Don't rewrite images2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/images2/ [NC]
    # Don't rewrite tdart2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart2/ [NC]
    # Don't rewrite tmp directory
    RewriteCond %{REQUEST_URI} !^/shop2/tmp/ [NC]
    # Don't rewrite googlecheckout directory
    RewriteCond %{REQUEST_URI} !^/shop2/googlecheckout/ [NC]
    # Don't rewrite languages directory
    RewriteCond %{REQUEST_URI} !^/shop2/languages/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /shop2/index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE


    Thanks

  6. #6
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by rudyg99 View Post
    Thanks for the reply.

    I had one more question regarding the CEON as it relates to just getting the manual entry form of CEON working properly.

    These two categories here were somehow automatically placed in the shortened CEON format.

    http://tiledart.com/shop2/mosaics
    http://tiledart.com/shop2/mosaics?pg=store

    http://tiledart.com/shop2/terra-ferma-import
    http://tiledart.com/shop2/terra-ferma-import?pg=store

    Im not able to have the URI mapping take effect. I am able to enter it on the backend, but it doesn't activate on the frontend.
    On this product here below. I have the manual URI mapping on the product as /shop2/mosaics/airblack
    but it is not accessible via this URL, but only the regular zencart format @
    http://tiledart.com/shop2/index.php?...roducts_id=299

    This is the .htaccess config that I have:

    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # ONLY rewrite URIs beginning with /shop2/
    RewriteCond %{REQUEST_URI} ^/shop2/ [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 any URIs for some, popular specific file format extensions,
    # which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    # which are not covered by main file extension condition above
    # Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/shop2/editors/ [NC]
    # Don't rewrite logs directory
    RewriteCond %{REQUEST_URI} !^/shop2/logs/ [NC]
    # Don't rewrite images2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/images2/ [NC]
    # Don't rewrite tdart2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart2/ [NC]
    # Don't rewrite tmp directory
    RewriteCond %{REQUEST_URI} !^/shop2/tmp/ [NC]
    # Don't rewrite googlecheckout directory
    RewriteCond %{REQUEST_URI} !^/shop2/googlecheckout/ [NC]
    # Don't rewrite languages directory
    RewriteCond %{REQUEST_URI} !^/shop2/languages/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /shop2/index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE


    Thanks
    Not trying to be a smarty pants here, but did you turn on Ceon URI (from the admin modules menu)??
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  7. #7
    Join Date
    Apr 2012
    Posts
    8
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    Not trying to be a smarty pants here, but did you turn on Ceon URI (from the admin modules menu)??
    Yes, Its turned on.

  8. #8
    Join Date
    Aug 2013
    Posts
    1
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by rudyg99 View Post
    Thanks for the reply.

    I had one more question regarding the CEON as it relates to just getting the manual entry form of CEON working properly.

    These two categories here were somehow automatically placed in the shortened CEON format.

    http://tiledart.com/shop2/mosaics
    http://tiledart.com/shop2/mosaics?pg=store

    http://tiledart.com/shop2/terra-ferma-import
    http://tiledart.com/shop2/terra-ferma-import?pg=store

    Im not able to have the URI mapping take effect. I am able to enter it on the backend, but it doesn't activate on the frontend.
    On this product here below. I have the manual URI mapping on the product as /shop2/mosaics/airblack
    but it is not accessible via this URL, but only the regular zencart format @
    http://tiledart.com/shop2/index.php?...roducts_id=299

    This is the .htaccess config that I have:

    ## BEGIN CEON URI MAPPING REWRITE RULE

    RewriteEngine On

    # ONLY rewrite URIs beginning with /shop2/
    RewriteCond %{REQUEST_URI} ^/shop2/ [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 any URIs for some, popular specific file format extensions,
    # which are not covered by main file extension condition above
    RewriteCond %{REQUEST_URI} !\.(mp3|mp4|h264)$ [NC]
    # Don't rewrite any URIs for some specific file format extensions,
    # which are not covered by main file extension condition above
    # Uncomment the following line to apply this condition! (Remove the # at the start of the next line)
    #RewriteCond %{REQUEST_URI} !\.(3gp|3g2|h261|h263|mj2|mjp2|mp4v|mpg4|m1v|m2v|m4u|f4v|m4v|3dml)$ [NC]
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/shop2/editors/ [NC]
    # Don't rewrite logs directory
    RewriteCond %{REQUEST_URI} !^/shop2/logs/ [NC]
    # Don't rewrite images2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/images2/ [NC]
    # Don't rewrite tdart2 directory
    RewriteCond %{REQUEST_URI} !^/shop2/tdart2/ [NC]
    # Don't rewrite tmp directory
    RewriteCond %{REQUEST_URI} !^/shop2/tmp/ [NC]
    # Don't rewrite googlecheckout directory
    RewriteCond %{REQUEST_URI} !^/shop2/googlecheckout/ [NC]
    # Don't rewrite languages directory
    RewriteCond %{REQUEST_URI} !^/shop2/languages/ [NC]
    # Handle all other URIs using Zen Cart (its index.php)
    RewriteRule .* /shop2/index.php [QSA,L]

    ## END CEON URI MAPPING REWRITE RULE


    Thanks
    Hello. if anyone has this problem it's a template related problem. Just edit includes/templates/##########_temp/sideboxes/tpl_categories.php and at line 37 remove '&pg=store' leaving only '' :) Maybe someone will find this useful :)

  9. #9
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by George86 View Post
    Hello. if anyone has this problem it's a template related problem. ... Maybe someone will find this useful :)
    Thank You for replying with the cause and solution :)

    It appears you may have forgotten to obfuscate the location of your "admin" folder (before posting your .htaccess contents)... I would strongly suggest you rename your "admin" folder just to be on the safe side.
    Last edited by lhungil; 21 Aug 2013 at 04:23 PM.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

 

 

Similar Threads

  1. v139d Ceon uri mapping, how to generate uri mapping for bulk bulk-imported products?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 8 Jan 2013, 06:52 AM
  2. CEON URI Mapping
    By jmkent in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 22 Nov 2012, 04:28 PM
  3. Ceon URI Mapping (SEO)
    By conor in forum All Other Contributions/Addons
    Replies: 2906
    Last Post: 9 Sep 2011, 08:31 AM
  4. Ceon URI Mapping v4
    By conor in forum All Other Contributions/Addons
    Replies: 110
    Last Post: 14 Aug 2011, 02:51 PM

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