Here's what I have in my application.cfc so far.

I can see the declared application variables (application.host) in the
dump, but in my 'variables' dump I don't see 'host'.

<cfcomponent>

        <cfset this.name = "detailsAT">
        <cfset this.clientmanagement = "yes">
        <cfset this.clientstorage = "cookie">
        <cfset this.sessionmanagement = "yes">
        <cfset this.setdomaincookies = "yes">
        
        <cffunction name="onApplicationStart">
                <cfset application.imageMagickFolder = "c:\program 
files\ImageMagick\">
                <cfset application.showSiteAlert = 1>
                <cfset application.host = "details.at">
                <cfset application.adminID = 1>
        </cffunction>
        
        <cffunction name="onRequestStart">
                <cfset host = "details.at">
        </cffunction>

</cfcomponent>

-- 
online documentation: http://openbd.org/manual/
 http://groups.google.com/group/openbd?hl=en

Reply via email to