#25491 closed defect (bug) (worksforme)
Maximum size on uploader not corresponding maximum network size
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.6.1 |
Component: | Upload | Keywords: | |
Focuses: | multisite | Cc: |
Description
Under Network settings we set the maximum Upload Settings to 2000 Kb.
But.
On a site we try to upload a larger file: 1700 Kb
On screen, it does Not pick up the correct network setting (2000 Kb) but it misleadingly says:
"Maximum upload file size: 1 Mb"
Still. The file uploads just fine.
Attachments (1)
Change History (5)
#3
@
10 years ago
- Resolution set to worksforme
- Status changed from new to closed
Just checked this out on a clean install and it works for me. Not sure if it was fixed since this was reported as part of media upload improvements or what. Marking as worksforme
.
#4
@
10 years ago
- Milestone Awaiting Review deleted
This is most likely caused by a low limit in PHP's upload_max_filesize
or post_max_size
configs, which are used in wp_max_upload_size()
(and filtered in Multisite via upload_size_limit_filter()
). The lowest of these values determines the max upload file size.
Note: See
TracTickets for help on using
tickets.
Upload Maximum Sizes