Jump to content
xt:Commerce Community Forum

Fehler bei Template xtc004_HHGPT


sumselbiene

Recommended Posts

Hallo

ich habe da ein kleines Problem, und zwar habe ich ein paar Fehler beim Template xtc004_HHGPT entdeckt.

Besucht mal meine Page www.Yetoo.de dann geht ihr bitte mal auf die Kategorie CRAZY Caps (oder hier der Link http://www.yetoo.de/index.php/cPath/200/category/Crazy-Caps) dann scrollt ihr ganz nach unten und geht dabei auf die 2te Seite von dieser Kategorie und ihr werdet sehen das ihr wieder auf die Starstseite verlinkt wird, doch geht ihr in die Kategorie CRAZY Wäsche (Link: http://www.yetoo.de/index.php/cPath/167/category/CRAZY-W-sche) dann auf die Unterkategorie Unterwäsche (Link: http://www.yetoo.de/index.php/cat/c166_Unterw-sche.html) und geht dann auch dort auf die 2te Seite, dann werdet ihr sehen das es da funktioniert.

Dieses Problem gibt es in ein paar Kategorie, manche gehen und manche nicht.

Könnt ihr mit bitte sagen wie das Problem lösen kann ?

Wäre dankbar für eure Hilfe.

Link to comment
Share on other sites

Hallo,

ersetzt mal diese Datei inc/xtc_get_all_get_params.inc.php

mit diesem Inhalt:


<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_get_all_get_params.inc.php 1237 2005-09-23 14:56:52Z mz $

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(general.php,v 1.225 2003/05/29); www.oscommerce.com
(c) 2003 nextcommerce (xtc_get_all_get_params.inc.php,v 1.3 2003/08/13); www.nextcommerce.org

Released under the GNU General Public License
---------------------------------------------------------------------------------------*/

function xtc_get_all_get_params($exclude_array = '') {
global $InputFilter;

if (!is_array($exclude_array)) $exclude_array = array();

$get_url = '';
if (is_array($_GET) && (sizeof($_GET) > 0)) {
reset($_GET);
while (list($key, $value) = each($_GET)) {
// if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && ($key != 'cPath') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
$get_url .= rawurlencode(stripslashes($key)) . '=' . rawurlencode(stripslashes($value)) . '&';
}
}
}

return $get_url;
}
?>
[/PHP]

Gruß

TechWay

Link to comment
Share on other sites

Hallo,

ersetzt mal diese Datei inc/xtc_get_all_get_params.inc.php

mit diesem Inhalt:


<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_get_all_get_params.inc.php 1237 2005-09-23 14:56:52Z mz $

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(general.php,v 1.225 2003/05/29); www.oscommerce.com
(c) 2003 nextcommerce (xtc_get_all_get_params.inc.php,v 1.3 2003/08/13); www.nextcommerce.org

Released under the GNU General Public License
---------------------------------------------------------------------------------------*/

function xtc_get_all_get_params($exclude_array = '') {
global $InputFilter;

if (!is_array($exclude_array)) $exclude_array = array();

$get_url = '';
if (is_array($_GET) && (sizeof($_GET) > 0)) {
reset($_GET);
while (list($key, $value) = each($_GET)) {
// if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && ($key != 'cPath') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
if ( (strlen($value) > 0) && ($key != xtc_session_name()) && ($key != 'error') && (!in_array($key, $exclude_array)) && ($key != 'x') && ($key != 'y') ) {
$get_url .= rawurlencode(stripslashes($key)) . '=' . rawurlencode(stripslashes($value)) . '&';
}
}
}

return $get_url;
}
?>
[/php]

Gruß

TechWay

Wo finde ich diese Datei ?

Link to comment
Share on other sites

gern geschehen :cool:

da siehst du dass es nicht am Template lag, sondern ein BUG ist ;-)

SCHEIß BUG

doch nun mal was anderes, ich habe da noch ein kleines Problem, eben gerade gefunden, und zwar wenn ich was in den Warenkorb lege und dann kommt folgender Text: Die mit *** markierten Artikel sind leider nicht in der von Ihnen gewünschten Menge auf Lager.

Die bestellte Menge wird kurzfristig von uns geliefert, wenn Sie es wünschen nehmen wir auch eine Teillieferung vor. Eigentlich dürfte dieser text nicht kommen denn ich habe bei allen Produkten die in meinem Shop sind mindestens eine Anzahl von 100 eingegeben. Wie kann ich das ändern ?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...