File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ Uploading a large file in chunks can help reduce risks.
1616
1717- PHP from 5.3.4 limits the number of concurrent uploads and by uploading a file in one request can limit the
1818availability of a service. ([ max_file_uploads] [ php-max-file-uploads ] )
19- - For security reasons the payload size and the uploadable file size is limited in many systems PHP is not an exception.
19+ - For security reasons many systems limit the payload size, and the uploadable file size. PHP is not an exception.
2020([ upload_max_filesize] [ php-upload-max-filesize ] )
21- - It can be useful to check the meta information of a file and decline an upload upfront so the user does not have to
22- wait for minutes or seconds to upload a large file and then receive a message that the file type or mime type is not
23- allowed .
21+ - It can be useful to check the meta information of a file and decline an upload upfront, so the user does not have to
22+ wait for minutes or seconds to upload a large file and then receive an error message for an invalid the file type
23+ or mime type .
2424- Can include resume functionality which means an upload can be continued after a reconnection.
2525
2626However, there is not a single RFC about chunked uploads and this caused many implementations. The most mature
You can’t perform that action at this time.
0 commit comments