Troublesome Apache Error

For the last two days the Apache error log has been kicking out these type error msgs. on one of our Servers.

[Wed Nov 10 16:59:29 2004] [warn] Apache does not support line-end comments. Consider using quotes around argument: "# Ukranian Spammer"


I have tried variations of the following:

find /usr/local/apache/domlogs -type f -name '*.com' -exec grep Ukranian {} \; -print
find /usr/local/apache/domlogs/ -type f -name '*.com' -exec grep line-end {} \; -print
find /home/*/public_html/cgi-bin/ -type f -name '*.*' -exec grep Spammer {} \; -print

for files in /usr/local/apache/domlogs/*; do grep "Ukranian" $files; done;
for files in /home/*/public_html/cgi-bin/*; do grep "Ukranian" $files; done;
for files in /home/*/public_html/cgi-bin/*; do grep "Spammer" $files; done;

All to no avail.

Would anyone have an idea how to find the account creating the above error?

I'm thinking it's a Perl script error, but if it makes any difference, PHP is run as a module.

 

 

 

 

Top