Warning: WS_FTP Web Server is no longer supported
If the upload exceeds the IIS maximum upload size, the browser displays a page error and does not return to the Web Transfer Client page.
Though we cannot change the browser behavior, both of these upload values can be set in the web.config. The default path is:
When you save changes to the Web.config file, all active WS_FTP Server Web Transfer Client sessions will be reset, which means that any user logged on via the Web Transfer Client will be returned to the Logon page, and will have to log on again.
<add key="MaxUploadSize" value="50"/>
The value is in MB, so the maximum upload size for the Web Transfer Client is 50 MB.
<httpRuntime maxRequestLength="2097151"/>
The value is in KB, so the maximum upload size is 2 GB.
The IIS limit can also be set in other locations, namely machine.config, and IIS metabase, though we recommend using the web.config settings.
'To help protect your security, IE blocked this site from downloading files to your computer. Click here for options.'
See Also |