This error is caused by not having the proper httpd.conf settings.
The reason the error goes away if you turn web sharing on is that the appropriate configs are only loaded if web sharing is on due to some IfDefine tags that look like:
<IfDefine WEBSHARING_ON>
...
</IfDefine>
Thus, virtual hosts, and Library/WebServer/Documents as root etc only get activate if websharing is on.
For Lion a solution is to turn web sharing on.
For Mount Lion there is no web sharing, so that is not an option, and you have to remove
the IfDefine tags, while keeping the content that is between them.
After changing your httpd.conf file you should always run:
apachectl configtest
This will let you know if you have syntax errors, module errors, etc.
/usr/htdocsin your configuration file -- include the surrounding bits, too.. – sarnold Dec 8 '11 at 1:25