vote up 4 vote down star

On one Linux Server running Apache and PHP 5, we got multiple Virtual Hosts with separate logfiles and everything. The only thing we cannot seem to separate between virtual hosts is the php error_log. Overriding this setting in the <Location> of the httpd.conf does not seem to do anything.

Did I overlook something? Is there a way to have separate php error_logs for each Virtual Host?

flag

10 Answers

vote up 8 vote down check

You may already be doing this, but I would think the easiest way to do this would be to do:

<VirtualHost IP:IP>
Stuff,
More Stuff,
ErrorLog /path/where/you/want/it.log
</VirtualHost>

If there is no leading "/" it is assumed to be relative.

Apache Error Log Page

link|flag
vote up 1 vote down

The default behaviour is for error_log() to output to the Apache error log. If this isn't happening check your php.ini settings for the error_log directive - leave it unset to use the Apache log file for the current vhost.

link|flag
vote up 1 vote down

I usually just specify this in an .htaccess file or the vhost.conf on the domain I'm working on:

php_admin_value error_log "/var/www/vhosts/example.com/error_log"

link|flag
vote up 1 vote down

My Apache had something like this in httpd.conf. Just change the ErrorLog and CustomLog settings

<VirtualHost myvhost:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /opt/web
ServerName myvhost
ErrorLog logs/myvhost-error_log
CustomLog logs/myvhost-access_log common
</VirtualHost>
link|flag
vote up 0 vote down

That's the Apache error log, is it? PHP has it's own Error_Log specified in php.ini and does not seem to use Apache's error log?

link|flag
vote up 0 vote down

I will check. I just wonder if it is possible to still have apache and php error log separate when we want to give developers a chance to debug their code without giving them the apache error log which might contain other sensitive data.

link|flag
vote up 0 vote down

Have you tried adding the php_value error_log '/path/to/php_error_log to your VirtualHost configuration?

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

You could try:

    <VirtualHost myvhost:80>
    php_value error_log "/var/log/httpd/vhost_php_error_log"
    </Virtual Host>

But i'm not sure if is going to work. I tried on my sites with no success.

link|flag
vote up 0 vote down

php_value error_log "/var/log/httpd/vhost_php_error_log"

It works for me, but I have to chage the permission of the log file.

Or Apache will write the log to the its error_log.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.