Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
a93e6f85
Commit
a93e6f85
authored
16 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
catch too big uploads FS#1552
darcs-hash:20090116135017-7ad00-5815811717b4b5eb86698e57277e9ae74c660883.gz
parent
4222b898
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/lang/en/lang.php
+1
-0
1 addition, 0 deletions
inc/lang/en/lang.php
lib/exe/mediamanager.php
+10
-0
10 additions, 0 deletions
lib/exe/mediamanager.php
with
11 additions
and
0 deletions
inc/lang/en/lang.php
+
1
−
0
View file @
a93e6f85
...
...
@@ -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.'
;
...
...
This diff is collapsed.
Click to expand it.
lib/exe/mediamanager.php
+
10
−
0
View file @
a93e6f85
...
...
@@ -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'
]){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment