Chance are, if apache isn't starting and isn't logging anything, the error_log is full preventing apache from starting. Â To double check that, run:
cd /var/log/httpd
ls -lS | less
The solution is to remove the logs, restart apache, and then implement preventative measures.
1)
cd /var/log/httpd/
rm -f error_log
rm -f access_log
rm -f suexec_log
rm -f fpexec_log
/sbin/service httpd restart    ("/usr/local/etc/rc.d httpd restart" for FreeBSD)
2) Get logrota to rotate daily
perl -pi -e 's/weekly/daily/' /etc/logrotate.conf
perl -pi -e 's/rotate 4/rotate 2/' /etc/logrotate.conf
If apache still doesn't start, check /var/log/messages and try recompiling apache.