I'm running XAMPP on Windows 7. error_log("test")
doesn't output to the my error_log specified in my vhost config (although the access log specified in the same config) does work.
Any ideas?
<VirtualHost *:80>
DocumentRoot "c:\Users\User\Example"
ServerName example.local
CustomLog "C:\Users\User\Program\logs\local_access.log" combined
ErrorLog "C:\Users\User\Program\logs\local_error.log"
<Directory "C:\Users\User\Program">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>