spellcheck

This commit is contained in:
Miles Lott 2004-11-22 03:10:45 +00:00
parent fc21d2f9ff
commit d649fc878b

View File

@ -3,7 +3,7 @@
-------------------------------
This is a suggested php.ini config for running eGroupWare on php4. It
is roughly in the order of the paramters in you php.ini file. These recommendations
is roughly in the order of the paramters in your php.ini file. These recommendations
are based on feedback from users and developers.
RESOURCES
@ -15,24 +15,24 @@ memory_limit = 20M
At least this value should help with more complex operations.
ERRORS
error_reporting = E_ALL ~E_NOTICE
error_reporting = E_ALL & ~E_NOTICE
Having this set to E_ALL, will cause all types of problems if left to
display on the screen. E_NOTICE are no-fatal errors such as undefined
display on the screen. E_NOTICE are non-fatal errors such as undefined
variable etc. Having this set to E_ALL only will dramatically increase
the size of your log files if you log erros.
the size of your log files if you log errors.
display_errors = Off
This can cause header output problems if left on. They are better stored in you
log file and that way you have a record of any problems.
This can cause header output problems if left on. They are better stored in
your log file and that way you have a record of any problems.
log_errors = On
See above.
DATABASES
[dbms].allow_persistent = On
This must be set to on if you want to use persistent databse
connections. Change [dbms] to what ever db you want to use ie mysql or
pgsql
This must be set to on if you want to use persistent database
connections. Change [dbms] to whatever db you want to use, i.e. mysql or
pgsql.
FILE UPLOADING
file_uploads = On
@ -51,7 +51,7 @@ intend to use php4 sessions.
session.gc_maxlifetime = 1440
Set this to what you want to be your session time out limit. It is in
second so set it to 3660 if you want it to one hour ... the default is
seconds, so set it to 3660 if you want it to one hour ... the default is
24mins, which is generally too short.
REGISTER GLOBALS