tags:

views:

65

answers:

2

Hello all,

I have just looked at my error_logs for a particular site of mine which I haven't done in a while and in Apache's error_log i find hundreds of lines that have this same format:

[Mon Mar 16 19:20:03 2009] [error] [client xx.81.239.xxx] [Mon Mar 16 19:20:03 2009] [info] Executing "/home/get/public_html/fileReader.php" as UID 32596, GID 32599, referer: http://www.mysite.com/index.php
[Mon Mar 16 19:20:03 2009] [error] [client xx.3.27.xx] [Mon Mar 16 19:20:03 2009] [info] Executing "/home/get/public_html/fileReader.php" as UID 32596, GID 32599, referer: http://www.mysite.com/index.php
[Mon Mar 16 19:20:03 2009] [error] [client xx.202.191.xx] [Mon Mar 16 19:20:02 2009] [info] Executing "/home/get/public_html/fileReader.php" as UID 32596, GID 32599, referer: http://www.mysite.com/index.php

I have Googled and could not find anything on this. What does it mean? Is it even an error? If not, way record it?

Thanks all

A: 

These entries might be some custom error log format.

Gumbo
+2  A: 

these log entries originate from suPHP. they are info messages, not errors (the code says logger.logInfo(...), not logger.logError(...)). you can suppress them by setting suPHP's loglevel configuration option to "warn", "error", or "none".

ax