The application.cfc tag has no wiki summary.
2
votes
2answers
69 views
Session Cookies and Application.cfm
This code in the Application.cfm (I know it should probably be .cfc, but this is some old code dating back to MX) for cookies used to work just fine on CF8 and CF9 - but I moved this to a local ...
1
vote
1answer
93 views
Coldfusion 10 sessionTimeout is not work
I've created the following Application.cfc and everything is working except for one thing. I'm trying to get the Application.cfc to logout after a short period of inactivity. However, none of my ...
3
votes
2answers
87 views
ColdFusion - Enabling ORM stops onApplicationStart from running
Can anyone explain this behaviour to me?
I have set up a bunch of application scoped settings in onApplicationStart, and some of them are referred to in onSessionStart. However, when I enable ORM, it ...
0
votes
0answers
92 views
Session is invalid
I am getting the following error:
Execution Time
No top level page was found.
Exceptions
11:12:37.037 - java.lang.IllegalStateException - in : line -1
Session ...
3
votes
2answers
123 views
Custom methods inside Application.cfc
We have four different environments: dev, q/a, test and prod. I decided to convert our Application.cfm to Application.cfc and put them in our source control. There are plenty application vars that ...
1
vote
2answers
95 views
cfc that bring in additional functions via include
My application.cfc starts with:
<cfcomponent extends="org.corfield.framework">
later on void function setupApplication() output="false" {
I have
// tools
include "initapp.cfm";
...
0
votes
1answer
54 views
Location for Traffic tracking on an FW/1 site
I am currenting using FW/1 and tracking traffic via the following function call
this.wsTraffic.add(action =
{
SubSystem = getSubSystem(),
Section = getSection(),
...
2
votes
3answers
135 views
Error page when someone accesses Application.cfc
I am just considering a scenario where someone might give Application.cfc in a url. I know this will not work as it is reserved by ColdFusion engine and user will see an error.
Is it possible to ...
3
votes
2answers
203 views
Coldfusion 9 ORM Mapping issue
I have an issue with CF9 ORM mapping.
I get the following error from time to time (yes, it works fine most of the time),
Mapping for component model.Pubs not found. Either the mapping for this ...
0
votes
2answers
213 views
application.cfc in subdir not getting session variables from application.cfm in the parent directory
I have an application.cfc in folder /wwwRoot/beta/. They have an application.cfm in the root which sets bunch of session variables. When I hit one of the pages in the beta folder to dump all the ...
0
votes
2answers
304 views
Block Ip list / country using IIS/Coldfusion
I am getting a lot of spam/unwanted traffic from ips from China for eg. 125.116.123.14 as seen in my FTP logs with attempts log in etc.
Is there a way i can block this in Coldfusion Application.cfc? ...
1
vote
1answer
170 views
coldfusion application.cfc not found
I've been having a sporadic problem for a few weeks where on restarting the CF Server (Enterprise 9) one of my applications runs without ColdFusion referencing all the variables in the Application.cfc ...
0
votes
1answer
53 views
Static object that is accessible to all users like Application.cfc
I've done a fair bit of PHP over the years but I'm currently learning ColdFusion and have come across the Application.cfc file.
Basically this is a class that's created once (has an expire date). The ...
1
vote
2answers
96 views
Is the application.cfc static in memory?
I'm experimenting with the Application.cfc within coldfusion. I'd like to know if the application.cfc is static in memory, i.e it's created once for the first user and there after every user that ...
0
votes
2answers
272 views
Coldfusion mapping cfinclude
I am trying to use mappings for the first time and I am having some issues. In my CFadmin I created a mapping which goes like this:
Logical Path:
/email_sender
Directory Path:
...
-1
votes
1answer
127 views
404 error handling
I am trying to configure the application.cfc to include error handling.
I have this:
/**
* @hint ColdFusion received a request for a non-existent page.
*/
public boolean function ...
4
votes
2answers
98 views
access variables from Appliction.cfc
I would like to know the new way of calling variables from the Application.cfc file when using the script function, which has the format of "this.something" My example:
component {
// ...
2
votes
3answers
130 views
Application.cfc extending values into a child folder
I am currently updating some of my Coldfusion applications, and I am looking for a good way to keep some of the structure in place.
Currently, its setup like this
ApplicationRoot/Application.cfc ...
7
votes
1answer
283 views
How can I get the application datasource name in Coldfusion 10?
In Coldfusion 9 to get the application datasource outside application.cfc, I've used application.getApplicationSettings().datasource.
In Coldfusion 10 getApplicationSettings() has been replaced with ...
0
votes
2answers
44 views
Trouble with page header code being added to a cfc call from a bind
I have some includes in my onRequestStart() Method which I have by-passed for cfc requests using: <cfif listLast(arguments.thePage, ".") neq "cfc"> (which I got from Ray Camden on a forum here ...
1
vote
1answer
124 views
Change “global” datasource dynamically
I usually set application-wide datasource name in the Application.cfc first rows:
<cfscript>THIS.datasource="mydsn";</cfscript>
What if I need to change it in certain part of my code?
...
2
votes
3answers
258 views
How do you capture errors for an entire Application in ColdFusion?
I am currently trying to capture all errors in my application by including the following code in Application.cfc:
<cffunction name="onError">
<!--- The onError method gets two arguments: ...
4
votes
1answer
71 views
What's the best way to set and store your Application and THIS parameters in ColdFusion?
I've got parameters I'm currently setting in ApplicationSettings.cfm and ThisSettings.cfm that I'm including into the Application.cfc. I want to keep these settings separate from the source code, ...
2
votes
2answers
120 views
Using only pieces of the Application.cfc?
I don't have any formal training in Coldfusion, so things like this really confuse me because they don't work the way I would assume they would.
My folder structure is this:
MainAppFolder
|
...
0
votes
3answers
212 views
ColdFusion = OnRequest Error
Looking through the logs, we're getting hundreds of the following
"Error","jrpp-185","08/21/12","10:05:43","PATH","www.domain.com
Agent:Mozilla/4.0 (compatible; Synapse)
Error: An exception ...
0
votes
2answers
324 views
Why I can't call method in Coldfusion component?
I'm using Coldfusion8 and am stuck trying to call a component. This worked up until a few days ago and although I can't recall changing anything, all my calls to this component now fail.
Here the ...
7
votes
5answers
636 views
ColdFusion Application.cfc - order of execution
I need a reality check - and hopefully an explanation (if my reality is wrong).
The way the CF application framework evaluates things is this (my understanding)
- request is passed to cfserver
cf ...
3
votes
2answers
179 views
Coldfusion 8 -> 9 update, functions no longer working
HELP!!
Just migrating a site from one server to another, the coldfusion version is changing from cf8 to cf9 [linux/centos]
this code used to work before:
cfinclude('../SQL/contact.sql.cfc');
...
3
votes
2answers
247 views
ColdFusion Application.cfc & cfinvoke & THIS scope
In using the CF application.cfc - there is a need to create some vars to begin with (in the THIS scope) - such as this.name and this.applicationtimeout() etc.
I ran across something I consider an odd ...
2
votes
1answer
107 views
coldfusion-10 error: The value returned from the init_datetype function is not of type pagedatetype_cfc
In coldfusion 10, I am getting the following ERROR:
"An exception occurred while invoking an event handler method from Application.cfc. The method name is: onRequestStart. "
Rootcause:Detail: "If ...
3
votes
2answers
173 views
ColdFusion 10 application.cfc error: counting number of active sessions
In the adobe coldfusion 10 documentation, Defining the application and its event handlers in Application.cfc, there is a sample Application.cfc containing the function below. After looking at the ...
0
votes
1answer
128 views
Is there a way to secure folders in ColdFusion, without the use of Application.cfc in every folder?
The only way I can figure how to secure folders, is to include a basic Application.cfc in every-single-one including sub-folders.
If file /test/thisfile.cfm is secure and sends a user not logged in ...
1
vote
1answer
85 views
How to set up a global form handler for certain types (user interactions, etc) of forms in Coldfusion?
I'm looking for the best way to structure form handling in a Coldfusion8 site I inherited.
There are a number of forms which relate to certain interactions, such as "user interactions" ...
3
votes
1answer
370 views
How can I include mappings into Application.cfc from external property file?
I have trouble with setting mappings in Application.cfc
We have diverent Server (dev,QS,prod)
Each with a little different Pathes.
I want to set serverspecific pathes and variables via configuration ...
2
votes
1answer
181 views
Where do I define application and session variables in Coldfusion8 application.cfc?
I'm trying to setup my first application.cfc file.
I tried to invoke variables on an "event-basis" like so:
<cffunction name="onApplicationStart" returnType="boolean" output="false">
...
0
votes
1answer
72 views
Can I specifiy a “target” for a Coldfusion template which is inserted from application.cfc
Just wondering (Coldfusion Newbie). I'm on this page, showing an example how to setup a user login/logout in Coldfusion.
Simple question:
If the user is not logged in, the application.cfc inserts a ...
0
votes
1answer
570 views
Using Coldfusion sessions without cookies
Good Day,
We are trying to implement an API in Coldfusion 8 whereby cookies are not used - instead, we pass the cfid, cftoken and jsessionid by GET or POST for each request.
We are using mach-ii and ...
1
vote
1answer
275 views
Change to OnRequestEnd behavior in CF9 (was ColdFusion 9 Bug - Can't Reference a Request Variable in OnRequestEnd)
Here's a weird one. I haven't had any luck finding any information about this on Google, so I'm wondering if any of you have seen this before?
I've got a CFC in the request scope and then in the ...
2
votes
1answer
853 views
Coldfusion “Routines cannot be declared more than once”
We have the following code in our Application.cfc:
<cffunction name="onError" returnType="void" output="false">
<cfargument name="exception" required="true">
<cfargument ...
5
votes
2answers
153 views
where does a CFC get it's Application Scope
I have a group of CFC's that I access from two seperate Applicaiton scopes.
One /Application.cfc is in the Root.
The other Application is in /Admin/Application.cfc
The cfcs are in in /_cfc/
If I ...
1
vote
5answers
540 views
Unable to access variables when converting from application.cfm to application.cfc
I am trying to convert an application I support from application.cfm to application.cfc. I followed Ben Nadel's ColdFusion Application.cfc Tutorial And Application.cfc Reference, but my pages cannot ...
2
votes
2answers
409 views
How do I secure CFID for PCI compliance?
We've been failing our PCI scans because ColdFusion has predictable CFIDs. The exact FAIL we get is "Predictable Cookie Session IDs". Now the CFTOKEN is no longer predictable since I've configured CF ...
3
votes
2answers
221 views
ColdFusion: get arguments of function which throws error in the onError-method of Application.cfc
I'm extending my errormanagement function which dumps a few scopes of variables and sends them via email to me. I'm using the onError-method in the Application.cfc for this case.
<CFDUMP ...
0
votes
1answer
256 views
Using <cfinclude> with this.mapping
In my application I have a header and footer include. In my Application.cfc I've set up a function that names my application and sets mapping.
<cfcomponent output="no">
<cfset this.name = ...
3
votes
2answers
2k views
Could not find the ColdFusion Component that exists
When I use the following locally for development it works, when it is in production it works most of the time, but every so ofter we get the following error using this code:
Code
...
0
votes
1answer
176 views
Mapping for component xxx not found in ORM app
I'm doing some TDD with a ColdFusion ORM application so I'm letting the application.cfc in my tests directory so I'm setting dbcreate="update" so the tests will create the database tables. Every time ...
2
votes
2answers
230 views
Directly accessing application.cfc produces untrapped ColdFusion error
I'm developing a new ColdFusion 9 application using application.cfc, and just for kicks I wanted to see what happens if I navigate directly to application.cfc, like this:
...
1
vote
1answer
149 views
How to put UDF library into the APPLICATION scope?
I am using ColdFusion 9.0.1.
Right now, we are including our UDF library in the onRequest() method in our application.cfc. Here's how we include it:
<cfscript>
// INCLUDE LIBRARY
...
3
votes
3answers
958 views
How to best create and store APPLICATION variables?
I am using ColdFusion 9.0.1
I am taking over a site and the guy before me created about 100 variables and put them into the APPLICATION scope. I believe that his 100 variables were continuously being ...
3
votes
1answer
961 views
Do variables inside Application.cfc functions need scoping?
Question for the crowd. We are very strict on our team about scoping local variables inside functions in our CFC's. Recently though the question of scoping variables inside Application.cfc came up. ...

