Rudi-Ratlos Posted July 28, 2009 Report Share Posted July 28, 2009 Hallo ..... Ich möchte die Artikelbilder von einer anderen Domain bzw. Server in meinem Shop anzeigen lassen. In der CSV Datei die ich importiere sind die Namen der Bilder festgelegt die auch auf meiner Domain in meinem Shop liegen. Ich habe es mit Pfaden zu den Bilder versucht aber das klappt nicht. Ich muss irgendwo in einer PHP änderungen vornehmen, aber wo ? Link to comment Share on other sites More sharing options...
df:bug Posted July 28, 2009 Report Share Posted July 28, 2009 Hallo, dies sollte möglich sein, dazu müsste z.B. das Template für das Produktlisting angepasst werden, also genauer gesagt der img-src. Viele Grüße, df:bug Link to comment Share on other sites More sharing options...
Rudi-Ratlos Posted July 28, 2009 Author Report Share Posted July 28, 2009 Kannst du mal näheres darüber erzählen. Hallo, dies sollte möglich sein, dazu müsste z.B. das Template für das Produktlisting angepasst werden, also genauer gesagt der img-src. Viele Grüße, df:bug Link to comment Share on other sites More sharing options...
Rudi-Ratlos Posted July 28, 2009 Author Report Share Posted July 28, 2009 Du meinst hier das ? function productImage($name, $type) { switch ($type) { case 'info' : $path = DIR_WS_INFO_IMAGES; break; case 'thumbnail' : $path = DIR_WS_THUMBNAIL_IMAGES; break; case 'popup' : $path = DIR_WS_POPUP_IMAGES; break; } Hallo, dies sollte möglich sein, dazu müsste z.B. das Template für das Produktlisting angepasst werden, also genauer gesagt der img-src. Viele Grüße, df:bug Link to comment Share on other sites More sharing options...
Rudi-Ratlos Posted July 30, 2009 Author Report Share Posted July 30, 2009 Ja genau das meine ich, was muss da rein, damit die Bilder von externen Servern angezeigt werden? Bei mir sieht das so aus. function productImage($name, $type) { switch ($type) { case 'info' : $path = DIR_WS_INFO_IMAGES; break; case 'thumbnail' : $path = DIR_WS_THUMBNAIL_IMAGES; break; case 'popup' : $path = DIR_WS_POPUP_IMAGES; break; } if ($name == '') { if ($this->useStandardImage == 'true' && $this->standardImage != '') return $path.$this->standardImage; } else { // check if image exists if (!file_exists($path.$name)) { if ($this->useStandardImage == 'true' && $this->standardImage != '') $name = $this->standardImage; } return $path.$name; } } } ?> --------------------------------------------------------------------------------- Du meinst hier das ? function productImage($name, $type) { switch ($type) { case 'info' : $path = DIR_WS_INFO_IMAGES; break; case 'thumbnail' : $path = DIR_WS_THUMBNAIL_IMAGES; break; case 'popup' : $path = DIR_WS_POPUP_IMAGES; break; } Link to comment Share on other sites More sharing options...
df:bug Posted July 30, 2009 Report Share Posted July 30, 2009 Hallo, trage dort mal den anderen Server ein und probier es aus. Wenn im Shop noch keine Bilder angezeigt werden, dann schau dir mal bitte die URL vom Bild an und passe die im Code dann ggf. richtig an. Viele Grüße, df:bug Link to comment Share on other sites More sharing options...
Rudi-Ratlos Posted July 30, 2009 Author Report Share Posted July 30, 2009 Ich habe folgendes versucht geht aber auch nicht. Weist du was hier falsch ist? function productImage($name, $type) { switch ($type) { case 'info' : $path = DIR_WS_INFO_IMAGES; break; case 'thumbnail' : $path = DIR_WS_THUMBNAIL_IMAGES; break; case 'popup' : $path = DIR_WS_POPUP_IMAGES; break; case 'infoext' : $path = " http://www.externedomain.de./shop/ProductPics/info_images/"; break; case 'thumbext': $path = 'http://www.externedomain.de/shop/ProductPics/thumbnail_images/'; break; case 'popext': $path = 'http://www.externedomain.de/shop/ProductPics/popup_images/'; break; } if ($name == '') { if ($this->useStandardImage == 'true' && $this->standardImage != '') return $path.$this->standardImage; } else { // check if image exists if (!file_exists($path.$name)) { if ($this->useStandardImage == 'true' && $this->standardImage != '') $name = $this->standardImage; } return $path.$name; } } } ?> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.