From ccf28b736278df9a2f079487662a601fc396f5e2 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 9 Sep 2003 16:33:56 +0000 Subject: [PATCH] short_tags no longer necessary --- lang/en/docs/install.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lang/en/docs/install.html b/lang/en/docs/install.html index f823571758..dc387c956e 100644 --- a/lang/en/docs/install.html +++ b/lang/en/docs/install.html @@ -193,10 +193,9 @@ file (usually called php.ini):

-
magic_quotes_gpc = 1
-magic_quotes_runtime = 0
+
magic_quotes_gpc = 1    (preferred but not necessary)
+magic_quotes_runtime = 0    (necessary)
 file_uploads = 1
-short_open_tag = 1
 session.auto_start = 0
 session.bug_compat_warn = 0
 
@@ -217,7 +216,6 @@ DirectoryIndex index.php index.html index.htm php_flag magic_quotes_gpc 1 php_flag magic_quotes_runtime 0 php_flag file_uploads 1 -php_flag short_open_tag 1 php_flag session.auto_start 0 php_flag session.bug_compat_warn 0

You can also do things like define the maximum size for uploaded files: -- 2.39.5