Tag: Time Machine
Apache2 not working after Time Machine full restore – Mac
by admin on Sep.08, 2009, under Mac/Iphone Programming
It’s because that Time Machine dose not create log folder for Apache2, which cannot start without create logs. …
Just do this >>
sudo apachectl stop
sudo mkdir /var/log/apache2
sudo chown -R root:wheel /var/log/apache2
sudo chmod -R 755 /var/log/apache2
sudo apachectl start
hope it will save your day.