Whenever I try to Unlink a file I get:
Warning: open_basedir restriction in effect. File is in wrong directory in ...
I verfied that safe mode is turned off in my php.ini file
The file I am trying delete is below the directory specified in the basedir specified in my php.ini file
I even did a CHMOD 777 on the file to see if that was the problem
The file was created by a command line utility that was executed in another PHP script. The file owner is apache which is the user that all my PHP scripts run under.
I deleted the php_admin_value open_basedir /docroot in my httpd.include file to make sure that wasn't restricting it.
Help!