slawek Thu Nov 1 05:21:33 2001 EDT
Modified files:
/phpdoc/en/features connection-handling.xml
Log:
Changed php3.ini to php.ini
Index: phpdoc/en/features/connection-handling.xml
diff -u phpdoc/en/features/connection-handling.xml:1.7
phpdoc/en/features/connection-handling.xml:1.8
--- phpdoc/en/features/connection-handling.xml:1.7 Fri Sep 21 18:47:31 2001
+++ phpdoc/en/features/connection-handling.xml Thu Nov 1 05:21:33 2001
@@ -1,5 +1,5 @@
<?xml encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<chapter id="features.connection-handling">
<title>Connection handling</title>
@@ -31,7 +31,7 @@
scripts run to completion even if there is no remote browser receiving
the output. The default behaviour is however for your script to be
aborted when the remote client disconnects. This behaviour can be
- set via the ignore_user_abort php3.ini directive as well as through
+ set via the ignore_user_abort php.ini directive as well as through
the corresponding php3_ignore_user_abort Apache .conf directive or
with the <function>ignore_user_abort</function> function. If you do
not tell PHP to ignore a user abort and the user aborts, your script
@@ -49,7 +49,7 @@
<simpara>
Your script can also be terminated by the built-in script timer.
The default timeout is 30 seconds. It can be changed using
- the max_execution_time php3.ini directive or the corresponding
+ the max_execution_time php.ini directive or the corresponding
php3_max_execution_time Apache .conf directive as well as with
the <function>set_time_limit</function> function. When the timer
expires the script will be aborted and as with the above client