Re: application.cfc saving old datasource?
I changed it to this: <cffunction name="onApplicationStart" output="false" returntype="boolean"> and got this error: The value returned from the onApplicationStart function is not of type boolean.
View ArticleRe: application.cfc saving old datasource?
BKBK wrote:Oh, and I hope you have saved the application file as Application.cfc, with capital A. Why is that, I'm on a Windows server, I thought they weren't case specific. I changed it anyhow.
View ArticleWhen will Coldfusion 10 be updated with a newer version of Tomcat, to support...
Hello, McAfee Scan Alert is reporting that Tomcat version 7.0.23.0 is not pci compliant.We're on CF10 and just updated to update 12. We've read in another thread that Tomcat is specialized for CF and...
View ArticleRe: Getting NullPointerException on IsUserLoggedIn() Randomly
I am sorry for the same, I thought of it as another scenario No there no another maintain connections option. Is the scenario is something like this ? The user requests index.cfm for the first time...
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
I am sure Mike you/me/ and every CF user will get a notification ( public blog) once the version of Tomcat will be upgraded
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
I'm slightly confused. With the old pre-Tomcat version of CF, you could "usually" upgrade to the latest and greatest Java runtime. Is that no longer the case?
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
Hi Steve, I read that information from:http://blogs.coldfusion.com/post.cfm/what-s-the-deal-with-tomcat-in-co ldfusion-10 >Yes, the in-built server in ColdFusion 10 is a modified version of...
View ArticleRe: When will Coldfusion 10 be updated with a newer version of Tomcat, to...
That is somewhat alarming to read and puts the breaks on a CF9-->CF10 project we have. Being a payment gateway we are very sensitive to reported vulnerabilities and getting them patched or plugged...
View ArticleRe: application.cfc saving old datasource?
ctreeves wrote: I changed it to this: <cffunction name="onApplicationStart" output="false" returntype="boolean"> and got this error: The value returned from the onApplicationStart function is...
View ArticleRe: application.cfc saving old datasource?
ctreeves wrote: BKBK wrote: Oh, and I hope you have saved the application file as Application.cfc, with capital A. Why is that, I'm on a Windows server, I thought they weren't case specific. I...
View ArticleRe: Control Flow Question
Something like this? Firstly, a loop to demonstrate we're getting the correct value on every day <cfset cost = 50> <cfloop index="day" from="21" to="120"> <cfset extraCost =...
View ArticleRe: Why is ColdFusion adding backslashes to my Concatenated string?
The string you're outputting is wrapped in double-quotes. So the double-quotes inside that string need to be escaped, which is what the backslashes are doing. You say you have another function doing...
View ArticleRe: Dreamweaver CC Coldfusion 10 extension?
Hi, I have exactly the same problem, Win 7 64.
View ArticleRe: Why is ColdFusion adding backslashes to my Concatenated string?
Thank you for the reply. Both functions are exactly the same exept for the loop. If you look closely, the string in ColdFusion is actualy wrapped in single-quotes not double-quotes, but when it gets...
View ArticleColdfusion session timing out too soon?
I have coldfusion 10 installed as our main server. I am using sessions to store some information and have set sessiontimeout=#CreateTimeSpan(0,0,45,0)# in the application file but for some reason the...
View ArticleRe: Control Flow Question
Worked! (actually I didn't try the loop, just the bottom part worked). Thank you!
View ArticleRe: Control Flow Question
Just be mindful that "a month" is not a set amount of time. It can range from 29-31 days.
View ArticleRe: Coldfusion session timing out too soon?
Check the CF Admin. The values set there can trump per-application settings. So if the CF Admin states that the maximum size a session can be is 10 minutes, your app can tell CF to use more, but CF...
View ArticleRe: Why is ColdFusion adding backslashes to my Concatenated string?
You're not performing a JSStringFormat() on that anywhere, are you? (maybe in some code not posted). JSStringFormat() assumes the text passed to it is a literal string, and then it will escape quoted...
View Article