In manchen Kategorien sind so viele Produkte das automatisch Folgeseiten generiert werden. Leider Funktionieren diese nicht.http://www.toms-angelwelt.de/index.php/cat/c28_Nutrabaits-Fischlockf-.html//page//page/2
Ich habe Festgestellt das es an der Funktion Sumaurls liegt. Wenn ich diese deaktiviere kann ich die Links anklicken und die Seite wird mir wie gewünscht angezeigt. Mir wäre es schon wichtig das Sumaurls aktiviert ist. Ich verwende dafür folgendes Script: xtc_href_link.inc.php
<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_href_link.inc.php 1521 2006-07-07 09:40:06Z matthias $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright (c) 2003 XT-Commerce
-----------------------------------------------------------------------------------------
based on:
(c) 2000-2001 The Exchange Project (earlier name of osCommerce)
(c) 2002-2003 osCommerce(html_output.php,v 1.52 2003/03/19); www.oscommerce.com
(c) 2003 nextcommerce (xtc_href_link.inc.php,v 1.3 2003/08/13); www.nextcommerce.org
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
// The HTML href link wrapper function
function xtc_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) {
global $request_type, $session_started, $http_domain, $https_domain, $truncate_session_id;
/*
if (!xtc_not_null($page)) {
die('</td></tr></table></td></tr></table><br /><br /><font color="#ff0000"><b>Error!</b></font><br /><br /><b>Unable to determine the page link!<br /><br />');
}
*/
if (!xtc_not_null($page)) {
$page = basename($_SERVER["SCRIPT_NAME"]);
}
if ($connection == 'NONSSL') {
$link = HTTP_SERVER.DIR_WS_CATALOG;
}
elseif ($connection == 'SSL') {
if (ENABLE_SSL == true) {
$link = HTTPS_SERVER.DIR_WS_CATALOG;
} else {
$link = HTTP_SERVER.DIR_WS_CATALOG;
}
} else {
die('</td></tr></table></td></tr></table><br /><br /><font color="#ff0000"><b>Error!</b></font><br /><br /><b>Unable to determine connection method on a link!<br /><br />Known methods: NONSSL SSL</b><br /><br />');
}
if (xtc_not_null($parameters)) {
$link .= $page.'?'.$parameters;
$separator = '&';
} else {
$link .= $page;
$separator = '?';
}
while ((substr($link, -1) == '&') || (substr($link, -1) == '?'))
$link = substr($link, 0, -1);
// Add the session ID when moving from different HTTP and HTTPS servers, or when SID is defined
if (($add_session_id == true) && ($session_started == true) && (SESSION_FORCE_COOKIE_USE == 'False')) {
if (defined('SID') && xtc_not_null(SID)) {
$sid = SID;
}
elseif ((($request_type == 'NONSSL') && ($connection == 'SSL') && (ENABLE_SSL == true)) || (($request_type == 'SSL') && ($connection == 'NONSSL'))) {
if ($http_domain != $https_domain) {
$sid = session_name().'='.session_id();
}
}
}
// remove session if useragent is a known Spider
if ($truncate_session_id)
$sid = NULL;
if (isset ($sid)) {
$link .= $separator.$sid;
}
if ((SEARCH_ENGINE_FRIENDLY_URLS == 'true') && ($search_engine_safe == true)) {
while (strstr($link, '&&'))
$link = str_replace('&&', '&', $link);
$link = str_replace('&', '/', $link);
$link = str_replace('?', '/', $link);
$link = str_replace('&', '/', $link);
$link = str_replace('=', '/', $link);
$separator = '?';
}
return $link;
}
function xtc_href_link_admin($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) {
global $request_type, $session_started, $http_domain, $https_domain, $truncate_session_id;
if (!xtc_not_null($page)) {
die('</td></tr></table></td></tr></table><br /><br /><font color="#ff0000"><b>Error!</b></font><br /><br /><b>Unable to determine the page link!<br /><br />');
}
if ($connection == 'NONSSL') {
$link = HTTP_SERVER.DIR_WS_CATALOG;
}
elseif ($connection == 'SSL') {
if (ENABLE_SSL == true) {
$link = HTTPS_SERVER.DIR_WS_CATALOG;
} else {
$link = HTTP_SERVER.DIR_WS_CATALOG;
}
} else {
die('</td></tr></table></td></tr></table><br /><br /><font color="#ff0000"><b>Error!</b></font><br /><br /><b>Unable to determine connection method on a link!<br /><br />Known methods: NONSSL SSL</b><br /><br />');
}
if (xtc_not_null($parameters)) {
$link .= $page.'?'.$parameters;
$separator = '&';
} else {
$link .= $page;
$separator = '?';
}
while ((substr($link, -1) == '&') || (substr($link, -1) == '?'))
$link = substr($link, 0, -1);
// Add the session ID when moving from different HTTP and HTTPS servers, or when SID is defined
if (($add_session_id == true) && ($session_started == true) && (SESSION_FORCE_COOKIE_USE == 'False')) {
if (defined('SID') && xtc_not_null(SID)) {
$sid = SID;
}
elseif ((($request_type == 'NONSSL') && ($connection == 'SSL') && (ENABLE_SSL == true)) || (($request_type == 'SSL') && ($connection == 'NONSSL'))) {
if ($http_domain != $https_domain) {
$sid = session_name().'='.session_id();
}
}
}
if ($truncate_session_id)
$sid = NULL;
if (isset ($sid)) {
$link .= $separator.$sid;
}
return $link;
}
?>