Filesystem Security
Dec 07, 2009
Author: makedon
Safe Mode restricts filesystem access only to files owned by the script owner, and you can use the open_basedir directive to specify the directory in which a file must reside. If you specify a directory, PHP will refuse any attempt to access a file that is not in that directory or its subdirectory tree. The open_basedir directive works independently of Safe Mode.
To restrict filesystem access on your web server to only the /tmp directory, you use the following directive:
open_basedir = /tmp
views 1806



