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
2
votes
3 answers

How to find {CFIDE-HOME} in Coldfusion

any one has idea, how can I find {CFIDE-HOME} path in my server? this is for coldfusion 8.0.1
CFUser
  • 2,295
  • 5
  • 32
  • 37
2
votes
1 answer

Grouping Custom Attributes in a Query

I have an application that allows for "contacts" to be made completely customized. My method of doing that is letting the administrator setup all of the fields allowed for the contact. My database is as…
Dave Long
  • 9,569
  • 14
  • 59
  • 89
2
votes
3 answers

Coldfusion cookie issue

I'm having issues deleting client cookies with the cfcookie tag, I'm setting the value to "" AND changing the expiration date to now. But I think it's resetting the cookie in the same page that it deletes it. Is there a application (or addon for…
James T
  • 3,292
  • 8
  • 40
  • 70
2
votes
1 answer

Linux ColdFusion cannot find uninstall instructions that work

I have ColdFusion 8 and am using Ubuntu. It will no longer start, and I am no longer using it. But it seems to be set up to start automatically on boot, and then to be throwing an error. I would like to uninstall it, or at least stop it from…
Betty Mock
  • 1,373
  • 11
  • 23
2
votes
1 answer

error "1064" in trigger creation in mysql?

while creating trigger in mysql i m getting error 1046. my query is: CREATE TABLE test.Employee( id int, first_name VARCHAR(30), last_name VARCHAR(15), start_date DATE, …
Yugal
  • 1,635
  • 8
  • 21
  • 30
2
votes
4 answers

Is there a way to get the list of all coldfusion scheduled tasks running on different web servers in same network?

I want to find out the details of scheduled tasks running on 5 or 6 coldfusion web-servers, by just writing a single page on one of them. Is there any way to do it? It might be done by reading cron.xml on all of them. I came across with following…
Deepak Yadav
  • 1,724
  • 3
  • 23
  • 38
2
votes
0 answers

Unable to resize images in ColdFusion 8, file becomes hidden

My code takes an uploaded file, resizes it and attempts to save it to another file, from a temp folder to destination folder. I've tried all variations of sample code found online. When the cfimage tag goes to save the resized image, the file…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
2
votes
2 answers

Cache results

Is there any way to cache the results of a tag? The tag makes it easy with the cachedwithin attribute but there doesn't seem to be anything for . Am I missing something simple or is this functionality just…
Jason
  • 17,276
  • 23
  • 73
  • 114
2
votes
1 answer

Could not connect to JRUN server error customization

Is there a way to change the error message for coldfusion "Could not connect to JRUN server" to something more user friendly in apache?
James T
  • 3,292
  • 8
  • 40
  • 70
2
votes
1 answer

ColdFusion Regex for finding empty html tags

Hey all, I'm trying to dynamically strip out some empty html tags. I'm kind of new to Regex, and it seems like the engine for coldfusion isn't as robust/similar to other regex engines (like javascript and as3). What's the trick for building a regex…
2
votes
3 answers

Prevent simultaneous logins in Coldfusion

Whats the easiest way of preventing multiple logins in cf?
n_kips
  • 585
  • 11
  • 20
2
votes
2 answers

ColdFusion - Creating column names dynamically with CFLOOP

I have a table that records the name of uploaded documents, up to 14 per record. The columns are named thus: TABLE tblDocuments COLUMNS documentID (int, not null, pk) document1 (varchar(250), null) document2 (varchar(250), null) …