xplosion Posted August 26, 2009 Report Share Posted August 26, 2009 Tag, Habe einen "Flüchtigkeitsfehler" in oben genannter Cross Selling Klasse entdeckt. Ich hatte bei der Installation den DB-Prefix von "xt" auf "xt4" geändert und mich danach über einen SQL-Fehler beim Aufrufen von Produkten gewundert. Nach ein bisschen Suchen konnte ich den Fehler in Zeile 51 und 92 ausmachen: $query = "SELECT bop.products_id FROM xt_orders_products aop, xt_orders_products bop WHERE aop.products_id='".$products_id."' and aop.products_id!=bop.products_id and aop.orders_id = bop.orders_id group by bop.products_id";muss lauten: $query = "SELECT bop.products_id FROM ".TABLE_ORDERS_PRODUCTS." aop, ".TABLE_ORDERS_PRODUCTS." bop WHERE aop.products_id='".$products_id."' and aop.products_id!=bop.products_id and aop.orders_id = bop.orders_id group by bop.products_id";entsprechend bei Zeile 92 statt $query = "SELECT bop.products_id FROM xt_orders_products aop, xt_orders_products bop WHERE aop.products_id IN (".implode(',',$ids).") and aop.products_id!=bop.products_id and aop.orders_id = bop.orders_id group by bop.products_id";$query = "SELECT bop.products_id FROM ".TABLE_ORDERS_PRODUCTS." aop, ".TABLE_ORDERS_PRODUCTS." bop WHERE aop.products_id IN (".implode(',',$ids).") and aop.products_id!=bop.products_id and aop.orders_id = bop.orders_id group by bop.products_id";Grüße xplosion Link to comment Share on other sites More sharing options...
GoriBoy Posted August 26, 2009 Report Share Posted August 26, 2009 es gibt ja eine fertige von den xt machern zum download bereit unter den patches.. Gruß GoriBoy Link to comment Share on other sites More sharing options...
xplosion Posted August 26, 2009 Author Report Share Posted August 26, 2009 Tut mir Leid, seh ich irgendwie nich. Wo denn? Link to comment Share on other sites More sharing options...
GoriBoy Posted August 27, 2009 Report Share Posted August 27, 2009 Tut mir Leid, seh ich irgendwie nich. Wo denn? geh mal hier rein LINK mußt dich aber vorher registrieren.. da sind ja verschiedene patsches.. Gruß GoriBoy Link to comment Share on other sites More sharing options...
xplosion Posted August 27, 2009 Author Report Share Posted August 27, 2009 Also ich hab Version 4.0.12 und da seh ich kein Patch. Falls du Bugfix für 4.0.11 : automatisches Cross Selling - Powered By Kayako SupportSuite meinst, da ist der Fehler auch drin. Link to comment Share on other sites More sharing options...
xplosion Posted September 2, 2009 Author Report Share Posted September 2, 2009 Zur Info: Wie ich gerade per Ticket bestätigt bekommen habe, wurde am 28.8., also 2 Tage nachdem ich den Fehler hier im Forum gemeldet habe, der Fehler im 4.0.12 Download entsprechend behoben (ohne Erhöhung der Versionsnummer). Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.