Apache Webdav Max File Size
Ntfs Max File Size
Dropbox Max File Size
My problem is that I am trying to set up a size limit. WebDAV folder quota using Apache server. Mkfs.ext4 /var/webdav-file-container. If you are using apache. The file size exceeds the limit allowed and cannot be saved.' (used in the Windows WebDAV client). Dd if=/dev/zero of=/var/webdav-file-container bs=1048576 count=100. And created a filesystem in that container: mkfs.ext4 /var/webdav-file-container. Then I mounted this container as folder for my share: mount /var/webdav-file-container /var/webdav-share. So, now the filesystem in the container has a fixed size and apache cannot write more than the 100MB.
Apache Webdav Setup
If you want to upload a file via a POST form use: postmaxsize = 20M (max file size in this example is 20 Megabytes) If you want to just set the maximum uploadable file size use: uploadmaxfilesize = 20M Both are set in the php.ini file (usually located in /etc/php7.1 or similar). If this is not explicitly set or your hosting service does not give you the privileges to do this, it may also be possible to set this value in your.htaccess file similar to the following: phpvalue uploadmaxfilesize 20M – Nov 20 '17 at 12:09.