Is this happening for one domain or all domains on the machine? It would have been better to open up a new thread, since this thread deals with 11.28.
If all domains aren't working, you might want to check /usr/local/apache/conf/httpd.conf has these lines in it:
Code:
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog "logs/access_log" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
</IfModule>
If those lines are missing, re-add them below this portion:
Code:
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
Then run the distiller, rebuild Apache and restart it:
Code:
cp /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf.bak120625
/usr/local/cpanel/bin/apache_conf_distiller --update
/usr/local/cpanel/scripts/rebuildhttpdconf
/etc/init.d/httpd restart