|
How big is the file?
Sounds to me like your php memory has been exhausted. You can edit your php.ini and increase the memory_limit or in bulkupload.php under this
ini_set("max_execution_time", 0);
add this
ini_set("memory_limit", "24M");
In uploadphoto.php above this
require "pp-inc.php";
add this
ini_set("memory_limit", "24M");
|