openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 4c5056de3e82cdaa221e879eb95e5c5b570fc893
parent 76ddb483ca59715dc4b9f9fa3ca63f7b70722e42
Author: dankert <devnull@localhost>
Date:   Sat, 24 Apr 2004 19:09:06 +0200

magic-quotes off

Diffstat:
doc/examples/htaccess/php-settings-example.htaccess | 7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/doc/examples/htaccess/php-settings-example.htaccess b/doc/examples/htaccess/php-settings-example.htaccess @@ -3,6 +3,11 @@ # Control file for use with the Apache Webserver # Here we are doing some useful settings # +# Make sure to have "AllowOverride Options" or "AllowOverride All" set in httpd.conf +# to make this possible. +# If you get an "Internal Server Error" you do not have this setting, in this case +# rename this file or push it out of the way. +# # $Id$ # No need for register globals :-) @@ -27,7 +32,7 @@ php_flag session.use_cookies off php_flag session.use_trans_sid on php_value url_rewriter.tags "a=href,link=href,frame=src,img=src,form=fakeentry" -php_flag magic_quotes_gpc on +php_flag magic_quotes_gpc off php_flag magic_quotes_runtime off # Set this higher if you get errors like "max execution time reached"