0 votes
130 views
in Cloud by
I try to download a file from seafile, but getting the error as "size too large", how can I resolve the issue

1 Answer

0 votes
by

It is the download limit of the Seafile configuration, the default is 200 MB, you might want to change the value from seafile.conf

change the value for max_download_dir_size=200 or if the line does not exist add it under [fileserver]
 

eg: In seafile.conf:

[fileserver] #
Set maximum upload file size to 200M.
max_upload_size=200 #
Set maximum download directory size to 200M.
max_download_dir_size=200

by
Thank you much appreciated.
...