Re: Application.cfc error

2009-01-23 Thread cf coder
Hi Laura, I'm getting this same error. Did you manage to fix this error? Do you remember what the problem was and if so can you kindly share it with me? Regards, John I'm getting an odd error when I try to use Application.cfc instead of Application.cfm. I get the following error: 500

application.cfc error

2008-11-17 Thread Chad Gray
I don't understand what is happening. Anyone see something in my application.cfc that would cause this error? I can get rid of the error by reinitialing the application. I get this error every once in a while. It is like the application is not re-initialzing right and my application

Re: application.cfc error

2008-11-17 Thread Emmet McGovern
Are you sure your not clearing the cart outside of your application.cfc? -e On Mon, Nov 17, 2008 at 12:19 PM, Chad Gray [EMAIL PROTECTED] wrote: I don't understand what is happening. Anyone see something in my application.cfc that would cause this error? I can get rid of the error by

RE: application.cfc error

2008-11-17 Thread Josh Nathanson
Could it be that the application is timing out? What sort of traffic does the site get? What is your application timeout set to? -- Josh -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 9:20 AM To: cf-talk Subject: application.cfc error I

Re: application.cfc error

2008-11-17 Thread Alan Rother
Off hand I'm not sure what is causing it, but this may help cfif (isdefined(URL.reinit)) OR (NOT IsDefined(Application.Cart)) OR (NOT IsDefined(Application.Page)) cfset onApplicationStart() / /cfif =] -- Alan Rother Adobe Certified

RE: application.cfc error

2008-11-17 Thread Chad Gray
Ya positive. There are only about 10 pages total in the web site. So I know for sure there is no code to kill the variable. -Original Message- From: Emmet McGovern [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 12:43 PM To: cf-talk Subject: Re: application.cfc error

RE: application.cfc error

2008-11-17 Thread Chad Gray
-talk Subject: RE: application.cfc error Could it be that the application is timing out? What sort of traffic does the site get? What is your application timeout set to? -- Josh -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 9:20 AM

RE: application.cfc error

2008-11-17 Thread Chad Gray
Seems like kind of a hack eh'? It probably would work though. -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 1:20 PM To: cf-talk Subject: Re: application.cfc error Off hand I'm not sure what is causing it, but this may help

Re: application.cfc error

2008-11-17 Thread Alan Rother
Hey Chad, One more thing came to mind... Not knowing anything about your hosting setup this is a wild guess... But your Application scope could be getting corrupted by another site on the same server having the same Application name... cfset this.name = testSite As a practice, I try to make this

RE: application.cfc error

2008-11-17 Thread Chad Gray
Hmmm you know I did realize that there was another web site using the same application name. Could this cause my problems? -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 1:41 PM To: cf-talk Subject: RE: application.cfc error

RE: application.cfc error

2008-11-17 Thread Adrian Lynch
November 2008 18:41 To: cf-talk Subject: RE: application.cfc error Seems like kind of a hack eh'? It probably would work though. -Original Message- From: Alan Rother Sent: Monday, November 17, 2008 1:20 PM To: cf-talk Subject: Re: application.cfc error Off hand I'm not sure what

Re: application.cfc error

2008-11-17 Thread Alan Rother
Hmmm you know I did realize that there was another web site using the same application name. Could this cause my problems? YES -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org

RE: application.cfc error

2008-11-17 Thread Dawson, Michael
Use the following code to prevent issues with running multiple applications with the same name on a single server. this.name = constants.siteName { hash(getCurrentTemplatePath()) } (If I remembered where I first saw this, I would give proper credit.) Mike

RE: application.cfc error

2008-11-17 Thread Chad Gray
, but not all of my applications variables are defined for testSite2. This is where I am getting my error! -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2008 1:42 PM To: cf-talk Subject: RE: application.cfc error Hmmm you know I did realize

Application.cfc error

2008-08-27 Thread Laura Norris
I'm getting an odd error when I try to use Application.cfc instead of Application.cfm. I get the following error: 500 ROOT CAUSE: java.lang.NoClassDefFoundError: Could not initialize class coldfusion.xml.rpc.CFCServlet at coldfusion.cfc.CFCProxy.init(CFCProxy.java:71) at