I know this isn't really MG related, but i'm trying to setup mappings on a
dev site to move, MG, CS config etc out of the webroot.
heres a test case App.cfc thats causing me a problem, this file is located
at /home/testapp.dev/public_html/Application.cfc
<cfcomponent output="false">
<cfset this.name = "testapp.dev" />
<cfset config1 = expandpath("/../config") />
<cfset config2 = expandpath("../config") />
<cfdump var="#config1#"><br />
<cfdump var="#config2#">
<cfabort>
</cfcomponent>
if i call /index.cfm the expected output would be
/home/testapp.dev/config
/home/testapp.dev/config
however what i'm getting is
/opt/coldfusion8/runtime/bin/config
/home/testapp.dev/config
now, the really odd thing is this only happens on 1 vhost, and works as
expected on others. I'm running cf as a single server on apache, so all
vhosts share the server-wide cf process.
anyone come accross this behaviour before ?
Chris
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en
For more about Model-Glue, check http://www.model-glue.com .
-~----------~----~----~----~------~----~------~--~---