Skip to content
Snippets Groups Projects
Commit a93e6f85 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

catch too big uploads FS#1552

darcs-hash:20090116135017-7ad00-5815811717b4b5eb86698e57277e9ae74c660883.gz
parent 4222b898
No related branches found
No related tags found
No related merge requests found
......@@ -113,6 +113,7 @@ $lang['uploadexist'] = 'File already exists. Nothing done.';
$lang['uploadbadcontent'] = 'The uploaded content did not match the %s file extension.';
$lang['uploadspam'] = 'The upload was blocked by the spam blacklist.';
$lang['uploadxss'] = 'The upload was blocked for possibly malicious content.';
$lang['uploadsize'] = 'The uploaded file was too big. (max. %s)';
$lang['deletesucc'] = 'The file "%s" has been deleted.';
$lang['deletefail'] = '"%s" couldn\'t be deleted - check permissions.';
$lang['mediainuse'] = 'The file "%s" hasn\'t been deleted - it is still in use.';
......
......@@ -53,6 +53,16 @@
exit;
}
// give info on PHP catched upload errors
if($_FILES['upload']['error']) switch($_FILES['upload']['error']){
case 1:
case 2:
msg(sprintf($lang['uploadsize'],
filesize_h(php_to_byte(ini_get('upload_max_filesize')))),-1);
break;
default:
msg($lang['uploadfail'],-1);
}
// handle upload
if($_FILES['upload']['tmp_name']){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment