On one Linux Server running Apache and PHP 5, we have multiple Virtual Hosts with separate log files. We cannot seem to separate the php error_log between virtu
Yes, you can try,
php_value error_log "/var/log/php_log"
in .htaccess or you can have users use ini_set() in the beginning of their scripts if they want to have logging.
Another option would be to enable scripts to default to the php.ini in the folder with the script, then go to the user/host's root folder, then to the server's root, or something similar. This would allow hosts to add their own php.ini values and their own error_log locations.