RE: application.cfc move

2006-09-25 Thread Ian Skinner
What are you doing in your application.cfc file? It does have the power to intercept the request incase you wanted to do fancy stuff with it. You may be unintentionally intercepting the request and not returning it. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org

RE: application.cfc move

2006-09-25 Thread Dave Watts
hi, in an earlier post i wasnt able to get the session variables to work. this was because my application.cfc page was stored in: /_mmServerScripts the rest of my pages are stored in: /overview so i was informed that it was because it wasnt stored in the same folder or sub

Re: application.cfc move

2006-09-25 Thread Richard White
thanks for your replies. I am using dreamweaver and have just tried to create a basic application.cfc page but i am getting even more lost by the minute. This is the first time i have created a coldfusion application and have always used dreamweaver to pracitse it. for some reason i am getting

RE: application.cfc move

2006-09-25 Thread Ian Skinner
The Application.CFC Reference from the live docs http://www.adobe.com/livedocs/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=part_cfm.htm If you have local copies of the documentation installed, it is the same content and runs much faster. It

RE: application.cfc move

2006-09-25 Thread Matt Quackenbush
5 = 0 is not a valid CF comparison statement. It should be '5 LTE 0'. -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 5:19 PM To: CF-Talk Subject: Re: application.cfc move thanks for your replies. I am using dreamweaver and have just

RE: application.cfc move

2006-09-25 Thread Dave Watts
This is the first time i have created a coldfusion application and have always used dreamweaver to pracitse it. for some reason i am getting an error now that says it is having problems doing 5 = 0 which i have no idea about as if i take my custom application.cfc page out it works fine -

Re: application.cfc move

2006-09-25 Thread Richard White
hi, thanks for your reply, i am not using 5 = 0 anywhere in my program :) it only does that when i have an application.cfc page in the root of my directory saying: cfapplication sessionmanagement=yes if i take this application.cfc out of my root directory then it works fine

Re: application.cfc move

2006-09-25 Thread Charlie Griefer
ian mentioned this at the end of the previous thread, and i'll take responsibility for mentioning cfapplication in conjunction with Application.cfc (see my previous disclaimer about being new to Application.cfc)...but you shouldn't be using cfapplication in an Application.cfc. see Dave W's code

RE: application.cfc move

2006-09-25 Thread Ben Nadel
Certified Advanced ColdFusion Developer www.bennadel.com -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Monday, September 25, 2006 6:32 PM To: CF-Talk Subject: Re: application.cfc move hi, thanks for your reply, i am not using 5 = 0 anywhere in my program :) it only

RE: application.cfc move

2006-09-25 Thread Dave Watts
hi, thanks for your reply, i am not using 5 = 0 anywhere in my program :) Well, presumably it's somewhere, since you have that error message. it only does that when i have an application.cfc page in the root of my directory saying: cfapplication sessionmanagement=yes if i take this

Re: application.cfc move

2006-09-25 Thread Richard White
thanks for all your replies, i have modified my application.cfc with the code snippet sent cfcomponent !--- You don't actually have to use the this scope, but most Application.cfc examples do. --- cfset this.name = myappname cfset this.sessionmanagement = yes /cfcomponent and it has

Re: application.cfc move

2006-09-25 Thread Richard White
i have managed to finally get theproblemsorted after about 6 hours, i read an article in adobe http://www.adobe.com/cfusion/knowledgebase/index.cfm?event=viewid=KC.tn_19109extid=tn_19109dialogID=36437612iterationID=1sessionID=9630d3290cb0602d7462stateID=0+0+36443352mode=simple which said that