Follow-up on previous post
I did make the following change in the .htaccess Could that have caused the orders to not log?

RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$

to:

RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$ [OR]
RewriteCond %{REQUEST_URI} \.(html|htm|php)$ [NC]

John