betz Thu Sep 26 17:59:44 2002 EDT
Added files:
/phpdoc/en/reference/apache ini.xml
/phpdoc/en/reference/network ini.xml
/phpdoc/en/reference/sem ini.xml
/phpdoc/en/reference/tokenizer ini.xml
Modified files:
/phpdoc/en/chapters config.xml
/phpdoc/en/reference rsusi.txt
/phpdoc/en/reference/apache reference.xml
/phpdoc/en/reference/network reference.xml
/phpdoc/en/reference/sem reference.xml
/phpdoc/en/reference/tokenizer reference.xml
Log:
more updates on ini-settings.
integrated part removed from config.xml
reflect changes in rsusi.txt
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.77 phpdoc/en/chapters/config.xml:1.78
--- phpdoc/en/chapters/config.xml:1.77 Thu Sep 26 10:32:50 2002
+++ phpdoc/en/chapters/config.xml Thu Sep 26 17:59:41 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.77 $ -->
+<!-- $Revision: 1.78 $ -->
<chapter id="configuration">
<title>Configuration</title>
@@ -178,9 +178,10 @@
<para>
This option enables the URL-aware fopen wrappers that enable
accessing URL object like files. Default wrappers are provided for
- the access of <link linkend="features.remote-files">remote files</link>
- using the ftp or http protocol, some extensions like zlib may
- register additional wrappers.
+ the access of <link linkend="features.remote-files">remote files</link>
+ using the ftp or http protocol, some extensions like
+ <link linkend="ref.zlib">zlib</link> may register additional
+ wrappers.
</para>
<note>
@@ -316,23 +317,6 @@
</listitem>
</varlistentry>
- <varlistentry id="ini.engine">
- <term>
- <parameter>engine</parameter>
- <type>boolean</type>
- </term>
- <listitem>
- <para>
- 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 <userinput>engine
- off</userinput> in the appropriate places in the
- <filename>httpd.conf</filename> file, PHP can be enabled or
- disabled.
- </para>
- </listitem>
- </varlistentry>
<varlistentry id="ini.error-log">
<term>
@@ -380,7 +364,7 @@
<listitem>
<para>
Whether or not to allow HTTP
- <link linkend="features.file-upload">file uploads</link>. See also
+ <link linkend="features.file-upload">file uploads</link>. See also
the
<link linkend="ini.upload-max-filesize">upload_max_filesize</link>,
<link linkend="ini.upload-tmp-dir">upload_tmp_dir</link>, and
@@ -542,7 +526,7 @@
</term>
<listitem>
<para>
- &true; by default. If changed to &false; scripts will be terminated
+ &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.
</para>
@@ -571,6 +555,9 @@
this option on has serious performance implications and is generally
recommended for debugging purposes only. This value defaults to
&true; when operating under the <literal>CLI SAPI</literal>.
+ </para>
+ <para>
+ See also <function>ob_implicit_flush</function>.
</para>
</listitem>
</varlistentry>
Index: phpdoc/en/reference/rsusi.txt
diff -u phpdoc/en/reference/rsusi.txt:1.34 phpdoc/en/reference/rsusi.txt:1.35
--- phpdoc/en/reference/rsusi.txt:1.34 Mon Sep 16 16:46:36 2002
+++ phpdoc/en/reference/rsusi.txt Thu Sep 26 17:59:42 2002
@@ -17,7 +17,7 @@
Extension New Ref Struct ini configure
--------------------------------------------------------------------------------
-apache ~
+apache yes
array
aspell
bc yes
@@ -87,7 +87,7 @@
muscat ~
mysql yes
ncurses yes
-network ~
+network ~ yes
nis
notes ~
objaggregation
@@ -109,7 +109,7 @@
readline
recode
regex
-sem
+sem yes
sesam !no
session ++ yes
shmop
@@ -118,7 +118,7 @@
strings
swf
sybase ~ yes
-tokenizer ~
+tokenizer ~ yes
uodbc yes
url ~
var ~
Index: phpdoc/en/reference/apache/reference.xml
diff -u phpdoc/en/reference/apache/reference.xml:1.5
phpdoc/en/reference/apache/reference.xml:1.6
--- phpdoc/en/reference/apache/reference.xml:1.5 Thu Sep 19 16:38:31 2002
+++ phpdoc/en/reference/apache/reference.xml Thu Sep 26 17:59:42 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<reference id="ref.apache">
<title>Apache-specific Functions</title>
<titleabbrev>Apache</titleabbrev>
@@ -20,62 +20,7 @@
</para>
</section>
- <section id="apache.configuration">
- &reftitle.runtime;
- <para>
- The behaviour of the Apache PHP module is affected by settings in &php.ini;.
- Configuration settings from &php.ini; may be overridden by php_flag settings
- in the server configuration file or local <filename>.htaccess</filename> files.
- </para>
- <example>
- <title>Turning off PHP parsing for a directory using
<filename>.htaccess</filename></title>
- <programlisting>php_flag engine off</programlisting>
- </example>
- <para>
- <table>
- <title>Apache configuration options</title>
- <tgroup cols="3">
- <thead>
- <row>
- <entry>Name</entry>
- <entry>Default</entry>
- <entry>Changeable</entry>
- <entry>Function</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>engine</entry>
- <entry>On</entry>
- <entry>PHP_INI_ALL</entry>
- <entry>turns PHP parsing on or off</entry>
- </row>
- <row>
- <entry>child_terminate</entry>
- <entry>Off</entry>
- <entry>PHP_INI_ALL</entry>
- <entry>
- specify whether PHP scripts may request child process termination on end of
request,
- see also <function>apache_child_terminate</function>
- </entry>
- </row>
- <row>
- <entry>last_modified</entry>
- <entry>Off</entry>
- <entry>PHP_INI_ALL</entry>
- <entry>send PHP scripts modification date as Last-Modified: header for this
request</entry>
- </row>
- <row>
- <entry>xbit_hack</entry>
- <entry>Off</entry>
- <entry>PHP_INI_ALL</entry>
- <entry>parse files with executable bit set as PHP regardless of their file
ending</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </para>
- </section>
+ &reference.apache.ini;
<section id="apache.resources">
&reftitle.resources;
Index: phpdoc/en/reference/network/reference.xml
diff -u phpdoc/en/reference/network/reference.xml:1.4
phpdoc/en/reference/network/reference.xml:1.5
--- phpdoc/en/reference/network/reference.xml:1.4 Fri Aug 9 06:26:07 2002
+++ phpdoc/en/reference/network/reference.xml Thu Sep 26 17:59:43 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<reference id="ref.network">
<title>Network Functions</title>
<titleabbrev>Network</titleabbrev>
@@ -22,10 +22,7 @@
&no.install;
</section>
- <section id="network.configuration">
- &reftitle.runtime;
- &no.config;
- </section>
+ &reference.network.ini;
<section id="network.resources">
&reftitle.resources;
Index: phpdoc/en/reference/sem/reference.xml
diff -u phpdoc/en/reference/sem/reference.xml:1.6
phpdoc/en/reference/sem/reference.xml:1.7
--- phpdoc/en/reference/sem/reference.xml:1.6 Thu Sep 5 06:32:25 2002
+++ phpdoc/en/reference/sem/reference.xml Thu Sep 26 17:59:43 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<reference id="ref.sem">
<title>Semaphore, Shared Memory and IPC Functions</title>
<titleabbrev>Semaphore</titleabbrev>
@@ -83,10 +83,7 @@
</para>
</section>
- <section id="sem.configuration">
- &reftitle.runtime;
- &no.config;
- </section>
+ &reference.sem.ini;
<section id="sem.resources">
&reftitle.resources;
Index: phpdoc/en/reference/tokenizer/reference.xml
diff -u phpdoc/en/reference/tokenizer/reference.xml:1.4
phpdoc/en/reference/tokenizer/reference.xml:1.5
--- phpdoc/en/reference/tokenizer/reference.xml:1.4 Sun Jul 28 11:14:18 2002
+++ phpdoc/en/reference/tokenizer/reference.xml Thu Sep 26 17:59:44 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<reference id="ref.tokenizer">
<title>Tokenizer functions</title>
<titleabbrev>Tokenizer functions</titleabbrev>
@@ -12,11 +12,13 @@
See also the <link linkend="tokens">appendix about tokens</link>.
</para>
</section>
-
+
+ &reference.tokenizer.ini;
+
&reference.tokenizer.constants;
-
+
</partintro>
-
+
&reference.tokenizer.functions;
</reference>
Index: phpdoc/en/reference/apache/ini.xml
+++ phpdoc/en/reference/apache/ini.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="apache.configuration">
&reftitle.runtime;
<para>
The behaviour of the Apache PHP module is affected by settings in php.ini.
Configuration settings from &php.ini; may be overridden by php_flag settings
in the server configuration file or local <filename>.htaccess</filename> files.
</para>
<example>
<title>Turning off PHP parsing for a directory using
<filename>.htaccess</filename></title>
<programlisting>php_flag engine off</programlisting>
</example>
<para>
<table>
<title>Apache configuration options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
<entry>Function</entry>
</row>
</thead>
<tbody>
<row>
<entry>engine</entry>
<entry>On</entry>
<entry>PHP_INI_ALL</entry>
<entry>turns PHP parsing on or off</entry>
</row>
<row>
<entry>child_terminate</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
<entry>
specify whether PHP scripts may request child process termination on end of
request,
see also <function>apache_child_terminate</function>
</entry>
</row>
<row>
<entry>last_modified</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
<entry>send PHP scripts modification date as Last-Modified: header for this
request</entry>
</row>
<row>
<entry>xbit_hack</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
<entry>parse files with executable bit set as PHP regardles of their file
ending</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
<para>
Here is a short explanation of the configuration directives.
<variablelist>
<varlistentry id="ini.engine">
<term>
<parameter>engine</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
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 <userinput>engine
off</userinput> in the appropriate places in the
<filename>httpd.conf</filename> file, PHP can be enabled or
disabled.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
Index: phpdoc/en/reference/network/ini.xml
+++ phpdoc/en/reference/network/ini.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="network.configuration">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>Network Configuration Options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
</row>
</thead>
<tbody>
<row>
<entry>define_syslog_variables</entry>
<entry>"0"</entry>
<entry>PHP_INI_ALL</entry>
</row>
</tbody>
</tgroup>
</table>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
<para>
Here is a short explanation of the configuration directives.
<variablelist>
<varlistentry id="ini.define-syslog-variables">
<term>
<parameter>define_syslog_variables</parameter>
<type>boolean</type>
</term>
<listitem>
<para>
Whether or not to define the various syslog variables (e.g. $LOG_PID,
$LOG_CRON, etc.). Turning it off is a good idea performance-wise. At
runtime, you can define these variables by calling
<function>define_syslog_variables</function>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
Index: phpdoc/en/reference/sem/ini.xml
+++ phpdoc/en/reference/sem/ini.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="sem.configuration">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>Semaphore Configuration Options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
</row>
</thead>
<tbody>
<row>
<entry>sysvmsg.value</entry>
<entry>"42"</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>sysvmsg.string</entry>
<entry>"foobar"</entry>
<entry>PHP_INI_ALL</entry>
</row>
</tbody>
</tgroup>
</table>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
Index: phpdoc/en/reference/tokenizer/ini.xml
+++ phpdoc/en/reference/tokenizer/ini.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="tokenizer.configuration">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>Tokenizer Configuration Options</title>
<tgroup cols="3">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
</row>
</thead>
<tbody>
<row>
<entry>tokenizer.global_value</entry>
<entry>"42"</entry>
<entry>PHP_INI_ALL</entry>
</row>
<row>
<entry>tokenizer.global_string</entry>
<entry>"foobar"</entry>
<entry>PHP_INI_ALL</entry>
</row>
</tbody>
</tgroup>
</table>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
</para>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php