A client has asked us to set up a different domain (as an alias for their site) which they could use on certain marketing material and hence measure the campaign's effectiveness. We've set it up and it all seems to be working fine except that the access log file for the new domain is stuck at zero bytes.
It doesn't appear to be a permissions problem as I've set the permissions of the new log file to those of the existing log file which seems to be logging fine.
Here's the <VirtualHost> container, I can't see anything obviously wrong with it, anyone got any ideas?
<VirtualHost xxx.xxx.xxx.xxx>
ServerAdmin webmaster@domain.com
DocumentRoot /var/www/www.domain.com/htdocs
ServerName www.newdomain.ie
ServerAlias newdomain.ie *.newdomain.ie
LogFormat "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-agent}i\""
TransferLog /var/log/httpd/newdomain.ie-access.log
ErrorLog /var/log/httpd/newdomain.ie-error.log
CustomLog /var/log/httpd/pid_log processid
<Directory /var/www/www.domain.com/htdocs>
AllowOverride All
</Directory>
Alias /shared /var/www/www.domain.com/htdocs_shared
</VirtualHost>
