Page 117 of 245 FirstFirst ... 1767107115116117118119127167217 ... LastLast
Results 1,161 to 1,170 of 2445
  1. #1161
    Join Date
    Feb 2006
    Posts
    80
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    I was wondering if someone was able to help me with some info on this mod. I am thinking about installing it and want to know if:
    1. It can be turned off and on
    2. how will it affect products that come up on google searches using cPath=
    3. Does it have to be used on all products or can you just use it on some to start.
    4. Are there any conflicts that anyone knows about (I have a lot of mods installed)

    Sorry for all the questions....

  2. #1162
    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 ginar View Post
    I was wondering if someone was able to help me with some info on this mod. I am thinking about installing it and want to know if:
    1. It can be turned off and on
    2. how will it affect products that come up on google searches using cPath=
    3. Does it have to be used on all products or can you just use it on some to start.
    4. Are there any conflicts that anyone knows about (I have a lot of mods installed)

    Sorry for all the questions....
    1. Yes
    2. Vague.. what do you mean??
    3. As it indicates in the decription (and in the readme) you can set URIs on a product by product/category by category basis
    3. For properly written modules there should be no conflicts.
    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. #1163
    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

  4. #1164
    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.

  5. #1165
    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

  6. #1166
    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.

  7. #1167
    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

  8. #1168
    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.

  9. #1169
    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.

  10. #1170
    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
    Yes, Its turned on.
    Then check your install.. Most installs can be traced straight back to missed files in the install..

    Make sure you have properly included everything in the following folder in the install package.

    • files
    • modified_core_files (for your Zen Cart version)
    • template_override_files (for your Zen Cart version)


    If all the right files are in place and your have the correct .htaccess file configured, this module will work with no problem..
    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.

 

 

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

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