Page 260 of 291 FirstFirst ... 160210250258259260261262270 ... LastLast
Results 2,591 to 2,600 of 2907
  1. #2591
    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 ptowers49 View Post
    Unfortunately when you login from the home page then it returns a 404 error!!. This does not happen when I turn off the CEON url rewrite!!
    Have you enabled SSL for the store?

    If so then the domains for the store in includes/configure.php must be identical (except for https instead of http).

    Enjoy the rest of the Easter break!

    All the best...

    Conor
    ceon

  2. #2592
    Join Date
    Jul 2006
    Posts
    308
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I notice something that might be considered a bug in the category and product related mapping.

    When I enter a custom mapping for a category, the products under that category don't make use of the custom category mapping, instead auto generating the default category mapping as part of the auto generated product mapping.

    Would it be possible to modify the code to fix this? I would imagine that anyone who is creating a custom category mapping would want it to be used when auto generating the mapping for any products in the category.

  3. #2593
    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 fakeDecoy View Post
    I notice something that might be considered a bug in the category and product related mapping..
    That's not a bug, no, it's just the way the module has been designed to work. Every man and his dog has their own idea about what format their URI Mapping should take and we had to settle on a default style for the module. Of course, since the module lets you enter mappings manually you are free to use whatever format suits you.

    I do totally understand where you are coming from and "URI mapping templates" would be the kind of thing you'd need the software to do. It can't do that as yet.

    However, a kludgey but effective solution for you would be to temporarily rename the master category for the products you want to use a custom URI mapping to a name that autogenerates the category "part" that you want, go through and generate your product mappings for that category, then rename the category back to it's original name.

    That should make things easier for you.

    Another alternative is a SQL search and replace but a description of how to do that is a bit beyond the scope of this thread.

    All the best...

    Conor
    ceon

  4. #2594
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by fakeDecoy View Post
    I notice something that might be considered a bug in the category and product related mapping.

    When I enter a custom mapping for a category, the products under that category don't make use of the custom category mapping, instead auto generating the default category mapping as part of the auto generated product mapping.

    Would it be possible to modify the code to fix this? I would imagine that anyone who is creating a custom category mapping would want it to be used when auto generating the mapping for any products in the category.
    Quote Originally Posted by conor View Post
    Hi,



    That's not a bug, no, it's just the way the module has been designed to work. Every man and his dog has their own idea about what format their URI Mapping should take and we had to settle on a default style for the module. Of course, since the module lets you enter mappings manually you are free to use whatever format suits you.

    I do totally understand where you are coming from and "URI mapping templates" would be the kind of thing you'd need the software to do. It can't do that as yet.

    However, a kludgey but effective solution for you would be to temporarily rename the master category for the products you want to use a custom URI mapping to a name that autogenerates the category "part" that you want, go through and generate your product mappings for that category, then rename the category back to it's original name.

    That should make things easier for you.

    Another alternative is a SQL search and replace but a description of how to do that is a bit beyond the scope of this thread.

    All the best...

    Conor
    ceon
    Donations, Donations all I have to say. I can not emphasize enough when you donate to a project things get added sooner or later if needed.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #2595
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi Conor and the rest of you guys. I hope you all had a great easter break well I engoyed mine of course.

    But iven though I cleard my head through the easter break I still can't go over some problems with URi mapings. I've got the instalation write and data base is fine & configs in the backend are as it suppose to be. But something weird hapened with stock links generated by zenCart they look like this:

    test.alarmy-e.pl/testindex.php?main_page=product_info&cPath=96&products_id=460

    while they should be

    test.alarmy-e.pl/index.php?main_page=product_info&cPath=96&products_id=460

    why is "test" appended before "index.php" ? what did I do wrong(again) this time let me ad that "test" is the name the katalog where my testing store is instaled.

    Thanks for Your help
    Jacob

  6. #2596
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Got It

    found my mistake! My configure.php(store side) in line's defining main catalog was:

    define('DIR_WS_CATALOG', 'test/');
    define('DIR_WS_HTTPS_CATALOG', 'test/');

    but of course it should be:

    define('DIR_WS_CATALOG', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    (have no idea why i put it in there)

    FINALY now it seems that everything is working as it suppose to

  7. #2597
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi

    I'm having same problem as:

    Quote Originally Posted by damiantaylor View Post
    Just thought I'd come back and let you know I've found a fix to the problem I was having where the cPath extension was incorrectly appended to the end of the URIs.

    As Conor said, it is nothing to do with the URI mapping module, it's a problem in the zen_get_product_path function.

    The code to fix is here:

    the code that is under

    http://www.zen-cart.com/forum/showth...aster+category

    does not help the cPath is still appended have you any idea?

    that code is :

    / first, try to get master category id
    $category_query = "select p2c.categories_id
    from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c
    where p.products_id = '" . (int)$products_id . "'
    and p.products_status = '1'
    and p.products_id = p2c.products_id and p.master_categories_id = p2c.categories_id";
    // in case the master category is invalid, fall back on getting first product/category association instead
    $category_query .= " union distinct
    select p2c.categories_id
    from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c
    where p.products_id = '" . (int)$products_id . "'
    and p.products_status = '1'
    and p.products_id = p2c.products_id limit 1";

    (additions to original code in red)

    But (I'm on 1.3.9) in functions_categories.php
    I'v got:
    $category_query = "select p.products_id, p.master_categories_id
    from " . TABLE_PRODUCTS . " p
    where p.products_id = '" . (int)$products_id . "'
    limit 1";

    So tell me how that "fix" is supose to help if "oryginaly" master_categories_id is taken from products table??

  8. #2598
    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 alarmy-e.pl View Post
    So tell me how that "fix" is supose to help if "oryginaly" master_categories_id is taken from products table??
    Please search this thread for cPath and read my last few posts about such issues.

    I'll have to make this into a FAQ!

    All the best..

    Conor
    ceon

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

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    Please search this thread for cPath and read my last few posts about such issues.

    I'll have to make this into a FAQ!

    All the best..

    Conor
    ceon
    **NODS IN AGREEMENT**

    **waves to Conor**
    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. #2600
    Join Date
    Apr 2011
    Location
    Poland - Opole
    Posts
    7
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Please search this thread for cPath and read my last few posts about such issues.
    SORRY I should have read those posts sorry for spammig this thread and thenks for your patiens

 

 

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