Hi,
Dagia Dorjsuren wrote:
How to change attach file size (default 2MB) of roundcube webmail?
You need to change php config variables in php.ini.
This is the variable determing your max-filesize (default = 2M), e.g.
; Maximum allowed size for uploaded files.
upload_max_filesize = 10M
In addition you need to increase the max allowed POST size e.g.
; Maximum size of POST data that PHP will accept.
post_max_size = 32M
You might need to adapt as well: memory_limit, max_execution_time
Depending on your Webserver-configuration you might be able to set the values instead of php.ini in your .htaccess file, e.g.
php_value upload_max_filesize 10M
php_value post_max_size 32M
For further description of the parameters look for example at
http://www.radinks.com/upload/config.php
List info: http://lists.roundcube.net/users/ BT/9b404e9e