Scubi Posted April 3, 2004 Report Share Posted April 3, 2004 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 More sharing options...
mzanier Posted April 3, 2004 Report Share Posted April 3, 2004 mit der originalen image_manipulator.php ? im admin bei breite/h?he keine 0 eingeben. Link to comment Share on other sites More sharing options...
Matthias Posted April 3, 2004 Report Share Posted April 3, 2004 Hi, http://www.xt-commerce.com/modules/mantis/...?bug_id=0000185 guckst du hier mfg Matthias Link to comment Share on other sites More sharing options...
Scubi Posted April 3, 2004 Author Report Share Posted April 3, 2004 Danke Matthias, mann sollte vorher genauer suchen :-) Gru? Scubi Link to comment Share on other sites More sharing options...
khan_thep Posted April 27, 2004 Report Share Posted April 27, 2004 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.