mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
correcting links to point to security.index
some tagging, typos and linking git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@133217 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
252cebf2c8
commit
5ff9d51fee
1 changed files with 15 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.40 $ -->
|
||||
<!-- $Revision: 1.41 $ -->
|
||||
<chapter id="features.safe-mode">
|
||||
<title>Safe Mode</title>
|
||||
|
||||
|
@ -89,7 +89,7 @@
|
|||
<listitem>
|
||||
<para>
|
||||
Whether to enable PHP's safe mode. Read the
|
||||
<link linkend="security">Security</link> and chapter for more
|
||||
<link linkend="security.index">Security</link> chapter for more
|
||||
information.
|
||||
</para>
|
||||
</listitem>
|
||||
|
@ -198,11 +198,12 @@
|
|||
turned On or Off.
|
||||
</para>
|
||||
<para>
|
||||
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.
|
||||
When a script tries to open a file with, for example,
|
||||
<function>fopen<function> or <function>gzopen</function>,
|
||||
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.
|
||||
</para>
|
||||
<para>
|
||||
The special value <systemitem class="constant">.</systemitem>
|
||||
|
@ -241,7 +242,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
This directive allows you to disable certain functions for
|
||||
<link linkend="security">security</link> reasons. It takes
|
||||
<link linkend="security.index">security</link> reasons. It takes
|
||||
on a comma-dilimited list of function names. disable_functions
|
||||
is not affected by <link linkend="ini.safe-mode">Safe Mode</link>.
|
||||
</simpara>
|
||||
|
@ -259,7 +260,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
This directive allows you to disable certain classes for
|
||||
<link linkend="security">security</link> reasons. It takes
|
||||
<link linkend="security.index">security</link> reasons. It takes
|
||||
on a comma-dilimited list of class names. disable_classes
|
||||
is not affected by <link linkend="ini.safe-mode">Safe Mode</link>.
|
||||
</simpara>
|
||||
|
@ -269,9 +270,9 @@
|
|||
</simpara>
|
||||
<note>
|
||||
<title>Availability note</title>
|
||||
<simpara>
|
||||
This directive became available in PHP 4.3.2
|
||||
</simpara>
|
||||
<simpara>
|
||||
This directive became available in PHP 4.3.2
|
||||
</simpara>
|
||||
</note>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -341,7 +342,8 @@ Warning: open_basedir restriction in effect. File is in wrong directory in
|
|||
</screen>
|
||||
</para>
|
||||
<para>
|
||||
You can also disable individual functions. Note that the disable_functions
|
||||
You can also disable individual functions. Note that the
|
||||
<link linkend="ini.disable-functions">disable_functions</link>
|
||||
directive can not be used outside of the &php.ini; file which means that
|
||||
you cannot disable functions on a per-virtualhost or per-directory basis
|
||||
in your &httpd.conf; file.
|
||||
|
|
Loading…
Reference in a new issue