The easiest solution out of the box for me has been to install EasyPHP2. It will deploy apache 2.2.3, MySQL 4.x, and phpMyAdmin. The only thing left to do is configure apache->cf connector, and setup virtual sites. You need to point the configuration directory option at your httpd.conf file, and the server binary at your apache.exe file. This should setup the connector for you. From there, you just need to add a virtual host, similar to what follows. You would use the NameVirtualHost param only once. Oh, and you need to change references that state deny from all to allow from all. Otherwise, you get messages about not having permission to view the file. This isn't the "best" method, but as it's only dev, I'm not concerned about just myself on the machine.
NameVirtualHost *:80 #SomeSite <VirtualHost *:80> DocumentRoot "C:\somesite\www" ServerName loc.somesite.com ServerAdmin [EMAIL PROTECTED] ErrorLog C:/EasyPHP2/apache/logs/somesite_error_log TransferLog C:/EasyPHP2/apache/logs/somesite_access_log Alias /phpmyadmin c:\easyphp2\phpmyadmin </VirtualHost> Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286779 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

