Questions tagged [coldfusion-8]

For issues relating to using ColdFusion, version 8.

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 8 new features include

  • Built in AJAX for various UI elements. This is based ext-js
  • Exchange support
  • RSS
  • ZIP files
580 questions
5
votes
4 answers

Check for live Data Source Name Before proceeding

Would it be ok to get a CF app to check for a valid database before proceeding to process that request? This is because there may be instances where the database server may be down or being upgraded, hence an error comes when a db dependant request…
n_kips
  • 585
  • 11
  • 20
5
votes
2 answers

Using cachedwithin attribute inside cfquery

When you use the cachedwithin attribute in a cfquery how does it store the query in memory. Does it store it by only the name you assign to the query? For example, if on my index page I cache a query for an hour and name it getPeople will a query…
Jason
  • 17,276
  • 23
  • 73
  • 114
5
votes
1 answer

Coldfusion not converting accented text or MS Word chars

Running Coldfusion 8, I am trying to clean text input before saving to a database that will take things like the MS equivalent of ' " - and accented letters, and converting them. I have tried replace, REReplace, and various UDFs found on the…
Kevin
  • 13,153
  • 11
  • 60
  • 87
5
votes
3 answers

Can I install coldfusion 9 and coldfusion 8 on the same server?

Can I install coldfusion 8 and coldfusion 9 on the same server and use them separately? Great thanks.
Just a learner
  • 26,690
  • 50
  • 155
  • 234
5
votes
3 answers

ColdFusion cfcase statements and referencing their variables?

If you have code like so: /**Do Stuff Is it possible to reference that value within the case statement? I want to concatenate a list that can handle multiple cases and be able to dynamically reference the…
JTester
  • 463
  • 1
  • 8
  • 19
5
votes
2 answers

Why is a ColdFusion SESSION variable "undefined" after being referenced a few lines before?

Running ColdFusion 8.01 Standard on Windows2003/IIS6 Application.cfc: THIS.SessionManagement = "Yes"; THIS.SessionTimeout = CreateTimeSpan(0, 3, 0, 0); THIS.ApplicationTimeout =…
Eric Belair
  • 10,574
  • 13
  • 75
  • 116
5
votes
3 answers

Tackling Null Values while Inserting data in data base

I have the following cfquery: INSERT INTO DatabaseName (PhoneNumber_vch, Company_vch, date_dt) VALUES(#PhoneNumber#, #Company#, …
Jack
  • 989
  • 3
  • 13
  • 24
5
votes
2 answers

Translate session from CFScript to ColdFusion tag syntax

The app: A JavaScript function listens for changes on form elements (input & select), and posts the data to a CFC method that assigns them to a Session struct. The struct is returned, making the form data usable for the life of the session. The app…
rickp
  • 65
  • 2
5
votes
2 answers

How do I group my cfquery on multiple columns?

I need to group my query where multiple columns match. For example, group all rows where date, category, and description match. I know how to use cfoutput grouping when grouping on one column, such as: #date# …
Jason M
  • 510
  • 4
  • 11
5
votes
1 answer

cfc remote method result wrapped up in wddxpacket

When I return a string from my remote method from cfc. The returned string is wrapped up in a strange wddxpacket: I tried to turn off the debugging output like this: But it didn't work.
Adil Malik
  • 6,279
  • 7
  • 48
  • 77
4
votes
1 answer

In ColdFusion 8, can you declare a function as private using cfscript?

Normally you create a function using cfscript like: function foo() { return "bar"; } Is there a way to declare this as a private function, available only to other methods inside the same cfc? I know you can do it with…
Ryan Stille
  • 1,364
  • 1
  • 13
  • 19
4
votes
1 answer

AES encrypt in ColdFusion, decrypt in ruby

We can't for the life of us figure this out. We need to make ColdFusion encrypt data which ruby will decrypt. We've tried so many different settings on the ColdFusion side, looked through SO posts, looked through Adobe docs, and cannot make it work.…
Daniel Huckstep
  • 5,368
  • 10
  • 40
  • 56
4
votes
2 answers

Can I make an unbuffered query in ColdFusion?

I'm in the process of porting a Java desktop application to a ColdFusion web app. This desktop app made queries with very large result sets (thousands of text records) that, while being all right on the database side, could take a lot of memory on…
zneak
  • 134,922
  • 42
  • 253
  • 328
4
votes
1 answer

Using CFMAIL tag to send emails with an image

My code is as below, there is an image above this msg.
MadushM
  • 397
  • 3
  • 17
4
votes
2 answers

Cannot run program "p4": CreateProcess error=2, The system cannot find the file specified

I'm developing automate deployment script for Coldfusion project. Tool: cruisecontrol.net, ant script Source control: perforce Executing the following ant script from cruisecontrol.net i'm getting this error: "Cannot run program "p4": CreateProcess…
Nagarajan S
  • 103
  • 1
  • 7
1 2
3
38 39