Advertisement
Guest User

Untitled

a guest
Jun 9th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <cffunction
  2.         name="OnApplicationStart"
  3.         access="public"
  4.         returntype="boolean"
  5.         output="false"
  6.         hint="Fires when the application is first created.">
  7.        
  8.         <cfset application.dsn = "myDSN" />
  9.         <cfset application.apiUser = "myUserName" />
  10.         <cfset application.apiPass = "myPassword" />
  11.        
  12.         <cfset application.botSoftDisabled = false />
  13.         <cfset application.botHardDisabled = false />
  14.        
  15.         <cfset application.lastTweet = now() />
  16.        
  17.         <cfset application.debugEnabled = false />
  18.         <cfset application.oDebug = createObject("component", "MyApplication.Com.Debug").init() />     
  19.         <cfset application.oDebug.debugMsg("App Started", "App Started") />
  20.  
  21.         <!--- Return out. --->
  22.         <cfreturn true />
  23.     </cffunction>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement