From 0defdb39c2df636ce2cf2e17d2882042097dc4f1 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Wed, 2 Nov 2011 04:30:28 -0400 Subject: [PATCH] Set php's max file upload size to 20MB Default on debian seems to be 2MB?! --- .htaccess | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.htaccess b/.htaccess index 69c8641..832b4a5 100644 --- a/.htaccess +++ b/.htaccess @@ -1,5 +1,5 @@ -# php_value post_max_size 205M -# php_value upload_max_filesize 200M +php_value post_max_size 25M +php_value upload_max_filesize 20M php_flag register_globals off php_flag magic_quotes_gpc off Options -MultiViews -- 1.7.10.4