
July 8th, 2003, 12:43 PM
|
|
Moderator
|
|
Join Date: Jun 2002
Location: Raleigh, NC
|
|
|
You should not need to do anything if you have direct network connectivity to the remote server. You can just open the files over a mapped network drive as you would any other remote file. However, as with any production environment, it is a bad idea to edit live files on a live server.
In other words, you WANT two copies of the code. Or rather, you should be using some sort of source code control (yes you can use SourceSafe or any other CVS system). You can install a single-user copy of CF server on your local development workstations, develop and test there, and when you are ready you push the tested code to the production server.
ColdFusion files all end in the extension .cfm (except with the new CFC's in CFMX, which end with .cfc). These are the files you will edit and deploy. You do not compile CF code like you do Visual Basic code.
Hope that helps,
Brian
|