I have configured open_basedir
in Apache virtual host in Linux which is working fine.
<Directory /var/www/abc/public_html>
php_admin_value open_basedir "/var/www/abc/public_html"
</Directory>
I am required to allow a single symlink which is located outside the specified basedir (/var/www/abc/public_html/files --> ../files
).
Is there anyway to do that?