In Microsoft Dynamics CRM 2011, di default, le dimensioni massime per l’upload di singoli file è impostato a 8MB.
E’ possibile estendere tale limite agendo su questi file:
Root web.config
cambiare il valore di maxRequestLength nel file “<Microsoft Dynamics CRM install path>\CRMWeb\” (in 2 righe)
<system.web>
<httpRuntime executionTimeout="300" maxRequestLength="32768" requestValidationMode="3.0" encoderType="Microsoft.Crm.CrmHttpEncoder, Microsoft.Crm" />
<location path="MSCRMServices">
<system.web>
<httpRuntime maxRequestLength="32768" />
Import Wizard web.config
cambiare il valore di maxRequestLength presente nel file “<Microsoft Dynamics CRM install path>\CRMWeb\Tools\ImportWizard\web.config”
<httpRuntime executionTimeout="1800" maxRequestLength="32768"/>
Organization server settings
cambiare il valore del campo ImportMaxAllowedFileSizeInMB nel database MSCRM_CONFIG.dbo.ServerSettingsProperties usando la seguente query:
update MSCRM_CONFIG.dbo.ServerSettingsProperties
set intColumn = 32
where ColumnName = 'ImportMaxAllowedFileSizeInMB'