Jump to content
xt:Commerce Community Forum

Mysql error 1146


Recommended Posts

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

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

Archived

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

×
  • Create New...