attachment size
attachment size
in Roundcube, how can we change the size of attachments?
Re: attachment size
Try to change this limits
Code: Select all
upload_max_filesize =
post_max_size =
Re: attachment size
In the php.ini?
I edited the /etc/php5/apache2/php.ini
i ve upload_max_filesize = 64M
post_max_size = 64M
when I send an attachment in roundcube, I have attached max 5mb
I edited the /etc/php5/apache2/php.ini
i ve upload_max_filesize = 64M
post_max_size = 64M
when I send an attachment in roundcube, I have attached max 5mb
Re: attachment size
What OS on your server ?
Re: attachment size
Ubuntu 12.04
Re: attachment size
I think your problem in htaccess from default config. Develover-Roundcube-guys think 5 megabyte is enough. And it's smart may be to think that way ;-)
Check this out -> /etc/roundcube/htaccess
120M = 120Megabyte -- it's just example, you can change this.
In /etc/php5/apache2/php.ini check again those:
Check this out -> /etc/roundcube/htaccess
Code: Select all
php_value upload_max_filesize 120M
php_value post_max_size 120M
php_value memory_limit 512M
In /etc/php5/apache2/php.ini check again those:
Code: Select all
post_max_size = 64M
upload_max_filesize = 64M
max_input_time = 180
memory_limit = 128M
max_execution_time = 180
Re: attachment size
Thank you so much for everything!
Re: attachment size
You're welcome, glad to help ;-)Sanity wrote:Thank you so much for everything!