I'm having a problem with attachment files bigger then 1Mb.
open it.
My php.ini is configured to send 10Mb attachments and I have modified the htaccess on roundcube root dir to 10Mb too. Version 0.1 stable.
Does anyone can give a hint about what is hapening?
Thanks a lot.
Kico Zaninetti carpe diem
I've noticed that the problem is on the file program/lib/Mail/mimeDecode.php I think, its the function _decode() but i'm not sure what can be happening.
On 3/20/06, Kico Zaninetti kico@nucleolivre.com.br wrote:
I'm having a problem with attachment files bigger then 1Mb.
- When I try to send more than 1Mb, I got a blank screen.
- When I receive a mail with more than 1Mb attachment file, I just can't
open it.
My php.ini is configured to send 10Mb attachments and I have modified the .htaccess on roundcube root dir to 10Mb too. Version 0.1 stable.
Does anyone can give a hint about what is hapening?
Thanks a lot.
Kico Zaninetti carpe diem
Greetings,
I have had a simular issue with a different PHP script and I have found that if i alter the max_execution_time to something greater than the default 30 seconds it works fine, you may want to increment this to say quater/half hour or so.
Hope that helps,
Mark B.
----- Original Message ----- From: Kico Zaninetti To: users@lists.roundcube.net Sent: Monday, March 20, 2006 9:46 PM Subject: Attachment problem
I'm having a problem with attachment files bigger then 1Mb.
My php.ini is configured to send 10Mb attachments and I have modified the .htaccess on roundcube root dir to 10Mb too. Version 0.1 stable.
Does anyone can give a hint about what is hapening?
Thanks a lot.
Kico Zaninetti carpe diem
Kico Zaninetti wrote:
I'm having a problem with attachment files bigger then 1Mb.
- When I try to send more than 1Mb, I got a blank screen.
- When I receive a mail with more than 1Mb attachment file, I just
can't open it.
My php.ini is configured to send 10Mb attachments and I have modified the .htaccess on roundcube root dir to 10Mb too. Version 0.1 stable.
load the whole message into ram which can exhaust the configured memory limit. You can adjust that as well in .htaccess: php_value memory_limit 10M
Does anyone can give a hint about what is hapening?
Thanks a lot.
Kico Zaninetti carpe diem
~Thomas