Start editing your httpd.conf file:
Code:
nano /usr/local/apache/conf/httpd.conf
(if nano fails, try pico)
You should have a zone in httpd.conf where there are a lot of "LoadModule" statements
Make sure you have a line like the following:
Code:
LoadModule bytes_log_module libexec/mod_log_bytes.so
Go down more, and find the zone with a lot of "AddModule" statements
Make sure you have a line like the following:
Code:
AddModule mod_log_bytes.c
Save (F3) and close (Ctrl+X) the file.
Restart Apache:
Code:
/scripts/restartsrv_apache
Hope it helps.