Page 145 of 245 FirstFirst ... 4595135143144145146147155195 ... LastLast
Results 1,441 to 1,450 of 2445
  1. #1441
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    Given that the module works everywhere BUT where they are displayed in this other module (Display Categories in Seperate Box mod), I would say that it would appear that there is nothing wrong with the the Ceon URI install and the URI db entries.. The issue appears isolated to another module and how it is misinforming the URIs. Not an issue with Ceon URI at all..
    LOve this multiquote option...LOL

    ok I shall look at the files for the sidebox...but it did show up in other areas too for a bit....ceon was installed for a month or so prior to the side box mod


    Quote Originally Posted by mc12345678 View Post
    What do you have for query_string_parameters in the SQL database for these offending links (ceon_uri_mappings table)? Is it NULL or is it blank? (NULL is preferred in this case).
    well that one that flew over the cuckoos nest is in good company...I have no clue how to check db for this...sorry

    but if you tell me where to check in there I will see if the other mod is not being null

  2. #1442
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    I think this might help with the db lookup you asked about???

    Attachment 13841

  3. #1443
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DarkAngel View Post
    I think this might help with the db lookup you asked about???

    Attachment 13841
    Partially, now if you look at the individual entries, specifically the ones that are displaying the ? To see if the data in column 5 to identify what is present.
    That setup is consistent with a default installation, so new items should appear correctly, but old ones may have something incorrectly set.
    Last edited by mc12345678; 28 Feb 2014 at 01:09 PM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  4. #1444
    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 DarkAngel View Post
    LOve this multiquote option...LOL

    ok I shall look at the files for the sidebox...but it did show up in other areas too for a bit....ceon was installed for a month or so prior to the side box mod




    well that one that flew over the cuckoos nest is in good company...I have no clue how to check db for this...sorry

    but if you tell me where to check in there I will see if the other mod is not being null
    How about a link to the site.. It helps if we don't have to GUESS answers..
    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. #1445
    Join Date
    May 2012
    Posts
    564
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DivaVocals View Post
    How about a link to the site.. It helps if we don't have to GUESS answers..
    the link:

    http://www.designerperfumesnob.com/

  6. #1446
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    I finally finished going through the db and removing any duplicates from the many name variations...LOL

    Every single entry had NULL in column 5, even removing the duplicates did not help any.

    It is not set to auto gen the name, she has to go in and manually add the link name she wants to appear.

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

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DarkAngel View Post
    ... ok I shall look at the files for the sidebox...but it did show up in other areas too for a bit....ceon was installed for a month or so prior to the side box mod ...
    I'd say the most likely cause is the module you are using for the sidebox is incorrectly adding an extra "&" in the params sent to zen_href_link (it should also pass the full cPath - not just the category id).

    Try changing the following around line #24 in "separate_category_sidebox.php" from:
    Code:
    	while (!$categories_ap->EOF)  {
    		$id = $categories_ap->fields['categories_id'];
    		$name = $categories_ap->fields['categories_name'];
    	  	$add_content .= '<li><a href="' . zen_href_link(FILENAME_DEFAULT, '&cPath='.$id) . '">'.$name.'</a></li>' . "\n";
    	
    		$categories_ap->MoveNext();
    	}
    to:
    Code:
    	while (!$categories_ap->EOF)  {
    		$name = $categories_ap->fields['categories_name'];
    		$cPath_new = zen_get_path($categories_ap->fields['categories_id']);
    		$cPath_new = str_replace('=0_', '=', $cPath_new);
    	  	$add_content .= '<li><a href="' . zen_href_link(FILENAME_DEFAULT, $cPath_new) . '">'.$name.'</a></li>' . "\n";
    
    		$categories_ap->MoveNext();
    	}
    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

  8. #1448
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping v4.x

    YAY the obstinate question mark is gone.
    Thank you so much.

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

    Default Re: Ceon URI Mapping v4.x

    Quote Originally Posted by DarkAngel View Post
    YAY the obstinate question mark is gone.
    Thank you so much.
    Thank You for confirming the issue was solved by updating the code in a 3rd party add-on module (for Zen Cart 1.3.x).
    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

  10. #1450
    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 lhungil View Post
    Thank You for confirming the issue was solved by updating the code in a 3rd party add-on module (for Zen Cart 1.3.x).
    Yep.. These issues folks report are almost NEVER caused by this module but by some OTHER module. (usually because they are incorrectly using the zen_href_link function)
    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