Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
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
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
Re: Ceon URI Mapping v4.x
I think this might help with the db lookup you asked about???
Attachment 13841
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DarkAngel
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.
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DarkAngel
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..
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DivaVocals
How about a link to the site.. It helps if we don't have to GUESS answers..
the link:
http://www.designerperfumesnob.com/
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.
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DarkAngel
... 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();
}
Re: Ceon URI Mapping v4.x
YAY the obstinate question mark is gone.
Thank you so much.
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
DarkAngel
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).
Re: Ceon URI Mapping v4.x
Quote:
Originally Posted by
lhungil
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)