Se tiene el inconveniente que al querer adjuntar archivos mas grandes de 4mb, Evolution da error, esto a pesar de tener configurado el parámetro de infraestructura FileUploadPesoMaximoKilobytes que soporte hasta 2GB (2090000 kilobytes), esto se encontro en Evolution 1.19.1.8, pero al parecer es algo que ocurre en cualquier versión. |
Para solucionar este inconveniente es necesario realizar cambios en el archivo de configuración del sitio web.config agregando varios parámetros los cuales son: If you are using IIS for hosting your application, then the default upload file size is 4MB. To increase it, please use this below section in your web.config - <configuration> <system.web> <httpruntime **maxrequestlength="1048576"/>** </system.web> </configuration> For IIS7 and above, you also need to add the lines below: <system.webserver> <security> <requestfiltering> <requestlimits **maxallowedcontentlength="1073741824"/>** </requestfiltering> </security> </system.webserver> Evolution si limita el tamaño a subir de acuerdo al parametro de infraestrctura, pero si esta dentro de lo configurado en el IIS (web.config). |