Developer Documentation Library > Interviewer - Server > Configuration and customization > Web configuration files > Settings for the Quotas activity
 
Settings for the Quotas activity
The Quotas activity checks and revises quota targets. It can be used to change the way quotas behave in the context of web interviewing, computer assisted telephone interviewing (CATI), or computer assisted personal interviewing (CAPI).
Saving audit logs for the quota import process
To record the changes made when importing quota updates from an Excel spreadsheet, complete the following steps. The changes are recorded in the RVQ logs. By default, the changes are not recorded.
1 Edit the Web.config file, which is in the following folder: C:\InetPub\wwwroot\SPSSMR\ReviewQuotas
2 Add the following line to the <appSettings> section:
<add key="KeepImportAuditLog" value="true" />
Support for large quota updates: Updating the HTTP request limit
The Microsoft security update 2659883 limits the HTTP request parameters to 1000. This limit might result in issues when trying to update quotas. See http://technet.microsoft.com/en-us/security/advisory/2659883
To resolve this issue, complete the following steps:
1 Edit the Web.config file, which is in the following folder: C:\InetPub\wwwroot\SPSSMR\ReviewQuotas
2 Add the following line to the <appSettings> section:
<add key="aspnet:MaxHttpCollectionKeys" value="[value]" />
3 Set an appropriate aspnet:MaxHttpCollectionKeys value.
Example
<appSettings>
  <add key="aspnet:MaxHttpCollectionKeys" value="5000" />
</appSettings>
See also
Web configuration files