|
You would need to do one of three things
edit your php.ini to give php more memory
edit your usergroup permissions and set filesize limits
in uploadphoto.php and bulkupload.php you can place this tweak at the top of the file to give php more memory
ini_set("memory_limit", "40M");
|