Opened 15 years ago
Closed 15 years ago
#12853 closed defect (bug) (fixed)
uploading in Multisite over quota results in "Http Error"
Reported by: | dd32 | Owned by: | |
---|---|---|---|
Milestone: | 3.0 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Upload | Keywords: | ui-feedback |
Focuses: | multisite | Cc: |
Description
When in Multisite mode, If you attempt to upload a file that will take you over your usage quota (For example, a 30MB file with the default 10MB limit), the upload will start, and finish with a "HTTP Error" error message.
Expected result: Either the upload would be prevented if the file will take it over the limit, or a error message explaining that they've used up their quota should show.
Attachments (1)
Change History (24)
#2
@
15 years ago
You can't check filesize before uploading with the browser uploader. I think it's possible with the flash uploader but it would be a major rewrite.
#3
@
15 years ago
Its possible with the flash uploader, it specifically has a parameter to specify the maximum filesize uploadable, At present, this is set to the hosts maximum upload size.
This ticket has a 2 pronged attack,
- The error message shown is non-descriptive, it should mention the fact that they dont have enough quota
- It shouldnt allow files greater than min(server_limit, user_limit) from being uploaded.
#11
@
15 years ago
We get also a HTTP Error when check_admin_referer() fails and when the file size is higher then the allowed file size (ms-options.php).
Both because of the wp_die().
#13
@
15 years ago
[14694] works fine. You need also patch from #12225. Then it looks like this http://grab.by/4pf1
#14
@
15 years ago
In 12853.patch I want to show you my idea. I introduced ASYNC_UPLOAD. If ASYNC_UPLOAD is true, don't use wp_die() and only return $file. Then let wp_handle_upload() handle the error message.
#17
@
15 years ago
- Resolution set to fixed
- Status changed from new to closed
If there is still an issue, someone can re-open.
#18
@
15 years ago
- Keywords ux-feedback added
- Resolution fixed deleted
- Status changed from closed to reopened
#19
@
15 years ago
[14693] - That is a bit too bold IMO, That is something thats better suited to a small paragraph text below the upload buttons, I've added ui-feedback in hope someone will come up with some better wording and/or location..
uploading smaller files does of course succeed. I see there are some strings that are supposed to convey this error message already, unsure of why they're not showing up.