From d4273b8990d56394623e713a0696ec27545bccc7 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 19 Sep 2008 03:22:24 -0400
Subject: [PATCH] - support variables of type 'cookie' (for feature use)

---
 .htaccess |   21 ++++++++++++++++-----
 1 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/.htaccess b/.htaccess
index c0ab7f0..9e3667b 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,9 +1,20 @@
-php_flag   display_errors 	On
-php_value  session.gc_maxlifetime  21600
-php_value  session.gc_divisor   500
-php_value  upload_max_filesize  2m
+# AddDefaultCharset	UTF-8
+AddType text/x-component .htc
 
-<FilesMatch "(\.inc|\~)$|^_">
+<IfModule mod_php5.c>
+  php_flag	display_errors	Off
+  php_flag	log_errors	On
+  php_value	error_log	logs/errors
+  php_value	upload_max_filesize	5M
+  php_value	post_max_size	6M
+  php_value	memory_limit	64M
+  php_value	session.auto_start	0
+  php_value	zlib.output_compression	0
+  php_value	magic_quotes_gpc	0
+  php_value	zend.ze1_compatibility_mode	0
+</IfModule>
+
+<FilesMatch "(\.inc|\~)$">
   Order allow,deny
   Deny from all
 </FilesMatch>

--
Gitblit v1.9.1