I attempted to set up virtual hosts using http://www.lineardesign.ca/news?articleid=2 "Setting up Dreamweaver in OSX. My httypd.conf is now as follows:
#localhost
<VirtualHost 127.0.0.1:80>
ServerAdmin webmaster@TestApp.com
DocumentRoot /Users/mike/Sites/
ServerName localhost
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
testapp
<VirtualHost 127.0.0.1:80>
DocumentRoot /Users/mike/Sites/TestApp
ServerName www.TestApp.com
</VirtualHost>
I then configured localhost to set up TestApp, configured the site in Dreamweaver and recycled Apache. I still get a blank page.
The tutorial on setting up Dreamweaver did not reconcile the Adobe PHP App tutorial instructions to set up the http address when configuring local Info and Testing Server as http://localhost/~mike/TestApp/ with the path in apache.
Any ideas of where I am going wrong?