|
|
Capitolo 4. ConfigurationThe configuration file
The configuration file (called php3.ini in
PHP 3.0, and simply php.ini as of PHP 4.0)
is read when PHP starts up. For the server module versions of PHP,
this happens only once when the web server is started. For the
CGI and CLI version, it happens on
every invocation.
The default location of php.ini is a compile time option (see the FAQ entry), but can be changed
for the CGI and CLI version with the
-c command line switch, see the chapter about using
PHP from the command line. You can also use the
environment variable PHPRC for an additionaly path to
search for php.ini.
Not every PHP directive is documented below. For a list of all directives,
please read your well commented php.ini file. You may want to view the
latest from CVS.
Nota:
The default value for the PHP directive
register_globals changed from
on to off in PHP
.
Esempio 4-1. php.ini example ; any text on a line after an unquoted semicolon (;) is ignored
[php] ; section markers (text within square brackets) are also ignored
; Boolean values can be set to either:
; true, on, yes
; or false, off, no, none
register_globals = off
magic_quotes_gpc = yes
; you can enclose strings in double-quotes
include_path = ".:/usr/local/lib/php"
; backslashes are treated the same as any other character
include_path = ".;c:\php\lib" |
|
When using PHP as an Apache module, you can also change the
configuration settings using directives in Apache configuration
files and .htaccess files (You will need "AllowOverride
Options" or "AllowOverride All" privileges)
With PHP 3.0, there are Apache directives that correspond to each
configuration setting in the php3.ini name,
except the name is prefixed by "php3_".
With PHP 4.0, there are several Apache directives that allow you
to change the PHP configuration from within the Apache
configuration file itself.
- php_value
name
value
This sets the value of the specified variable. - php_flag
name
on|off
This is used to set a Boolean configuration option. - php_admin_value
name
value
This sets the value of the specified variable. "Admin"
configuration settings can only be set from within the
main Apache configuration files, and not from .htaccess
files. - php_admin_flag
name
on|off
This is used to set a Boolean configuration option.
Esempio 4-2. Apache configuration example <IfModule mod_php4.c>
php_value include_path ".:/usr/local/lib/php"
php_admin_flag safe_mode on
</IfModule>
<IfModule mod_php3.c>
php3_include_path ".:/usr/local/lib/php"
php3_safe_mode on
</IfModule> |
|
Nota:
PHP constants do not exist outside of PHP. For example, in
httpd.conf do not use PHP constants
such as E_ALL or E_NOTICE
to set the error_reporting
directive as they will have no meaning and will evaluate to
0. Use the associated bitmask values instead.
These constants can be used in php.ini
You can view the settings of the configuration values in
the output of phpinfo(). You can also
access the values of individual configuration settings using
ini_get() or get_cfg_var().
General Configuration Directives
- allow_url_fopen
boolean
This option enables the URL-aware fopen wrappers that enable
accessing URL object like files. Default wrappers are provided for
the access of remote files
using the ftp or http protocol, some extensions like zlib may
register additional wrappers.
Nota:
This option was introduced immediately after the release of version
4.0.3. For versions up to and including 4.0.3 you can only disable this
feature at compile time by using the configuration switch
--disable-url-fopen-wrapper.
- asp_tags
boolean
Enables the use of ASP-like <% %> tags in addition to
the usual <?php ?> tags. This includes the
variable-value printing shorthand of <%= $value %>. For
more information, see Escaping from HTML.
Nota:
Support for ASP-style tags was added in 3.0.4.
- auto_append_file
string
Specifies the name of a file that is automatically parsed
after the main file. The file is included as if it was
called with the include() function, so
include_path is used.
The special value none
disables auto-appending.
Nota:
If the script is terminated with exit(),
auto-append will not occur.
- auto_prepend_file
string
Specifies the name of a file that is automatically parsed
before the main file. The file is included as if it was
called with the include() function, so
include_path is used.
The special value none
disables auto-prepending.
- disable_functions
string
This directive allows you to disable certain functions for
security reasons. It takes
on a comma-dilimited list of function names. disable_functions
is not affected by Safe Mode.
This directive must be set in php.ini For example, you
cannot set this in httpd.conf.
- display_errors
boolean
This determines whether errors should be printed to the screen
as part of the HTML output or not.
- doc_root
string
PHP's "root directory" on the server. Only used if
non-empty. If PHP is configured with safe mode, no files outside
this directory are served.
- engine
boolean
This directive is really only useful in the Apache module
version of PHP. It is used by sites that would like to turn
PHP parsing on and off on a per-directory or per-virtual
server basis. By putting engine
off in the appropriate places in the
httpd.conf file, PHP can be enabled or
disabled.
- error_log
string
Name of file where script errors should be logged. If the
special value syslog is used, the errors
are sent to the system logger instead. On UNIX, this means
syslog(3) and on Windows NT it means the event log. The
system logger is not supported on Windows 95.
- error_reporting
integer
Set the error reporting level. The parameter is either an integer
representing a bit field, or named constants. The error_reporting
levels and constants are described in the
Error Handling section
of the manual, and in php.ini. To set at runtime, use the
error_reporting() function. See also the
display_errors directive.
The default value does not show E_NOTICE level
errors. You may want to show them during development.
- file_uploads
boolean
Whether or not to allow HTTP
file uploads. See also
the
upload_max_filesize,
upload_tmp_dir, and
post_max_size directives.
- html_errors
boolean
Turn off HTML tags in error messages. The new format for html errors produces
clickable messages that direct the user to a page describing the error or
function in causing the error. These references are affected by
docref_root and
docref_ext.
- docref_root
string
The new error format contains a reference to a page describing the error or
function in causing the error. In case of manual pages you can download the
manual in your language and set this ini directive to the url of your local
copy. If your local copy of the manual can be reached by '/manual/' you can
simply use docref_root=/manual/. Additional you have
to set docref_ext to match the fileextensions of your copy
docref_ext=.html. It is possible to use external
references. For example you can use
docref_root=http://manual/en/.
Nota:
The value of docref_root must end with a slash '/'.
- docref_ext
string
See docref_root.
Nota:
The value of docref_ext must begin with a dot '.'.
- open_basedir
string
Limit the files that can be opened by PHP to the specified
directory-tree.
When a script tries to open a file with,
for example, fopen or gzopen, the location of the file is
checked. When the file is outside the specified directory-tree,
PHP will refuse to open it. All symbolic links are resolved,
so it's not possible to avoid this restriction with a symlink.
The special value .
indicates that the directory in which the script is stored will
be used as base-directory.
Under Windows, separate the directories with a semicolon. On all
other systems, separate the directories with a colon. As an Apache
module, open_basedir paths from parent directories are now
automatically inherited.
The restriction specified with open_basedir is actually a
prefix, not a directory name. This means that "open_basedir =
/dir/incl" also allows access to "/dir/include" and
"/dir/incls" if they exist. When you want to restrict access
to only the specified directory, end with a slash. For example:
"open_basedir = /dir/incl/"
Nota:
Support for multiple directories was added in 3.0.7.
The default is to allow all files to be opened.
- gpc_order
string
Set the order of GET/POST/COOKIE variable parsing. The
default setting of this directive is "GPC". Setting this to
"GP", for example, will cause PHP to completely ignore cookies
and to overwrite any GET method variables with POST-method
variables of the same name.
Note, that this option is not available in PHP 4.
Use variables_order
instead.
- variables_order
string
Set the order of the EGPCS (Environment, GET, POST, Cookie,
Server) variable parsing. The default setting of this
directive is "EGPCS". Setting this to "GP", for example,
will cause PHP to completely ignore environment variables,
cookies and server variables, and to overwrite any GET
method variables with POST-method variables of the same name.
See also register_globals.
- ignore_user_abort
boolean
TRUE by default. If changed to FALSE scripts will be terminated
as soon as they try to output something after a client has aborted
their connection.
See also ignore_user_abort().
- implicit_flush
boolean
FALSE by default. Changing this to TRUE tells PHP to tell the
output layer to flush itself automatically after every output block.
This is equivalent to calling the PHP function
flush() after each and every call to
print() or echo() and each and
every HTML block.
When using PHP within an web environment, turning
this option on has serious performance implications and is generally
recommended for debugging purposes only. This value defaults to
TRUE when operating under the CLI SAPI.
- include_path
string
Specifies a list of directories where the
require(), include()
and fopen_with_path() functions look for
files. The format is like the system's PATH
environment variable: a list of directories separated with a
colon in UNIX or semicolon in Windows.
Esempio 4-3. UNIX include_path include_path=.:/home/httpd/php-lib |
|
Esempio 4-4. Windows include_path include_path=".;c:\www\phplib" |
|
The default value for this directive is .
(only the current directory).- log_errors
boolean
Tells whether script error messages should be logged to the
server's error log. This option is thus server-specific. - magic_quotes_gpc
boolean
Sets the magic_quotes state for GPC (Get/Post/Cookie)
operations. When magic_quotes are on, all ' (single-quote),
" (double quote), \ (backslash) and NUL's are escaped
with a backslash automatically. If magic_quotes_sybase is
also on, a single-quote is escaped with a single-quote
instead of a backslash.
- magic_quotes_runtime
boolean
If magic_quotes_runtime is enabled,
most functions that return data from any sort of external
source including databases and text files will have quotes
escaped with a backslash. If
magic_quotes_sybase is also on, a
single-quote is escaped with a single-quote instead of a
backslash.
- magic_quotes_sybase
boolean
If magic_quotes_sybase is also on, a
single-quote is escaped with a single-quote instead of a
backslash if magic_quotes_gpc or
magic_quotes_runtime is enabled.
- max_execution_time
integer
This sets the maximum time in seconds a script is allowed to
run before it is terminated by the parser. This helps
prevent poorly written scripts from tying up the server. The
default setting is 30.
The maximum execution time is not affected by system calls,
the sleep() function, etc. Please see the
set_time_limit() function for more
details.
- memory_limit
integer
This sets the maximum amount of memory in bytes that a script
is allowed to allocate. This helps prevent poorly written
scripts for eating up all available memory on a server.
- precision
integer
The number of significant digits displayed in floating point numbers.
- register_argc_argv
boolean
Tells PHP whether to declare the argv & argc variables
(that would contain the GET information).
See also command line.
Also, this directive became available in PHP 4.0.0 and
was always "on" before that.
- post_max_size
integer
Sets max size of post data allowed. This setting also affects
file upload. To upload large files, this value must be larger
than upload_max_filesize.
If memory limit is enabled by configure script, memory_limit also affects
file uploading. Generally speaking, memory_limit should be
larger than post_max_size.
- register_globals
boolean
Tells whether or not to register the EGPCS (Environment, GET,
POST, Cookie, Server) variables as global variables. For example;
if register_globals = on, the url
http://www.example.com/test.php?id=3 will produce
$id. Or, $DOCUMENT_ROOT from
$_SERVER['DOCUMENT_ROOT']. You may want to turn
this off if you don't want to clutter your scripts' global scope with
user data. As of PHP ,
this directive defaults to off. It's preferred to
go through PHP Predefined Variables
instead, such as the
superglobals:
$_ENV, $_GET,
$_POST, $_COOKIE, and
$_SERVER. Please read the security chapter on
Using register_globals
for related information.
Please note that register_globals
cannot be set at runtime (ini_set()). Although, you can
use .htaccess if your host allows it as described
above. An example .htaccess entry:
php_flag register_globals on.
- short_open_tag
boolean
Tells whether the short form (<? ?>)
of PHP's open tag should be allowed. If you want to use PHP in
combination with XML, you can disable this option in order to
use <?xml ?> inline. Otherwise, you
can print it with PHP, for example: <?php echo '<?xml
version="1.0"'; ?>. Also if disabled, you must use the
long form of the PHP open tag (<?php ?>).
Nota:
This directive also affects the shorthand <?=,
which is identical to <? echo. Use of this
shortcut requires short_open_tag
to be on.
- sql.safe_mode
boolean
- track_errors
boolean
If enabled, the last error message will always be present in the
global variable $php_errormsg. - track_vars
boolean
If enabled, then Environment, GET, POST, Cookie, and Server
variables can be found in the global associative arrays
$_ENV,
$_GET,
$_POST,
$_COOKIE, and
$_SERVER.
Note that as of PHP 4.0.3, track_vars is always turned on.
- upload_tmp_dir
string
The temporary directory used for storing files when doing
file upload. Must be writable by whatever user PHP is
running as.
- upload_max_filesize
integer
The maximum size of an uploaded file. The value is
in bytes.
- user_dir
string
The base name of the directory used on a user's home
directory for PHP files, for example
public_html.
- warn_plus_overloading
boolean
If enabled, this option makes PHP output a warning when the
plus (+) operator is used on strings.
This is to make it easier to find scripts that need to be
rewritten to using the string concatenator instead
(.).
Safe Mode Configuration Directives- safe_mode
boolean
Whether to enable PHP's safe mode. Read the
Security and
Safe Mode chapters for
more information.
- safe_mode_gid
boolean
Whether to use UID (FALSE) or
GID (TRUE) checking upon file
access. See Safe Mode for
more information.
- safe_mode_exec_dir
string
If PHP is used in safe mode, system() and
the other functions executing system programs refuse to start
programs that are not in this directory.
- safe_mode_include_dir
string
UID/GID checks are bypassed when
including files from this directory and its subdirectories (directory
must also be in include_path
or full path must including).
As of PHP 4.2.0, this directive can take on a semi-colon separated
path in a similar fashion to the include_path directive, rather than
just a single directory.
Debugger Configuration Directives- debugger.host
string
DNS name or IP address of host used by the debugger.
- debugger.port
string
Port number used by the debugger.
- debugger.enabled
boolean
Whether the debugger is enabled.
Extension Loading Directives- enable_dl
boolean
This directive is really only useful in the Apache module
version of PHP. You can turn dynamic loading of PHP
extensions with dl() on and off per
virtual server or per directory.
The main reason for turning dynamic loading off is
security. With dynamic loading, it's possible to ignore all
the safe_mode and open_basedir restrictions.
The default is to allow dynamic loading, except when using
safe-mode. In safe-mode, it's always imposible to use
dl().
- extension_dir
string
In what directory PHP should look for dynamically loadable
extensions.
- extension
string
Which dynamically loadable extensions to load when PHP starts
up.
mSQL Configuration Directives- msql.allow_persistent
boolean
Whether to allow persistent mSQL connections.
- msql.max_persistent
integer
The maximum number of persistent mSQL connections per process.
- msql.max_links
integer
The maximum number of mSQL connections per process, including
persistent connections.
Postgres Configuration Directives- pgsql.allow_persistent
boolean
Whether to allow persistent Postgres connections.
- pgsql.max_persistent
integer
The maximum number of persistent Postgres connections per
process.
- pgsql.max_links
integer
The maximum number of Postgres connections per process,
including persistent connections.
SESAM Configuration Directives- sesam_oml
string
Name of BS2000 PLAM library containing the loadable SESAM
driver modules. Required for using SESAM functions. The
BS2000 PLAM library must be set ACCESS=READ,SHARE=YES
because it must be readable by the apache server's user id.
- sesam_configfile
string
Name of SESAM application configuration file. Required for
using SESAM functions. The BS2000 file must be readable by
the apache server's user id.
The application configuration file will usually contain a
configuration like (see SESAM
reference manual):
- sesam_messagecatalog
string
Name of SESAM message catalog file. In most cases, this
directive is not neccessary. Only if the SESAM message file
is not installed in the system's BS2000 message file table,
it can be set with this directive.
The message catalog must be set ACCESS=READ,SHARE=YES because
it must be readable by the apache server's user id.
Sybase Configuration Directives- sybase.allow_persistent
boolean
Whether to allow persistent Sybase connections.
- sybase.max_persistent
integer
The maximum number of persistent Sybase connections per
process.
- sybase.max_links
integer
The maximum number of Sybase connections per process,
including persistent connections.
Sybase-CT Configuration Directives- sybct.allow_persistent
boolean
Whether to allow persistent Sybase-CT connections.
The default is on.
- sybct.max_persistent
integer
The maximum number of persistent Sybase-CT connections per
process. The default is -1 meaning unlimited.
- sybct.max_links
integer
The maximum number of Sybase-CT connections per process,
including persistent connections. The default is -1 meaning
unlimited.
- sybct.min_server_severity
integer
Server messages with severity greater than or equal to
sybct.min_server_severity will be reported as warnings. This
value can also be set from a script by calling
sybase_min_server_severity(). The default
is 10 which reports errors of information severity or greater.
- sybct.min_client_severity
integer
Client library messages with severity greater than or equal to
sybct.min_client_severity will be reported as warnings. This
value can also be set from a script by calling
sybase_min_client_severity(). The default
is 10 which effectively disables reporting.
- sybct.login_timeout
integer
The maximum time in seconds to wait for a connection attempt
to succeed before returning failure. Note that if
max_execution_time has been exceeded when a connection attempt
times out, your script will be terminated before it can take
action on failure. The default is one minute.
- sybct.timeout
integer
The maximum time in seconds to wait for a select_db or query
operation to succeed before returning failure. Note that if
max_execution_time has been exceeded when am operation times
out, your script will be terminated before it can take action
on failure. The default is no limit.
- sybct.hostname
string
The name of the host you claim to be connecting from, for
display by sp_who. The default is none.
Informix Configuration Directives- ifx.allow_persistent
boolean
Whether to allow persistent Informix connections.
- ifx.max_persistent
integer
The maximum number of persistent Informix connections per
process.
- ifx.max_links
integer
The maximum number of Informix connections per process, including
persistent connections.
- ifx.default_host
string
The default host to connect to when no host is specified
in ifx_connect() or
ifx_pconnect().
- ifx.default_user
string
The default user id to use when none is specified
in ifx_connect() or
ifx_pconnect().
- ifx.default_password
string
The default password to use when none is specified
in ifx_connect() or
ifx_pconnect().
- ifx.blobinfile
boolean
Set to TRUE if you want to return blob columns
in a file, FALSE if you want them in memory. You can
override the setting at runtime
with ifx_blobinfile_mode().
- ifx.textasvarchar
boolean
Set to TRUE if you want to return TEXT columns
as normal strings in select statements,
FALSE if you want to use blob id parameters. You can
override the setting at runtime with
ifx_textasvarchar().
- ifx.byteasvarchar
boolean
Set to TRUE if you want to return BYTE columns
as normal strings in select queries,
FALSE if you want to use blob id parameters. You can
override the setting at runtime with
ifx_textasvarchar().
- ifx.charasvarchar
boolean
Set to TRUE if you want to trim trailing spaces
from CHAR columns when fetching them.
- ifx.nullformat
boolean
Set to TRUE if you want to return NULL columns
as the literal string "NULL", FALSE if you want
them returned as the empty string "". You can
override this setting at runtime with
ifx_nullformat().
BC Math Configuration Directives- bcmath.scale
integer
Number of decimal digits for all bcmath functions.
Browser Capability Configuration DirectivesMulti-Byte String Configuration Directives- mbstring.internal_encoding
string
mbstring.internal_encoding defines default
internal character encoding.
- mbstring.http_input
string
mbstring.http_input defines default
HTTP input character encoding.
- mbstring.http_output
string
mbstring.http_output defines default
HTTP output character encoding.
- mbstring.detect_order
string
mbstring.detect_order defines default
character encoding detection order.
- mbstring.substitute_character
string
mbstring.substitute_character defines
character to substitute for invalid character codes.
Exif Configuration Directives
Exif supports automatically conversion for Unicode and JIS
character encodings of user comments when module mbstring
is available. This is done by first decoding the comment
using the specified characterset. The result is then encoded
with another characterset which should match your
HTTP output.
- exif.encode_unicode
string
exif.encode_unicode defines the
characterset UNICODE user comments are handled.
This defaults to ISO-8859-15 which should work for
most non asian countries. The setting can be empty
or must be an encoding supported by mbstring. If it
is empty the current internal encoding of mbstring is
used.
- exif.decode_unicode_motorola
string
exif.decode_unicode_motorola defines
the image internal characterset for Unicode encoded user
comments if image is in motorola byte order (big-endian).
This setting cannot be empty but you can specify a list
of encodings supported by mbstring. The default is UCS-2BE.
- exif.decode_unicode_intel
string
exif.decode_unicode_intel defines
the image internal characterset for Unicode encoded user
comments if image is in intel byte order (little-endian).
This setting cannot be empty but you can specify a list
of encodings supported by mbstring. The default is UCS-2LE.
- exif.encode_jis
string
exif.encode_jis defines the
characterset JIS user comments are handled.
This defaults to an empty value which forces
the functions to use the current internal encoding
of mbstring.
- exif.decode_jis_motorola
string
exif.decode_jis_motorola defines
the image internal characterset for JIS encoded user
comments if image is in motorola byte order (big-endian).
This setting cannot be empty but you can specify a list
of encodings supported by mbstring. The default is JIS.
- exif.decode_jis_intel
string
exif.decode_jis_intel defines
the image internal characterset for JIS encoded user
comments if image is in intel byte order (little-endian).
This setting cannot be empty but you can specify a list
of encodings supported by mbstring. The default is JIS.
User Contributed Notes Configuration |
|
[email protected]
11-Feb-2001 07:40 |
|
Finally figured this out: if you are using server side includes (SSI) with
Apache, and have added a line
AddHandler server-parsed
.html
in your httpd.conf file so that .html files can use SSI,
this setting will prevent
AddType application/x-httpd-php .php
.html
from working (.php will work, but .html won't). From what
I've figured out so far, you need to dump SSI support for .html files if
you want to get PHP to work with .html files. No loss since PHP
duplicates the functionality, I think. (Of course be aware that enabling
PHP parsing of .html files will make performance suffer somewhat,
especially if most of your files do not need PHP.)
Another thing
I've learned is that even with all this talk of the php.ini files, they
are not even required unless you need to make adjustments. If there is no
php.ini file, the defaults will be used.
|
|
[email protected]
29-Nov-2001 05:08 |
|
If you want to specify the location of your php.ini file at runtime, set
the environment variable PHPRC equal to the directory in which php.ini is
located. Note that the filename php.ini cannot be changed; just the
directory in which it's stored.
|
|
[email protected]
19-Dec-2001 06:44 |
|
[Editors note: Yes, and PHP follows that difference.]
the
difference between using a ';' and a ':' in the paths more
likely has
to do with the filesystem/OS, than a specific design
feature of
PHP:
on a windoze box:
C:\WINDOWS>echo
%PATH%
C:\WINDOWS;C:\WINDOWS\COMMAND;...
on a *NIX
box:
[rhornsby@x rhornsby]$ echo $PATH
/usr/bin:/bin:...
|
|
[email protected]
05-Mar-2002 07:57 |
|
Notes from Installing and Configuring PHP 4.0.6 on a Redhat 7.1/Apache
1.3.22 platform with virtual domains
Downloaded
php-4.0.6-9.7.1.i386.rpm from Redhat.com
Ran rpm from virtual
terminal (KDE's package manager wouldn't work right). Included rpm option
to --force installation over the previous PHP version that came with
Redhat distribution (but had never been enabled):
rpm -i
php-4.0.6-9.7.1.i386.rpm --force --includedocs
Edited httpd.conf
to add (or uncomment) the following lines:
In Section 1 - Global
environment:
LoadModule php4_module modules/libphp4.so
AddModule mod_php4.c
In Section 2 - Main server
configuration:
AddType application/x-httpd-php .php
<IfModule mod_php4.c> php_value include_path
".:/usr/lib/php" php_flag safe_mode on
</IfModule>
(Note that, in the AddType directive above, the
correct term is x-httpd-php, not x-httpd-php4!)
Restarted httpd
(service httpd restart).
PHP appears to be enabled for all my
virtual domains.
|
|
[email protected]
16-May-2002 04:35 |
|
Unlike Apache logs, the error_log is opened after the server is started, so
it must have the permissions the server runs as (usually nobody)
|
|
[email protected]
14-Jun-2002 10:17 |
|
[[[Editors note:
magic_quotes_gpc being on does save a lot of support
questions. Everyone is free to read the documentation (php.ini and manual)
and plan accordingly. In fact, PHP comes with two php.ini files, one is
called php.ini-recommended and it has magic_quotes_gpc off. See also:
stripslashes(), get_magic_quotes_gpc(), and
.htaccess.
]]]
Beware, magic_quotes_gpc is evil
!
The option may look very tempting at the first glance. However
there are some caveats:
1. Most parameters do not go to a
database.
In a web application most form field are used internally
without the need to store them in a database. Magic quotes cause troubles
in these cases.
Moreover the data passed to the application is not the
data entered by the user if it was processed by magic quotes. This is
undesireable.
2. Impedes code reuse.
If you feed data from
either form parameters or internal data sources into the same function
then your function must know if the data was processed by magic quotes or
not.
3. Bad surprises at deployment time and code
portability.
If you do not carefully check if this parameter is set on
your development and production system you can run into troubles.
Especially if you can not change the settings on one system (because the
hoster does not let you).
4. Behaviour can not be controlled at
script runtime.
The ini_set does not help in this case even though the
parameter can be modified at runtime the behaviour does not change.
Consequently you are bound to the php.ini settings (which may be not under
your control).
I therefore request that this option be removed
from future versions of PHP and the default behaviour should be FALSE.
|
|
[email protected]
09-Jul-2002 03:07 |
|
For an up-to-date list/description of configuration options, read a well
commented php.ini. Here are a couple:
Distributed with
PHP:
Recommended in Production Environment:
Or
to see what's been happening, see:
Changelog:
NEWS:
|
|
[email protected]
09-Jul-2002 03:36 |
|
Directive information is being moved from here to the individual extension
manual pages. For example, php.net/mysql contains information on mysql
configurations.
|
|
[email protected]
07-Aug-2002 08:32 |
|
You can configure this values for independent VirtualHosts. Just put at
your httpd.conf <VirtualHost> section the flag php_admin_value
<variable_name> <value>
Example:
<VirtualHost
127.0.0.1> DocumentRoot /path/to/file ServerName
your.website.name php_admin_value auto_prepend_file
/path/to/file/lib/config.inc.php </VirtualHost>
And now
the file config.inc.php will be automatically loaded before the main file,
but only for this Virtual Host
|
|
13-Aug-2002 12:38 |
|
Should be trivial but was not so trivial for me :) error_log =
filename error_log =/path/filename
Make sure php user (usually
nobody) have privileges to write to filename or /path/filename. Or you
will get nor error logged.
|
|
|
| |