Re: cfadministrator won't start

2007-05-26 Thread Andrew Scott
Ok, That will mean your localhost is not setup on your computer. On 5/26/07, Dwayne Cole [EMAIL PROTECTED] wrote: It works if I enter the url directly in the browser. But when I select startmacromediaColdFusion MX 7Administator i get the error bong! -- Original Message

Re: CFFILE copy to another server - (Access is denied).

2007-05-26 Thread Robertson-Ravo, Neil (RX)
You should probably create a specific ColdFusion service account and assign to s group on the domain and start ColdFusion up with that (no doubt starts as Local System now as most people never change that). That way you can control the access that service across the network. This e-mail is

Re: Scope Memory

2007-05-26 Thread Robertson-Ravo, Neil (RX)
In a way, it's not. it is just more detailed and more in your control (you can force a GC() etc) I am not sure you will ever be able to see what memory is being used by what directly...certainly not to the case of Variable 1 = 50kb, XmlObject = 150kb etc this going to be available in CF8?

RE: Absolutely amazing article - who the hell writes this stuff?

2007-05-26 Thread Robert Rawlins - Think Blue
In all fairness, All the best programmers I've ever met have been self educated or hobbyists turned professional. I've never considered academic studies in any fast moving industry a particularly good way to spend time, the curriculum is so out of date that the skills you learn have no relevance

Re: Scope Memory

2007-05-26 Thread James Holmes
If you get out of memory errors in cf-server.log and the total size of the heap (-Xmx) looks ok then it's almost certain that the perm space (-XX:MaxPermSize) needs to be larger. CF is like JSP in that it creates a large number of classes to get things done and info on every insatnce of these is

MySQL dead too? THE SKY IS FALLING -- oh wait, just a *another* set of lame articles

2007-05-26 Thread John Paul Ashenfelter
Since I've been continuing the whole CF is dead thing (for the record, idiotic article), here's one that will get bigger play since it was on Slashdot http://developers.slashdot.org/article.pl?sid=07/05/25/205255 8 Reasons Not to Use MySQL

Re: Tiobe, O'Reilly Radar, and niches [WAS Re: ComputerWorld decl ares CF dead]

2007-05-26 Thread John Paul Ashenfelter
On 5/25/07, James Wolfe [EMAIL PROTECTED] wrote: No offense taken. I haven't bought a CF book in wow, nearly a decade since none of them are truly good. Like I said, the problem is the market is too small for a big publisher to take a risk. Breakeven on a book for an O'Reilly or Wiley is

Re: Scope Memory

2007-05-26 Thread Dave Ross
There *is* away to see exactly how much space a given object (CFC, array, or otherwise) is taking up - perform a Heap Dump. If you are running a JVM 1.4.2_12 and up, you can force a heap dump and thqen analyze the resulting bin file with jHat (a utility that comes w/ JDK6) to see what was in

Re: Scope Memory

2007-05-26 Thread Robertson-Ravo, Neil (RX)
Holy sh*t, that's neat, a lot of work but neat nonetheless... This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and

Coldfusion - Dynamic Forms

2007-05-26 Thread Pete
Hi all I'm working on an application. I have been developing a form for users to enter/edit information. On the form I currently have provision for a user to enter up to 6 phone numbers as the contact numbers for an organization. I'm wondering if there is a better way to do this as not all

RE: Coldfusion - Dynamic Forms

2007-05-26 Thread Bobby Hartsfield
If JavaScript is an option (it would depend completely on it though), you could look into the createElement() method it would allow you to add as many fields as you want on the fly, client side. You'd just use a hidden field or something to hold the count for you so you know how many fields to

RE: cfadministrator won't start

