mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
PHP restrictions are not valid outside PHP (bug #32421)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@183262 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5cfdb84923
commit
c022ec82b6
1 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.59 $ -->
|
||||
<!-- $Revision: 1.60 $ -->
|
||||
<chapter id="features.safe-mode">
|
||||
<title>Safe Mode</title>
|
||||
|
||||
|
@ -301,7 +301,7 @@
|
|||
<para>
|
||||
See also: <link linkend="ini.register-globals">register_globals</link>,
|
||||
<link linkend="ini.display-errors">display_errors</link>, and
|
||||
<link linkend="ini.log-errors">log_errors</link>
|
||||
<link linkend="ini.log-errors">log_errors</link>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
@ -342,7 +342,7 @@ allowed to access /etc/passwd owned by uid 0 in /docroot/script.php on line 2
|
|||
<para>
|
||||
If instead of <link linkend="ini.safe-mode">safe_mode</link>, you set an
|
||||
<link linkend="ini.open-basedir">open_basedir</link> directory then all
|
||||
file operations will be limited to files under the specified directory
|
||||
file operations will be limited to files under the specified directory.
|
||||
For example (Apache &httpd.conf; example):
|
||||
<programlisting role="ini">
|
||||
<![CDATA[
|
||||
|
@ -381,6 +381,11 @@ Warning: readfile() has been disabled for security reasons in
|
|||
]]>
|
||||
</screen>
|
||||
</para>
|
||||
<warning>
|
||||
<para>
|
||||
These PHP rectrictions are not valid in executed binaries, of course.
|
||||
</para>
|
||||
</warning>
|
||||
</sect1>
|
||||
|
||||
<sect1 id="features.safe-mode.functions">
|
||||
|
|
Loading…
Reference in a new issue