I thought I got this working for it seems I forgot to delete the
machii folder in the webroot. :(
I followed the tips in this page:
http://greatbiztoolsllc.trac.cvsdude.com/mach-ii/wiki/FAQApplicationSpecificMappingWorkaround.
I still have a copy of mach-ii.cfc in /myfolder/MachII. No changes
were made to mach-ii.cfc.
But somehow I'm getting this error:
++++++++++++
Element APPLOADER is undefined in a CFML structure referenced as part
of an expression.
The error occurred in C:\web\apache\htdocs\flinders\webapps\edss\mach-
ii.cfc: line 179
177 : <cffunction name="getAppManager" access="public"
returntype="MachII.framework.AppManager" output="false"
178 : hint="Get the Mach-II AppManager. Not available until
loadFramework has been called.">
179 : <cfreturn application[getAppKey()].appLoader.getAppManager() /
>
180 : </cffunction>
181 :
++++++++++++++++++++++
Any ideas? Thanks for the help :)
This is what my application.cfc looks like:
++++++++++++++++
<cfcomponent extends="mach-ii" output="false">
<!--- Application variables --->
<cfset
this.name = "Ethics" />
<cfset this.loginStorage = "session" />
<cfset this.sessionManagement = true />
<cfset this.setClientCookies = false />
<cfset this.setDomainCookies = false />
<cfset this.sessionTimeOut = CreateTimeSpan(0,0,30,0) />
<cfset this.applicationTimeOut = CreateTimeSpan(1,0,0,0) />
<!--- Custom mappings --->
<!--- Windows path --->
<cfset this.mappings["/coldspring"] = "C:\web\apache\htdocs\flinders
\webapps\edss\coldspring">
<cfset this.mappings["/MachII"] = "C:\web\apache\htdocs\flinders
\webapps\edss\MachII">
<cfset this.mappings["/transfer"] = "C:\web\apache\htdocs\flinders
\webapps\edss\transfer">
<!--- Mach-II variables --->
<cfset MACHII_APP_KEY = getFileFromPath(ExpandPath(".")) />
<cfset MACHII_CONFIG_MODE = 0 />
<cfset MACHII_CONFIG_PATH = "C:\web\apache\htdocs\flinders\webapps
\edss\config\mach-ii.xml" />
<cfset MACHII_DTD_PATH = "C:\web\apache\htdocs\flinders\webapps\edss
\MachII\mach-ii_1_6_1.dtd" />
<cfset MACHII_VALIDATE_XML = false />
++++++++++++++++++