Roundcube Community Forum

 

Change upload size

Started by bswinnerton, October 02, 2007, 09:47:47 PM

Previous topic - Next topic

bswinnerton

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.

SKaero

In the .htaccess change:
php_value upload_max_filesize 2M

bswinnerton

where is this .htaccess stored?

The only one i have doesn't even have that.

SKaero

Ok some severs hide the .htaccess its in the root of the roundcube folder just make a new .htaccess and put in this code:
# 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

bswinnerton

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.

SKaero

Yes The error message well change.