Jump to content
xt:Commerce Community Forum

Cache-problem?


larolt

Recommended Posts

Hallo,

schaut bitte mal hier:

http://xtc.o4s.de/product_info.php?products_id=4138

Dieses Produkt (als Beispiel) geh?rt zu folgender Kategorie:

Werkzeug ? Haus, Hof & Garten ? Obst- und Beerenpressen ? GW-30008

Jetzt das Problem:

Schaut mal

a) links auf den Kategorienbaum - es ist eine ganz andere Kategorie dort aktiv

B) rechts auf "Benachrichtigen..." - da steht ein ganz anderer Artikel

Und zwar ist das komischerweise immer so. Egal, welchen Artikel ich aufrufe.

Habt ihr eine L?sung?

Internes Caching ist eingeschaltet, GZip-Kompression nicht.

Gru? Lars

Link to comment
Share on other sites

Das Problem tritt komischerweise nicht immer auf....

Hab gerade noch mal einige Artikel aus der Kategorie Auto probiert, da wird es korrekt angezeigt.

Passiert scheinbar nur wenn ich einen Artikel aus Kategorie Werkzeug nehme...

Ich pr?fe noch mal weiter...

Gru? Lars

Link to comment
Share on other sites

Ist doch nicht nur bei Werkzeug....

Ich kann da leider keinen Grund feststellen.

Ist das bei Euch auch so, wenn ihr meinen Shop aufruft? Oder liegt das Anzeigeproblem bei mir lokal?

Bitte mal um kurze R?ckmeldung!

Danke und Gru? Lars

Link to comment
Share on other sites

Tausche mal Deine includes/modules/metatags.php gegen den nachfolgenden Code - dann hast Du zumindest mal Deinen Kategorienbaum und Deine Seitentitel im Griff (der wird n?mlich auch falsch ausgegeben).

<?php

/* -----------------------------------------------------------------------------------------

$Id: metatags.php,v 1.8 2004/04/26 10:31:17 fanta2k Exp $

XT-Commerce - community made shopping

http://www.xt-commerce.com

Copyright ? 2003 XT-Commerce

-----------------------------------------------------------------------------------------

based on:

? 2003 nextcommerce (metatags.php,v 1.7 2003/08/14); www.nextcommerce.org

Released under the GNU General Public License

---------------------------------------------------------------------------------------*/

?>

<meta name="robots" content="<?php echo META_ROBOTS; ?>">

<meta name="language" content="<?php echo $language; ?>">

<meta name="author" content="<?php echo META_AUTHOR; ?>">

<meta name="publisher" content="<?php echo META_PUBLISHER; ?>">

<meta name="company" content="<?php echo META_COMPANY; ?>">

<meta name="page-topic" content="<?php echo META_TOPIC; ?>">

<meta name="reply-to" content="<?php echo META_REPLY_TO; ?>">

<meta name="distribution" content="global">

<meta name="revisit-after" content="<?php echo META_REVISIT_AFTER; ?>">

<?php

if (strstr($PHP_SELF, FILENAME_PRODUCT_INFO)) {

$product_meta_query = xtc_db_query("select pd.products_name,p.products_model,pd.products_meta_title,pd.products_meta_description , pd.products_meta_keywords,pd.products_meta_title from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$_GET['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'");

$product_meta = xtc_db_fetch_array($product_meta_query);

?>

<META NAME="description" CONTENT="<?php echo $product_meta['products_meta_description']; ?>">

<META NAME="keywords" CONTENT="<?php echo $product_meta['products_meta_keywords']; ?>">

<title><?php echo TITLE.' - '.$product_meta['products_meta_title'].' '.$product_meta['products_name'].' '.$product_meta['products_model']; ?></title>

<?php

} else {

if ($_GET['cPath']) {

if (strpos($_GET['cPath'],'_')) {

$arr=explode('_',$_GET['cPath']);

$metaID=$arr[sizeof($arr)-1];

} else $metaID=$_GET['cPath'];

$categories_meta_query=xtc_db_query("SELECT categories_meta_keywords,

categories_meta_description,

categories_meta_title,

categories_name

FROM ".TABLE_CATEGORIES_DESCRIPTION."

WHERE categories_id='".(int)$metaID."' and

language_id='".$_SESSION['languages_id']."'");

$categories_meta = xtc_db_fetch_array($categories_meta_query);

if ($categories_meta['categories_meta_keywords']=='') {

$categories_meta['categories_meta_keywords']=META_KEYWORDS;

}

if ($categories_meta['categories_meta_description']=='') {

$categories_meta['categories_meta_description']=META_DESCRIPTION;

}

if ($categories_meta['categories_meta_title']=='') {

$categories_meta['categories_meta_title']=$categories_meta['categories_name'];

}

?>

<META NAME="description" CONTENT="<?php echo $categories_meta['categories_meta_description']; ?>">

<META NAME="keywords" CONTENT="<?php echo $categories_meta['categories_meta_keywords']; ?>">

<title><?php echo TITLE.' - '.$categories_meta['categories_meta_title']; ?></title>

<?php

} else {

?>

<META NAME="description" CONTENT="<?php echo META_DESCRIPTION; ?>">

<META NAME="keywords" CONTENT="<?php echo META_KEYWORDS; ?>">

<title><?php echo TITLE; ?></title>

<?php

}

}

?>

Link to comment
Share on other sites

Archived

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

×
  • Create New...