简体   繁体   中英

How to increase download size in Livelink

I'm using Livelink to download files through Enterprise Connect.

When I download files to desktop, after downloading some files, it shows me an error message that I have exceeded download limit set by the administrator.

My question: is there any way to increase/change the download limit in Livelink? I'm using an user which has admin rights.

That's a server parameter. You have to change the parameter in IIS (assuming you use IIS?).

As Steffen already mentioned, that is a server parameter. But OT LiveLink is usually running on a Tomcat server.

Take a look on the config file " webapps/manager/WEB-INF/web.xml ", within the Tomcat server installation folder.

There is a part "multipart-config"

<multipart-config>
  <!-- 50MB max -->
  <max-file-size>52428800</max-file-size>
  <max-request-size>52428800</max-request-size>
  <file-size-threshold>0</file-size-threshold>
</multipart-config>

100 MB => 104857600, 200 MB => 209715200

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM