Roundcube Community Forum

Release Support => Release Discussion => Topic started by: bswinnerton on October 02, 2007, 09:47:47 PM

Title: Change upload size
Post by: bswinnerton on October 02, 2007, 09:47:47 PM
How can i change the default 2mb file upload size?

Is it a PHP thing or is there actually a config file i can change?

Thanks.
Title: Re: Change upload size
Post by: SKaero on October 02, 2007, 10:00:53 PM
In the .htaccess change:
Code: [Select]
php_value upload_max_filesize 2M
Title: Re: Change upload size
Post by: bswinnerton on October 02, 2007, 10:04:41 PM
where is this .htaccess stored?

The only one i have doesn't even have that.
Title: Re: Change upload size
Post by: SKaero on October 02, 2007, 10:46:38 PM
Ok some severs hide the .htaccess its in the root of the roundcube folder just make a new .htaccess and put in this code:
Code: [Select]
# AddDefaultCharset UTF-8
php_flag display_errors Off
php_flag log_errors On
php_value error_log logs/errors
php_value upload_max_filesize 2M

<FilesMatch &quot;(\.inc|\~)$|^_&quot;>
 Order allow,deny
 Deny from all
</FilesMatch>

Order deny,allow
Allow from all

Change the "php_value   upload_max_filesize   2M" line for the upload limit
Title: Re: Change upload size
Post by: bswinnerton on October 03, 2007, 08:21:21 AM
Wohoo! That worked. Now I was just wondering, when you get the error prompt, will it say you've hit the 2mb limit, or will it say 5 now?

Thanks.
Title: Re: Change upload size
Post by: SKaero on October 03, 2007, 05:13:04 PM
Yes The error message well change.