Kopano Webapp attachment file
-
hi
I use Kopano 8.4.90 compiled and installed from sources, Kopano-Webapp 3.4.2
I am unable to load attachment file larger than 9.4 MB
my php.ini file contains
post_max_size = 256M
upload_max_filesize = 256MThe message displayed in the popup is the following
Cannot upload attachment, attachment is 11,4MB while the allowed maximum is 0 bytes.Anye Idea where Wepapp look for the maximum size (0 bytes)
Thanks
-
-
Hi,
it works by adding it in the .htaccess or apache conf file
To avoid to use the .htaccess I have added the php directive in the httpd virtual conf file
AllowOverride None
php_value post_max_size 31M
php_value upload_max_filesize 30MThanks