Sunday 2 October 2016

php - open_basedir restriction in effect. File(/) is not within the allowed path(s):



I'm getting this error on an avatar upload on my site. I've never gotten it before and nothing was changed recently for me to begin getting this error...



Warning: is_writable() [function.is-writable]: 
open_basedir restriction in effect.

File(/) is not within the allowed path(s):

Answer



Modify the open_basedir settings in your PHP configuration (See Runtime Configuration).



The open_basedir setting is primarily used to prevent PHP scripts for a particular user from accessing files in another user's account. So usually, any files in your own account should be readable by your own scripts.



Example settings via .htaccess if PHP runs as Apache module on a Linux system:





php_admin_value open_basedir "/home/sites/site81/:/tmp/:/"


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...