Philip Kaplan wrote: > What's the best way to deploy your code from dev to production > (without doing 100 manual FTP's...)
Scheduled process on each server to check with a master for updated files via robocopy, rsync (there are versions for Windows available), or similar file copy/mirroring tool. Windows Distributed File System may also work for you. If they're all on the same network, you might also direct your web server's home directory to a master file store over the network so you don't have a copy on each server. Either way, update the code once on whatever server is designated the master and it will make its way to all of the nodes automatically. -- Justin Scott | GravityFree Member of the Technical Staff 1960 Stickney Point Road, Suite 210 Sarasota | FL | 34231 | 800.207.4431 941.927.7674 x115 | f 941.923.5429 www.GravityFree.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320479 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