2007-05-26 Thread Eric Roberts
How bout checking the URL of the Shortcut? Eric -Original Message- From: Ravi Gehlot [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 11:26 PM To: CF-Talk Subject: Re: cfadministrator won't start I am a Linux guy. So...Windows is not really my strongest. Sorry. Ravi. Dwayne Cole

FLV beneath web root

2007-05-26 Thread Richard Cooper
I'm trying to serve FLV files via a .cfm page. I've tried a few combinations but basically I've a .cfm page with this in: cfheader name=Content-Disposition value=#myPath##myFLVfile# cfcontent type=video/x-flv file=#myPath##myFLVfile# If I access this page via a flv player it just hangs. If I

sun downloads?

2007-05-26 Thread Bobby Hartsfield
Anyone able to get the latest JRE from sun? http://java.sun.com/j2se/1.4.2/download.html All downloads directly from Sun fail for me. I just formatted and can't get Eclipse installed without it. Sigh. Maybe someone knows the link(s) directly to the file(s)?? J

RE: sun downloads?

2007-05-26 Thread Bobby Hartsfield
Wrong link... http://developers.sun.com/downloads/top.jsp I was after JRE6 but NONE of the downloads work for me. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Macromedia ColdFusion MX7

Re: sun downloads?

2007-05-26 Thread David Low
Same for me too - been like that all day. Bobby Hartsfield wrote: Wrong link... http://developers.sun.com/downloads/top.jsp I was after JRE6 but NONE of the downloads work for me. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com

RE: sun downloads?

2007-05-26 Thread Bobby Hartsfield
I was able to get it installed from here... http://java.com/en/download/windows_xpi.jsp?locale=enhost=java.com:80 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: David Low [mailto:[EMAIL PROTECTED] Sent: Saturday, May 26, 2007

Re: FLV beneath web root

2007-05-26 Thread AJ Mercer
Try adding these MIMEs to IIS fla - video/x-flv flv - *flv-application/octet-stream * On 5/26/07, Richard Cooper [EMAIL PROTECTED] wrote: I'm trying to serve FLV files via a .cfm page. I've tried a few combinations but basically I've a .cfm page with this in: cfheader

Re: FLV beneath web root

2007-05-26 Thread Richard Cooper
Hi AJ, I changed the mime types from: ..fla - application/octet-stream ..flv - flv-application/octet-stream To: ..fla - video/x-flv ..flv - *flv-application/octet-stream I then restarted IIS, but I'm still having the same issues. Any other ideas?

Re: FLV beneath web root

2007-05-26 Thread AJ Mercer
no sorry - that info as given to me awhile back and it got me going. I came across this today - might give you some ideas Streaming Flash FLV files using Coldfusion http://www.realitystorm.com/experiments/flash/streamingFLV/index.cfm On 5/26/07, Richard Cooper [EMAIL PROTECTED] wrote: Hi AJ,

Re: FLV beneath web root

2007-05-26 Thread Richard Cooper
Thanks anyway. I'll read the article to see if that has some solutions, and will post here if it works. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

Re: Scope Memory

2007-05-26 Thread Christopher Jordan
Wow! Thanks for that information Dave! Dave Ross wrote: There *is* away to see exactly how much space a given object (CFC, array, or otherwise) is taking up - perform a Heap Dump. If you are running a JVM 1.4.2_12 and up, you can force a heap dump and thqen analyze the resulting bin file

Re: Coldfusion - Dynamic Forms

2007-05-26 Thread Christopher Jordan
Why is Thunderbird including this thread as part of my 'Scope Memory' thread? What gives? Chris Pete wrote: Hi all I'm working on an application. I have been developing a form for users to enter/edit information. On the form I currently have provision for a user to enter up to 6 phone

RE: Coldfusion - Dynamic Forms

2007-05-26 Thread Pete
No idea? -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Sent: Sunday, 27 May 2007 2:07 AM To: CF-Talk Subject: Re: Coldfusion - Dynamic Forms Why is Thunderbird including this thread as part of my 'Scope Memory' thread? What gives? Chris Pete wrote: Hi all

Re: FLV beneath web root

2007-05-26 Thread Richard Cooper
I'm sure this is overkill but I finally got it working by doing the following. I created a new file extension to be processed by coldfusion of .cfflv. I added this to IIS with the same mime settings as .flv It now works within my player and I can dynamically grab the files :)

RE: Coldfusion - Dynamic Forms

2007-05-26 Thread Bobby Hartsfield
No clue... it's not doing it in outlook 2k7 ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Christopher Jordan [mailto:[EMAIL PROTECTED] Sent: Saturday, May 26, 2007 12:07 PM To: CF-Talk Subject: Re: Coldfusion - Dynamic Forms Why

Re: Coldfusion - Dynamic Forms

2007-05-26 Thread Jochem van Dieten
Christopher Jordan wrote: Why is Thunderbird including this thread as part of my 'Scope Memory' thread? What gives? Pete's message included the following header: References: [EMAIL PROTECTED] The message with that messageID is part of the Scope Memory thread so Thunderbird naturally threads

Re: Coldfusion - Dynamic Forms

2007-05-26 Thread Christopher Jordan
Yeah, I'm just wondering how it got that way. Chris Jochem van Dieten wrote: Christopher Jordan wrote: Why is Thunderbird including this thread as part of my 'Scope Memory' thread? What gives? Pete's message included the following header: References: [EMAIL PROTECTED]

RE: Scope Memory

2007-05-26 Thread Brad Wood
Application scope only exists once per application. Session exists once for each user. You might get away with bloated memory usage in application, but if you are not careful what you place in session your problem can very quickly multiply. I think Michael is saying that most memory problems

RE: cfadministrator won't start

2007-05-26 Thread Dwayne Cole
The URL looks fine. Again when I copie and past the URL into the Browser, it works. Maybe the problem is with the shortcuts effort to open the browser. I thought about changing the file associations for .cfm files to IE but then when I want to edit a .cfm file it would open in IE instead of

Re: Getting Key In A Structure

2007-05-26 Thread Brian Kotek
Also, just wondering why you'd be passing around the payOption (invoice) instead of the far more useful payOptionID (4)? On 5/25/07, Sean Corfield [EMAIL PROTECTED] wrote: structKeyList() On 5/25/07, James C. Montgomery [EMAIL PROTECTED] wrote: How can I access the value 4 of key in this

Re: SOT: How do you stay up on blogs?

2007-05-26 Thread Daniel Kim
The Google front end teach lead created a greasemonkey script for firefox that detects rss feeds on a page and allows you to add them to your Google Reader subscriptions. It is pretty slick - shows the type of feeds on the page, and also indicates if you are already subscribed.

Re: Getting Key In A Structure

2007-05-26 Thread James Holmes
I was wondering why anyone would have a structure with numbers as keys, which is essentially the same as an array (but without the power of all of the array functions). On 5/27/07, Brian Kotek [EMAIL PROTECTED] wrote: Also, just wondering why you'd be passing around the payOption (invoice)

Speaking of Scopes (was Re: Scope Memory)

2007-05-26 Thread C. Hatton Humphrey
Application scope only exists once per application. Session exists once for each user. You might get away with bloated memory usage in application, but if you are not careful what you place in session your problem can very quickly multiply. On that note I have a question - I am looking into