Page 128 of 245 FirstFirst ... 2878118126127128129130138178228 ... LastLast
Results 1,271 to 1,280 of 2445
  1. #1271
    Join Date
    Jul 2011
    Posts
    106
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    All has a single slash. Will do reinstall as I would usually then test, then if ok will add new theme files. Will post outcome.

  2. #1272

    Default Re: Ceon URI Mapping v4.x

    Russian URI Mapping cannot be generated as the EZ-Page has no name!
    English URI Mapping cannot be generated as the EZ-Page has no name!

    I have added the Russian language ezpages and have merged the admin/ezpages.php files of the ceon and Russian pack but get the above errors. The installation check says all is installed well. Anything I add to the Ezpages gets updated but the URLs are not generated. Can you please give me some help as to what I need to do? Thanks :)

  3. #1273

    Default Re: Ceon URI Mapping v4.x

    PS, these pages do have titles and I have tried putting the title in the boxes and that doesn't work either...

  4. #1274
    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 :)

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

  6. #1276
    Join Date
    Oct 2011
    Posts
    11
    Plugin Contributions
    0

    help question Re: Ceon URI Mapping v4.x

    For some reason my product titles are consist of some html tags (<b> and <br>). URI mapping transforms them to symbols, e.g.:

    Product name: "<b>New</b><br> Super Cool Product"
    Old url: mysite.com/index.php?main_page=product_info&cPath=1&products_id=1
    New url: mysite.com/category_name/b_new_b_br_super_cool_product

    I have tried to type those letters in the "Remove Words" field but with no luck.
    If I type "b=>", it just removes ALL "b" letteres from the new url

    Is it possible to get rid of those "b" and "br" in the url?

  7. #1277
    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 Podsolnuh View Post
    For some reason my product titles are consist of some html tags (<b> and <br>). URI mapping transforms them to symbols, e.g.:

    Product name: "<b>New</b><br> Super Cool Product"
    Old url: mysite.com/index.php?main_page=product_info&cPath=1&products_id=1
    New url: mysite.com/category_name/b_new_b_br_super_cool_product
    First <b> is an outdated HTML tag that is replaced by <strong>
    Second you should NOT be including HTML tags in your product names to begin with. It's a poor practice..


    Quote Originally Posted by Podsolnuh View Post
    I have tried to type those letters in the "Remove Words" field but with no luck.
    If I type "b=>", it just removes ALL "b" letteres from the new url

    Is it possible to get rid of those "b" and "br" in the url?
    And that's the way the "Remove Words" feature works (and it is clearly explained in the user interface that this will be the result). Zen Cart will strip the opening and closing symbol of your HTML tag and save them as the ascii code before saving your products to the database.. Ceon URI will ignore these ascii symbols. Hence why your URLs convert <b> to b..

    So the solution??? Manually enter the URI for these products..

    OR (and my recommendation)

    Stop including HTML tags in your product names.
    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.

  8. #1278
    Join Date
    Oct 2010
    Location
    Finland
    Posts
    26
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Hello and thanks for this great mod! :)

    I have a small problem thou: everytime somebody accesses any of the sub categories in my store, error log is generated:
    For example:
    File does not exist: http://www...../store/main-category referer: http://www...../store/main-category/sub-cagory/

    What could cause those error logs?

    (.... = store url hidden for better display)

    No error logs are generated if visiting main categories i.e. http://www...../store/main-category

    Zen Cart vr. 1.5.1

  9. #1279
    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 Harri View Post
    Hello and thanks for this great mod! :)

    I have a small problem thou: everytime somebody accesses any of the sub categories in my store, error log is generated:
    For example:
    File does not exist: http://www...../store/main-category referer: http://www...../store/main-category/sub-cagory/

    What could cause those error logs?

    (.... = store url hidden for better display)

    No error logs are generated if visiting main categories i.e. http://www...../store/main-category

    Zen Cart vr. 1.5.1
    Dunno since you haven't shared what the error logs say..
    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.

  10. #1280
    Join Date
    Oct 2010
    Location
    Finland
    Posts
    26
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    Dunno since you haven't shared what the error logs say..
    Thanks for the quick reply! :)

    As I described, error log contains this kind of logs for every page view in sub categories:
    File does not exist: http://www...../store/main-category referer: http://www...../store/main-category/sub-cagory/

    "....." part contains domain name, just shortened it a bit for easier reading ;)

    Kind regards,
    Harri

 

 

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