if ($_FILES ['photo'] ['size'] >= '152428800' && ! $error) {
$smarty->assign ( "error", 'the size of the image is too large. please upload something a little smaller' );
$error = true;
}
Looks to me like it should take 152,428,800 bytes, or 150MB - something left over from when we were playing with video uploads. Hrm.
Edit: [
plus613.net] is an 11,8MB (11,803,928 bytes) image that I just successfully uploaded (using URL upload method, not upload from my PC) - how are you attempting to do it? Maybe getting an HTTP timeout rather than image too large? NFI what timeout is set here..
Edited 1 time(s). Last edit at 05/01/2014 11:30AM by pulse.