|
A search on these forums would turn up many results on this. PHP is dieing because GD is using all the php memory to process the image and php can not continue so the script dies
PHP is not good about giving warning messages in such circumstances.
In bulkupload.php find this
ini_set("max_execution_time", 0);
below it add this
ini_set("memory_limit", "32M");
|