If you run apps side by side on the same server, you need to ensure
that all the application names are unique. You can do this in the
Application.cfc with something like this:
<cfcomponent output="no">
<cfset this.name = "applicationName_#getCleanWebRootFolder()#">
...
<cffunction name="getCleanWebRootFolder" returntype="string"
output="false">
<cfreturn reReplace(listLast(expandPath('/'), '\'), '[[:punct:]|
[:cntrl:]|[:space:]]', '', 'all') />
</cffunction>
</cfcomponent>
However, best practice would be for each developer to have a fully
functional development environment on their local workstation instead
of everyone sharing the server. Each developer would check in their
code to version control, and the dev server would run a single
environment that integrates the code being checked in by all the
developers.
Zack
--
Come see Team Mach-II at OpenCFSummit - Feb 21-23, Dallas, TX -
http://www.opencfsummit.org/
To post to this group, send email to [email protected]
For more options and to unsubscribe, visit this group at
http://groups.google.com/group/mach-ii-for-coldfusion?hl=en
SVN: http://svn.mach-ii.com/machii/
Wiki / Documentation / Tickets: http://trac.mach-ii.com/machii/