hi,
The Maximum file size under application setttings, is it in Bytes, KB or MB?
hi,
The Maximum file size under application setttings, is it in Bytes, KB or MB?
Re: Maximum file size
Hi, so it in bytes…
If I uploaded more than the specified maximum file size, my apps does not detect the error if users is uploading a file size greater than the maximum files.
How can I detect or catch the error…
Re: Maximum file size
As I checked form_myAPPname_ul_save.php at line 33
if (!move_uploaded_file($_FILES[$sFileName][‘tmp_name’], $sFileTemp . $sFileRandom))
{
$fp = fopen($sFileTemp . $sFileCheck, ‘w’);
fwrite($fp, ‘error_move’);
fclose($fp);
exit;
}
the php file returns : “error_move” but it seems the onchange="ajaxSendFile_photo(); and… function ajaxCheckResponse_photo(sResp)
does not know how to deal with this…