openrat-cms

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

commit 1a50e5dd7db351b45c20c46a1200a78cf1ab0683
parent 237968f1c92156461ea7ef8d6a8d377cef6d5f4d
Author: dankert <devnull@localhost>
Date:   Sun,  4 Apr 2004 01:11:15 +0200

*** empty log message ***

Diffstat:
doc/examples/htaccess/php-settings-example.htaccess | 16+++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/doc/examples/htaccess/php-settings-example.htaccess b/doc/examples/htaccess/php-settings-example.htaccess @@ -23,8 +23,9 @@ php_value session.cookie_lifetime 0 # on = cookies php_flag session.use_cookies off -# No need for Transient Urls, because the application can to this +# Transient Urls is needed for url-Rewriting 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_runtime off @@ -32,6 +33,15 @@ php_flag magic_quotes_runtime off # Set this higher if you get errors like "max execution time reached" php_value max_execution_time 180 +# Show PHP Error Messages +# 1 E_ERROR +# 2 E_WARNING +# 4 E_PARSE +# 8 E_NOTICE +# 16 E_CORE_ERROR +# 32 E_CORE_WARNING +php_value error_reporting 2047 + # This limits the file sizes php_value memory_limit 32M @@ -40,4 +50,4 @@ php_flag short_open_tag off php_flag asp_tags off # Try this, its faster on slow connections -php_flag zlib.output_compression on- \ No newline at end of file +php_flag zlib.output_compression off+ \ No newline at end of file