Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate
sasa
10/11/2007 22:22:00Ik heb hier een imageuploadpagina gemaakt - met resizing, mijn uploadlimiet is 16 MB. Het rare is nu dat als ik een foto (een panorama) van bv. 5000x1500, 1.75MB wil uploaden, dat er altijd komt:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 21436 bytes)
en dat is dan op hier:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 21436 bytes)
en dat is dan op hier:
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?
$pathinfo = pathinfo($_FILES['bestand']['name']);
$ext = $pathinfo["extension"];
switch(strtolower($ext)){
case "jpg" : $thumb = imagecreatefromjpeg($_FILES['bestand']['tmp_name']);
break;
}
?>
$pathinfo = pathinfo($_FILES['bestand']['name']);
$ext = $pathinfo["extension"];
switch(strtolower($ext)){
case "jpg" : $thumb = imagecreatefromjpeg($_FILES['bestand']['tmp_name']);
break;
}
?>
PHP hulp
20/11/2024 00:16:56- Roland -
10/11/2007 22:34:005000x1500 x3 = 22.5 MB weet niet wat je precies er mee doet, maar als je er iets anders op gaat plakken dan heb je dus al 2x die waarde nodig ....
Jason de Ridder
10/11/2007 22:53:00sasa
11/11/2007 13:02:00ruud schreef op 10.11.2007 22:34:
5000x1500 x3 = 22.5 MB weet niet wat je precies er mee doet, maar als je er iets anders op gaat plakken dan heb je dus al 2x die waarde nodig ....
Van waar kom je met "5000x1500 x3 = 22.5 MB"?
Het rare is dat als ik een foto van 4000x4000 wil upoaden, dat dat dan weer wel lukt.