crs1988 Posted June 9, 2010 Report Share Posted June 9, 2010 Wenn ich bei den Artikelbilder im Admin bereich aus -> Image Processing drücke bekomm ich per mail diesen auszug: mysql error: [1146: Table 'shop_.table_media_to_gallery' doesn't exist] in EXECUTE("SELECT m.* FROM xt_media m left join TABLE_MEDIA_TO_GALLERY m2g on m.id = m2g.m_id where m2g.id='90053' and m.type='images' and m.class='product' LIMIT 0,10") was natürlich nicht sein darf. Aber was tu ich dagegen ?! Freue mich auf eine Antwort Gruß Link to comment Share on other sites More sharing options...
crs1988 Posted June 9, 2010 Author Report Share Posted June 9, 2010 bei mir gibt es in der Datenbank nur eine tabelle xt_media_to_media_gallery vllt. hilft euch das ja weiter Link to comment Share on other sites More sharing options...
bartekk Posted June 10, 2010 Report Share Posted June 10, 2010 Richtig, es gibt nur die xt_media_to_media_gallery Tabelle . Ist ein Bug. Inder Datei xtFramework/classes/class.ImageProcessing.php muss die Zeile 97 auf folgendes geändert werden: $query = "SELECT m.* FROM ".TABLE_MEDIA." m left join ".TABLE_MEDIA_TO_MEDIA_GALLERY." m2g on m.id = m2g.m_id where m2g.ml_id='".$this->parent_id."' and m.type='images' and m.class='".$this->media_class."' LIMIT ".$this->limit_lower.",".$this->limit;[/PHP] Grüße, Thomas Link to comment Share on other sites More sharing options...
crs1988 Posted June 10, 2010 Author Report Share Posted June 10, 2010 Vielen herzlichen Dank, hat prima funktioniert. mann muss nur wissen wie Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.