Hi,
Ceon URI Mapping's canonical URI support makes Zen Cart's canonical URI support irrelevant.
The ini_canonical file simply has an if statement wrapped around it to switch it off when Ceon URI Mapping is enabled.
Start the first Ceon modification before the start of the Zen Cart code and end it afer it:
PHP Code:
// BEGIN CEON URI MAPPING 1 of 2
if (!isset($ceon_uri_mapping_canonical_uri)) {
// Only use Zen Cart's canonical URI functionality if Ceon URI Mapping Canonical functionality
// not in use
// END CEON URI MAPPING 1 of 2
// cPath is excluded by default
$includeCPath = FALSE;
....
PHP Code:
unset($excludeParams, $includeCPath);
// BEGIN CEON URI MAPPING 2 of 2
}
// END CEON URI MAPPING 2 of 2
A new version of Ceon URI Mapping with sample modified files for 1.3.9g will be out shortly. The changes are indeed minimal, with the above being the only awkward one.. so hopefully the above info will do until the new version has been released.
All the best..
Conor
ceon
Bookmarks