|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2016-06-21 21:32 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2016-06-21 21:32 UTC] cmb@php.net
[2016-06-22 07:19 UTC] pajoye@php.net
[2016-06-27 19:22 UTC] razzari at gmail dot com
[2016-07-03 04:22 UTC] php-bugs at lists dot php dot net
[2016-07-03 04:47 UTC] requinix@php.net
-Status: No Feedback
+Status: Open
[2016-07-03 05:20 UTC] pajoye@php.net
-Status: Assigned
+Status: Feedback
[2016-07-03 05:20 UTC] pajoye@php.net
[2016-07-03 22:13 UTC] razzari at gmail dot com
[2016-07-03 22:27 UTC] razzari at gmail dot com
[2016-07-04 11:25 UTC] cmb@php.net
-Status: Feedback
+Status: Open
[2016-07-04 11:25 UTC] cmb@php.net
[2016-07-04 11:25 UTC] cmb@php.net
[2016-07-04 13:32 UTC] razzari at gmail dot com
[2016-07-04 14:17 UTC] razzari at gmail dot com
[2016-07-07 11:59 UTC] cmb@php.net
-Summary: imagecreatefromstring() returns 500 Server Error but
page full renderized
+Summary: imagecreatefromstring() returns 500 Server Error but
page is fully rendered
[2016-07-07 12:55 UTC] cmb@php.net
-Status: Assigned
+Status: Analyzed
[2016-07-07 12:55 UTC] cmb@php.net
[2016-07-18 22:59 UTC] cmb@php.net
[2016-07-18 22:59 UTC] cmb@php.net
-Status: Analyzed
+Status: Closed
[2016-07-18 23:18 UTC] razzari at gmail dot com
[2016-07-20 23:53 UTC] cmb@php.net
[2016-10-17 10:11 UTC] bwoebi@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 02:00:01 2025 UTC |
Description: ------------ Condition: display_errors is off. If you use imagecreatefromstring() with an invalid string, it returns a 500 Internal Server Error in the HTTP headers, but the page is fully renderized. It should return 200 OK (and the full page), or a 500 Error but without the full HTML. Not both at the same time. 5.3.10 and 5.4.44 are not affected. 5.5.9 and 5.6.12 are affected. Test script: --------------- <?php ini_set("display_errors", 0); $data = "iVBORw0KGgoAAAANSUhEUgAAAuwAAAUeCAYAAAAl3WR...LkAAAAAElFTkSuQmCC"; $data = base64_decode($data); $im = imagecreatefromstring($data); echo "This should not render";