From: moodler Date: Tue, 28 Jan 2003 02:27:18 +0000 (+0000) Subject: Changed some settings from "1" to "On" X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0d3cbf4cca01fc08ad14649e8feb03d24228b913;p=moodle.git Changed some settings from "1" to "On" --- diff --git a/lang/en/docs/install.html b/lang/en/docs/install.html index 63b7dbd17f..c74c1a4888 100644 --- a/lang/en/docs/install.html +++ b/lang/en/docs/install.html @@ -1,6 +1,7 @@ Moodle Docs: Installation + @@ -169,10 +170,10 @@ have things set differently. These are defined in PHP's configuration file (usually called php.ini):

-
file_uploads = 1
-magic_quotes_gpc = 1
-short_open_tag = 1
-session.auto_start = 0
+
file_uploads = On
+magic_quotes_gpc = On
+short_open_tag = On
+session.auto_start = Off
 

If you don't have access to httpd.conf or php.ini on your server, or you @@ -184,10 +185,10 @@ session.auto_start = 0 This only works on Apache servers and only when Overrides have been allowed.

 DirectoryIndex index.php index.html index.htm
-php_value magic_quotes_gpc 1
-php_value file_uploads 1
-php_value short_open_tag 1
-php_value session.auto_start 0
+php_value magic_quotes_gpc On +php_value file_uploads On +php_value short_open_tag On +php_value session.auto_start Off

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

 php_value upload_max_filesize 2M