Jump to content
xt:Commerce Community Forum

Fehlermeldung Bei Bildupload


Scubi

Recommended Posts

Hallo, immer wenn ich ein Bild f?r einen Artikel hochlade...also Artikel eingabe inkl. Bild und dann auf speichern klicke kommt folgende Fehlermeldung:

Warning: Division by zero in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 52 Warning: Division by zero in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 52 Warning: Division by zero in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 51 Warning: Division by zero in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 52 Warning: Division by zero in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 53 Warning: imagecreatetruecolor(): Invalid image dimensions in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 59 Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 60 Warning: imagedestroy(): supplied argument is not a valid Image resource in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php on line 320 Warning: Cannot modify header information - headers already sent by (output started at /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/classes/image_manipulator.php:52) in /home/wartenberg/dessous-xxl.com/dessous_shop/admin/includes/functions/general.php on line 146

Was genau mache ich falsch?

Klicke ich auf zur?ck steht oben, das das Bild erfolgreich hochgeladen wurde.

Der popup ordner steht auf 777 aber es ist kein Bild vorhanden. Das kleine Bild wird angezeigt.

Gru? Scubi

Link to comment
Share on other sites

  • 4 weeks later...

Ich habe spasseshalber in meiner image_manipulator.php an den entsprechenden GD>2 Funktionen eine "function_exists"-Abfrage eingebaut. Damit l?uft der Shop ohne Probleme auf servern mit GD<2 und GD>2.

Ist vielleicht ne Idee f?r neue Releases (die sicher schon jemand vor mir hatte...) und bestimmt nice-to-have f?r DAUs.

if (function_exists(imagecreatetruecolor)) {

  	$this->t = imagecreatetruecolor($this->q, $this->r); // created thumbnail reference

  } else { $this->t = imagecreate($this->q, $this->r); }

  if (function_exists(imagecopyresampled)) {

  	$this->u = imagecopyresampled($this->t, $this->s, 0, 0, 0, 0, $this->q, $this->r, $this->i, $this->j);

  } else {$this->u = imagecopy($this->t, $this->s, 0, 0, 0, 0, $this->q, $this->r, $this->i, $this->j);};

Link to comment
Share on other sites

Archived

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

×
  • Create New...