Skip to main content
File Transfer Limits

Configure your file transfer settings in Naverisk.

Updated over a month ago

Introduction

You can customize the maximum file sizes allowed for transfers in Naverisk by adjusting specific settings in the web.config file. Modifying the file transfer limit will affect the maximum file sizes permitted for uploads in Script Packs and Documents, as well as the file sizes allowed for transfers in File Explorer.

1.0 Increasing File Transfer Sizes

By default, Naverisk has an upload/download limit of 20MB when first installed. However, this can be changed by modifying the Web.config file located at C:\Program Files (x86)\Naverisk\Website\Web.config.

For example, you can increase the limit to 50MB for uploads/downloads across all systems. These configuration settings can be updated while Naverisk is running. The only requirement is that the defaultAppPool in IIS be recycled for the changes to take effect.

<add key="FileExplorerMaxUploadSize" value="52428800" />
<add key="FileExplorerMaxDownloadSize" value="52428800" />

<httpRuntime executionTimeout="600" maxRequestLength="52428800" maxQueryStringLength="20480" encoderType="HtmlAttributeEncodingNot" requestValidationMode="2.0" targetFramework="4.8" />

<requestLimits maxQueryString="20480" maxAllowedContentLength="52428800" />

Did this answer your question?