zennedOut
- Join Date:
- Nov 2005
- Location:
- los angeles
- Posts:
- 2,955
- Plugin Contributions:
- 8
Ultimate SEO v3 (and v2.200) [Support Thread]
augiespanoramas:
Here are the logs that I found (doubt they're useful):
seth,
i always find logs useful! :)
the problem that i see is in the generation of the links. there is a modified core file:
includes/functions/html_output.php
are you sure you followed the instructions correctly with regards to this file?
similar to radek, your modified URLs will work, ie,
augiespanoramas(dot)com/dodger-stadium-p-136
works, but ZC is NOT generating those modified URLs when outputting your webpage.
the function that generates those links is not using the aforementioned html_output functions. the first function in that script is the zen_href_link function, which checks if you have turned it on, and then generates a link for use in the template. you have to see if you are hitting that function. the beginning of that code is something like this:
/**
* html_output.php
* HTML-generating functions used throughout the core
*
* @package functions
* @copyright Copyright 2003-2014 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version GIT: $Id: Author: DrByte Sat Apr 19 13:30:33 2014 -0400 Modified in v1.5.3 $
*/
/*
* The HTML href link wrapper function
*/
function zen_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
global $request_type, $session_started, $http_domain, $https_domain;
//START alternative URLs patch
global $altURLs;
$link = null;
if(isset($altURLs)) {
$link = $altURLs->href_link($page, $parameters, $connection, $add_session_id, $static, $use_dir_ws_catalog);
if($link !== null) return $link;
}
// END alternative URLs patch
i am not sure if v1.5.5a has overwritten those changes, but i would check that the alternative URL patch above is in that file.
i hope that helps! good luck!