- Knowledgebase Home
- » Browse by Service
- » (dv) Dedicated-Virtual Server
- » (dv) 3.5
- » Web Applications
- Knowledgebase Home
- » Browse by Service
- » (dv) Dedicated-Virtual Server
- » (dv) 3.5
- » Web Applications
- » PHP and Coding
- Knowledgebase Home
- » Browse by Service
- » (dv) Dedicated-Virtual Server
- » (dv) 4.0
- » Web Applications
How do I set the path for open_basedir?
Overview
By default, open_basedir restrictions are in place on the (gs) Grid-Service. These keep scripts in one directory from being able to affect scripts in another directory, which is an important security feature. Basically, if one of your domains gets hacked, open_basedir prevents the infection from spreading to another domain on the same account.
The open_basedir function defines the locations or paths from which PHP is allowed to access files using functions like fopen() and gzopen(). If a file is outside of the paths defined by open_basedir, PHP will refuse to open it.
Requirements
Before you start, you should be familiar with and/or have handy:
- Use of a plain text editor.
- FTP
- Editing the php.ini file.
- Your site number.
To change the default of this variable, you'll need root access enabled.
End of Life Warning
This service has a pending End of Life. Please move to a current service as soon as possible. For more information, please see: (dv) Dedicated-Virtual 4.0: Migration Information.
READ ME FIRST
This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is outside the scope of support provided by (mt) Media Temple. Please take a moment to review the Statement of Support.
READ ME FIRST
Please be aware that the following changes in your vhost.conf file will take precedence over any settings you may have in your httpd.conf file.
This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is outside the scope of support provided by (mt) Media Temple. Please take a moment to review the Statement of Support.
Symptoms
If your application is trying to open a file that is not in your open_basedir allowed directory, you will get an error like this, or something similar:
Warning: include_once() [function.include-once]: open_basedir restriction in effect. File(/nfs/c00/h00/mnt/00000/domains/gs-example.com/html/include.php) is not within the allowed path(s): (/home/00000/domains/example.com/html/) in /nfs/c00/h00/mnt/00000/domains/gs-example.com/html/index.php on line 10
Here's the error without all the long paths, so you know what to look for:
Warning: open_basedir restriction in effect. File(example.php) is not within the allowed path(s)
Instructions
- Open your
php.inifile and add or edit the following line:Filename:
php.iniopen_basedir = "/path/to/first/folder:/path/to/second/folder"Notes on this file:
- Make sure you always include the path to your html directory and your local
/home/00000/data/tmp/directory. Just/tmp/will work too, but you have less control over that directory. - Do not use paths that look like
nfs/c00/h00/mnt/. Use/home/00000/plus the rest of your path (where 00000 is your site number). - For information on how to edit the
php.inifile, please see: How can I edit the php.ini file?
CAUTION:
Make sure you do not use a path that is too broad, such as
/home/00000/by itself - this will allow all directories to access each other, and is a security risk. - Make sure you always include the path to your html directory and your local
- Upload the
php.inifile to theetcdirectory via FTP. - Once you've uploaded the
php.inifile, refresh your page. If you have listed all the necessary paths, you should no longer see theopen_basedirerror.
Here's how to set open_basedir on a domain:
- SSH into your Plesk machine as root and cd to the conf directory for the domain on which you want to modify
open_basedir. Something like this should work:cd /var/www/vhosts/example.com/conf/cd /var/www/vhosts/example.com/conf/ - Create a file called
vhost.confwith the following contents:NOTE:
If you would like to use
open_basedirvia https, follow the instructions below but create vhost_ssl.conf instead of vhost.conf. If you would like to enable this for subdomains, you must create the appropriate vhost.conf files for all subdomains that you need and then reconfigure the main vhost.conf file.vi vhost.confFor (dv) Dedicated-Virtual Server 3.x systems:
<Directory "/var/www/vhosts/example.com/httpdocs"> php_admin_value open_basedir "/var/www/vhosts/example.com/httpdocs/:/tmp/:/path/to/first/folder/:/path/to/second/folder/" php_admin_value include_path "/var/www/vhosts/example.com/httpdocs/:/tmp/:/path/to/first/folder/:/path/to/second/folder/" </Directory>For (dv) Dedicated-Virtual Server 4.0 systems:
For your "primary domain" -- this is the primary domain of the subscription in Plesk and not the primary domain as we normally refer to it regarding the service:
<Directory "/var/www/vhosts/example.com/httpdocs"> php_admin_value open_basedir "/var/www/vhosts/example.com/httpdocs/:/tmp/:/path/to/first/folder/:/path/to/second/folder/" php_admin_value include_path "/var/www/vhosts/example.com/httpdocs/:/tmp/:/path/to/first/folder/:/path/to/second/folder/" </Directory>For any additional domains on your (dv) 4.0, this would be for domains on the same subscription in Plesk.
<Directory "DOCUMENTROOT"> php_admin_value open_basedir "DOCUMENTROOT:/tmp/:/path/to/first/folder/:/path/to/second/folder/" php_admin_value open_basedir "DOCUMENTROOT:/tmp/:/path/to/first/folder/:/path/to/second/folder/" </Directory>You can obtain what the document root actually is with the following command:
cd /var/www/vhosts/example.com/conf && ls -tcr *httpd.include | tail -1 | xargs grep -m 1 DocumentRootTIP:
If you want to switch off safe_mode on a per domain basis, you can add the following line:
php_admin_value safe_mode OffNOTE:
While this is not advised, you can also disable
open_basedirfor the website by adding the following line to the vhost.conf file:php_admin_value open_basedir nonephp_admin_value open_basedir none - Reconfigure your webserver so it will look for your new vhost.conf file by doing this:
/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=example.com - Reconfigure your webserver so it will look for your new vhost.conf file by doing this:
/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain example.com - Finally, you must restart Apache, this can be done through Plesk or by executing the following commands:
/etc/init.d/httpd stop /etc/init.d/httpd start