well known: php safemode + open_basedir
I want set php safe mode on on my apache-php server but still allow user to acces any file of any chown if it is in his dir /home/user/to do this I enabled safemode in php.ini
and in httpd.conf
php_admin_value safe_mode_include_dir /home/user/
But that still dont allow that user to acces files on /home/user if that has other chown... is it imposible to set safe_mode_include_dir from httpd.conf?

Other solution would be to absulutly disable checking of file owners by safe mode and use besides safemode > open_basedir. However I find anoying that safe mode dont have setting to disable it UID checking.

any sugestions?