Attachment Definition Setup
Applicant Online requires BusinessPlus Documents Online software for managing images. Image Attachment Definitions are established in the Administration Console. Select "Attachment Definitions" under Documents Online > Setup > Attach Definitions.
In order to prevent the general public from uploading destructive or inappropriate files using Applicant Online, two different file upload restrictions are supported.
1. File Size Limit – Sets the maximum allowable file size that may be uploaded. Value in the web.config file is in kilobytes. If this setting is missing or has a value of 0 (zero) the page will allow files of any size to be uploaded.
2. File Extension Restriction – This is a comma-separated list of file extensions that will be allowed for uploading. If this value is missing or blank, the page will allow files of any type to be uploaded.
Web.Config Example
<!--Applicant Online-->
<location path="Home/Applicant">
<appSettings>
<add key="ProductName" value="BusinessPlus Applicant Online"/>
<add key="AttachmentExtensions" value="doc, txt, rtf, jpg, png"/>
<add key="AttachmentFileLimit" value="4096"/><!--4 Megs-->
<add key="SymantecScanServer" value="scanserver:1344"/>
</appSettings>
</location>
If the web.config file is used to set these values, the equivalent files on all servers in the Web farm should be updated as well.