cfdocument hangs on slow images

2007-05-17 Thread Brad Wood
Please check out my post to the forums about my cfdocument problems as I am too lazy to retype it all here. Let me know if you have any information/suggestions. Summary: When cfdocument requests an image from a remote server and gets no response, the entire thread hangs and doesn't timeout

java unzip :: verify file

2007-05-17 Thread AJ Mercer
Hi, I have a cf script that is using java.util.zip.ZipFile to unzip - works great, except when... If the zip if corrupt it kills jRun. Does any one know if there is a way to verify / check the zip file to ensure it is not corrupt? Because it is dieing at the jRun level, I can not use cfcatch.

Re: cfdocument hangs on slow images

2007-05-17 Thread Robertson-Ravo, Neil (RX)
You have already double posted so you may as well just copy b paste it :-) 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

Re: Error setting up FCKEditor

2007-05-17 Thread Mike Kear
Your problem is as the error message says - its in line 71 where the FCKEditor component is being instantiated. I suspect it's to do with the path or a mapping. Try changing your current #basePath#fckeditor to explicitly list it out and see if the error is with #basePath#. For example change

Re: Best book to learn Fusebox and FLiP

2007-05-17 Thread Sean Corfield
On 5/16/07, DURETTE, STEVEN J (ATTASIAIT) [EMAIL PROTECTED] wrote: All, I have a semi-urgent need to learn Fusebox and FLiP. Can't get the funding (at the moment) for going to a training class, so what is the best book for learning it quickly? Jeff Peters just released Fusebox 5 FLiP:

Re: cfdocument hangs on slow images

2007-05-17 Thread Jochem van Dieten
Brad Wood wrote: Please check out my post to the forums about my cfdocument problems as I am too lazy to retype it all here. Let me know if you have any information/suggestions. Lazy questions get lazy answers. Jochem ~|

Re: Best book to learn Fusebox and FLiP

2007-05-17 Thread Robertson-Ravo, Neil (RX)
Is it a different code base? Do you/they as developers see it as a minor point update or a major? I would say that if it runs your previous apps unchanged then no harm in using a major upgrade. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN,

Re: cfdocument hangs on slow images

2007-05-17 Thread James Holmes
Yeah, I had a few good ideas but I'm too lazy to post them. On 5/17/07, Jochem van Dieten wrote: Brad Wood wrote: Please check out my post to the forums about my cfdocument problems as I am too lazy to retype it all here. Let me know if you have any information/suggestions. Lazy

Re: Best book to learn Fusebox and FLiP

2007-05-17 Thread Sean Corfield
On 5/17/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Is it a different code base? Same code base (the first major release to not be a rewrite). Do you/they as developers see it as a minor point update or a major? Well, that's the debate right now - and why we are running a poll

Parse Complex Text File

2007-05-17 Thread Robert Rawlins - Think Blue
Chaps, I'm trying to parse a text file into my database but struggling a bit as the text file is large and not particularly well formatted for this kind of thing, unfortunately it's the only version I have access to :-D (Oh the joy). The text file can be found here

Re: Franken-Fusion?

2007-05-17 Thread stylo stylo
I recently posted this about Ray Camden's projects and is related to the aim of your discussion: Personally, I think Adobe should buy all the projects from you (and a framework like Coldbox or something) as a reward for all your hard work and then support at arms length an open source

Re: Parse Complex Text File

2007-05-17 Thread Tom Chiverton
On Thursday 17 May 2007, Robert Rawlins - Think Blue wrote: It might be worth nothing this database is updated daily by the standards commission, so I'll be doing a fresh import every couple of days at least. I wouldn't consider a 5 minute parse time every few days to be a problem. -- Tom

RE: Parse Complex Text File

2007-05-17 Thread Robert Rawlins - Think Blue
Thanks for that Tom, I'll give it some thought, I've found a python script (another language of mine) that does the job, so I'm rewriting it in CF to see if that helps. Thanks, Rob -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 17 May 2007 10:22 To: CF-Talk

Optimize Query Write Output Time

2007-05-17 Thread ismail cassiem
Hi, I have a query: select * from table - runs for 3 seconds in Quer Analyser Output Analyse Grid - Fine Now for my Coldfusion report i execute the same query without outputing to screen, table cfoutput query=get_info tr tdtest(not a field)/td /tr /cfoutput /table Then the report runs

FCKeditor spell checker

2007-05-17 Thread Chris Hayes
Hi Folks Has anybody found an easy route to spell checking on FCKE without an extra client install? Do I head-down the SpellChecker road? I'm on a Win32 server and I don't think this is well supported in ASpell. Does anybody have this working satisfactorily? Any other suggestions? Would a

RE: FCKeditor spell checker

2007-05-17 Thread Pete
Try iespell - its only a suggestion. -Original Message- From: Chris Hayes [mailto:[EMAIL PROTECTED] Sent: Thursday, 17 May 2007 9:18 PM To: CF-Talk Subject: FCKeditor spell checker Hi Folks Has anybody found an easy route to spell checking on FCKE without an extra client install? Do

RE: Optimize Query Write Output Time

2007-05-17 Thread Robert Rawlins - Think Blue
Can we see you exact query code? There are a few things you can do to optimize, firstly don't use *, list the columns with a comma to separate them, it'll speed the query up. Next on your output scope your column to the query like #get_info.Code# and #get_info.descr#. That'll help for a start

Re: Optimize Query Write Output Time

2007-05-17 Thread ismail cassiem
Thank You, for the reply - This is the realy query and it executes for 3 - 4 seconds. cfquery name=get_info datasource=#dbsrc# dbtype=#dbtype# Select Distinct rtrim(Node1.Attrib_Code_Descr) as Node1 ,rtrim(Node4.Attrib_Code_Descr) as Node4 ,rtrim(Cust_Code_Srce) as Code ,rtrim(Cust_Name) as

ThreeSelectsRelated Default Values

2007-05-17 Thread Andy Mcshane
I have googled this all morning and have found no answer but many articles with the same problem and as my JS is limited I thought I would ask the question before diving into the unknown! I am using the ThreeSelectsRelated tag that I downloaded from somewhere, can't remember right now so I

Re: Optimize Query Write Output Time

2007-05-17 Thread Gert Franz
Hi Ismail, if you look at the debugging output, does it tell you how long it takes? If the time is the same as in the Query analyzer then you should measure the time the cfoutput needs. Since it could create a lot of data depending on the number of records. And what you can do is that you

FCKeditor spell checker

2007-05-17 Thread exH
Hi Folks Has anybody found an easy route to spell checking on FCKE without an extra client install? Do I head-down the SpellChecker road? I'm on a Win32 server and I don't think this is well supported in ASpell. Does anybody have this working satisfactorily? Any other suggestions? Would a

Forum app with image upload out there?

2007-05-17 Thread Will Tomlinson
Are there any forum apps where users can upload gallery photos? Did some googlin' with not much luck. I might use Galleon, then just customize it some. But thought maybe someone knows of somethin' out there. Thanks, Will ~|

Re: Parse Complex Text File

2007-05-17 Thread Claude Schneegans
I'm trying to parse a text file into my database Perfect job for CF_REExtract: - Go to http://www.contentbox.com/claude/customtags/REextract/testingREextract.cfm - enter [0-9]{5,5} *\(base 16\) * in RE1 - enter [0-9]{2,2}-[0-9]{2,2}-[0-9]{2,2} in RE2 - enter a sample of your file in the

RE: Best guess on Scorpio release?

2007-05-17 Thread Ben Nadel
As long as you guys are willing to guess about when ColdFusion 8 is going to come out... Why not make a contest out of it??? http://www.bennadel.com/coldfusion/contest.htm Come closest to guessing the actual release date of ColdFusion 8 (Scorpio) and win some cool stuff (cool stuff not

CF_ResendUndeliverableMail4

2007-05-17 Thread James Buckingham
Does anybody have a MX7.02 compatible version of this plug? I need to upgrade ours but before I start recoding I thought I'd ask. Cheers, James ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create

RE: cfdocument hangs on slow images

2007-05-17 Thread Brad Wood
No doubt from lazy people... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 2:45 AM To: CF-Talk Subject: Re: cfdocument hangs on slow images Brad Wood wrote: Please check out my post to the forums about my cfdocument problems as I am

Re: FCKeditor spell checker

2007-05-17 Thread Matthew Friedman
If you have access to ASP on the server, try aspspellcheck. It is great, we intergrated it with TINY MCE editor but you can do it with almost any text area. and it is only about $99 for the licesnse and customizable. Matt Hi Folks Has anybody found an easy route to spell checking on FCKE

RE: cfdocument hangs on slow images

2007-05-17 Thread Brad Wood
All right, you asked for it. I was actually hoping to contain any conversation which arose to one specific place since in the past it has been difficult to carry on two conversations about the same topic on two separate forums. =

OT: javascript

2007-05-17 Thread Chad Gray
I want to write a javascript function that I can use on all of my forms and inputs to disable a text input. So I want to pass to the function the form's ID and the text input's ID to be disabled. How do I append the functions attributes to my document command? My javascript below does not

Problem posting to CF-Talk

2007-05-17 Thread Peterson, Chris
Occasionally when I hit reply and type a response on top of a current post, then email it to cf-talk, I get a response that 'Base64 encoded emails not accepted' Why in the world would 90% of my replies typed exactly the same way go through fine, and 10% get this strange bounce? All I do in that

RE: Problem posting to CF-Talk

2007-05-17 Thread Adkins, Randy
I have received that quite a few times in the past. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 9:43 AM To: CF-Talk Subject: Problem posting to CF-Talk Occasionally when I hit reply and type a response on top of a current post, then

Re: Forum app with image upload out there?

2007-05-17 Thread Hatem Jaber
Have you seen http://cfmbb.org ? Rick upgraded Galleon with lots of features, i'm using it myself on a couple of projects that I plan on releasing soon. Check it out, you'll be very happy with it! - Original Message - From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk

RE: java unzip :: verify file

2007-05-17 Thread Jake Churchill
Can't you just read the file as a file object inside a try/catch and if it fails, the file is assumed to be corrupt _ Jake Churchill CF Webtools 11204 Davenport, Ste. 200b Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 -Original Message- From: AJ Mercer

Re: Problem posting to CF-Talk

2007-05-17 Thread Jochem van Dieten
Peterson, Chris wrote: Occasionally when I hit reply and type a response on top of a current post, then email it to cf-talk, I get a response that 'Base64 encoded emails not accepted' Why in the world would 90% of my replies typed exactly the same way go through fine, and 10% get this strange

Re: Problem posting to CF-Talk

2007-05-17 Thread Michael Dinowitz
Your mail client is not set to reply in same format or reply as plain text. It's trying to add html style markup to the email and then send it in base64 encoded format. In addition, these types of clients tend not to send a plain text version of the email along with the html which would trip

RE: Problem posting to CF-Talk

2007-05-17 Thread Peterson, Chris
Michael, I am using Outlook 2003, yet I have Word disabled, and read / reply in plain text turned on. The only reason I was un-sure was that the majority of my replies go through just fine. =) Thanks for your reply, I will further investigate is Outlook is doing something screwy only part of

Re: Optimize Query Write Output Time

2007-05-17 Thread ismail cassiem
Hi, I get the following result: I did the #get_info.Code# but still no luck. get_info (Records=35269, Time=3425ms) = 3425 Milliseconds = 3.425 Seconds (Coldfusion) = 4 sql analyser it when it writes that's the problem. Execution Time 48910 milliseconds 0 ms

User's getting other user's sessions

2007-05-17 Thread robert t Flesher
All, We are having a problem which involves users that log into a system, then after logging in get their session switched to another user's session. We are running 4 cold fusion MX 7 servers behind a CISCO layer 4 switch for load balancing, but we have already verified the users are not

RE: javascript

2007-05-17 Thread Adrian Lynch
document[formID][textInputID].disabled=true; Adrian -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: 17 May 2007 14:41 To: CF-Talk Subject: OT: javascript I want to write a javascript function that I can use on all of my forms and inputs to disable a text input. So I

Using Spry

2007-05-17 Thread Chad McCue
I am currently using SPRY to display list of candidates found in a search by an employer. There is the ability for the employer to save candidates, I would like the search results not to display the Save Candidate link if the candidate is not already saved by the employer. I have a list of

Re: cfdocument hangs on slow images

2007-05-17 Thread Brad Wood
I'm waiting for your good ideas James :) ~Brad All right, you asked for it. I was actually hoping to contain any conversation which arose to one specific place since in the past it has been difficult to carry on two conversations about the same topic on two separate forums.

Override built in tags.

2007-05-17 Thread Daniel Baughman
I want to over ride the built in tags to perform additional operations, then perform their normal operations. The reason I dont write my own CF_abort is because I already have cfabort in use all over the place. I'd like to make a system wide change without finding ever place a cfabort is used.

Re: Override built in tags.

2007-05-17 Thread Hatem Jaber
Why don't you write a method/function that returns a string using cfsavecontent. You can place it everywhere you like and control it from one place assuming that you want the same functionality all over the place. - Original Message - From: Daniel Baughman [EMAIL PROTECTED] To:

Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Ali Majdzadeh
Hi: Everybody says Frameworks make life easier. Does it? If yes, please tell me which one can work as a starter for me? Model-Glue looks nice and easy, Mach-II looks very powerful and Fusebox claims to be the most popular. Are they completely different? Is it possible to learn one and then

RE: Override built in tags.

2007-05-17 Thread Dave Watts
I want to over ride the built in tags to perform additional operations, then perform their normal operations. The reason I dont write my own CF_abort is because I already have cfabort in use all over the place. I'd like to make a system wide change without finding ever place a cfabort is

Re: Dealing with Large queries and csv files

2007-05-17 Thread Tony
thank you... however, my bottleneck isnt the file i/o, its the taking of the query object and inserting the comma's in between each value and the cr/lf at the end of a row. thats the problem. getting the data into a file, is easy and quick. i see, through my test harness, that my bottleneck is

Re: cfdocument hangs on slow images

2007-05-17 Thread James Holmes
Perhaps getting the content and the images via CFHTTP, outside of the CFDOCUMENT tag, will yield better results. This way the images will be local and the cfdocument tag won't be locked up. On 5/17/07, Brad Wood [EMAIL PROTECTED] wrote: I'm waiting for your good ideas James :) ~Brad

Re: Override built in tags.

2007-05-17 Thread Tom Chiverton
On Thursday 17 May 2007, Daniel Baughman wrote: Does cf support that? No, I don't think so. Core tags are hard coded. if not will apollo? Sure, the source for the framework is open, so you could go ahead and mangle any method you like. Did you mean apollo ? -- Tom Chiverton Helping to

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Tom Chiverton
On Thursday 17 May 2007, Ali Majdzadeh wrote: Everybody says Frameworks make life easier. Does it? Yes*. If yes, please tell me which one can work as a starter for me? Fusebox 3. Gives you a good overview of how and why to use one, but isn't nearly as complex as other frameworks. they

Re: OT: javascript

2007-05-17 Thread Charlie Griefer
in this case, you don't need 'foo'. just 'moo'. even though they could be in different forms, an id value should not be repeated on a page. so... function disabler(textInputID) { document.getElementById(textInputID).style.disabled=true; } form id=foo input type=text id=moo / input

Re: javascript

2007-05-17 Thread Jim Davis
I want to write a javascript function that I can use on all of my forms and inputs to disable a text input. So I want to pass to the function the form's ID and the text input's ID to be disabled. After fixing the reference to the field as Adrian suggested you can genericize this further.

RE: cfdocument hangs on slow images

2007-05-17 Thread Brad Wood
I thought about that. Besides the fact that it will require me to pre-parse the HTML, store the images locally, and then modify the HTML to point to the new location, which seems to fundamentally defeat the point of having cfdocument do it for me-- I haven't proven that CFHTTP won't suffer from

RE: Override built in tags.

2007-05-17 Thread Daniel Baughman
Oops I meant to say scorpio, not apollo. But it looks like no dice, eh? -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 9:22 AM To: CF-Talk Subject: Re: Override built in tags. On Thursday 17 May 2007, Daniel Baughman wrote: Does cf

Re: Using Spry

2007-05-17 Thread Raymond Camden
You should make your XML return a flag for the candidate that signifies if it is saved or not. You can do the spry:if in your display. On 5/17/07, Chad McCue [EMAIL PROTECTED] wrote: I am currently using SPRY to display list of candidates found in a search by an employer. There is the ability

RE: OT: javascript

2007-05-17 Thread Daniel Baughman
I'm pretty sure you want document.getElementById(textInputID).disabled = true not document.getElementById(textInputID).style.disabled = true; -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent:

Re: OT: javascript

2007-05-17 Thread Charlie Griefer
On 5/17/07, Daniel Baughman [EMAIL PROTECTED] wrote: I'm pretty sure you want document.getElementById(textInputID).disabled = true not document.getElementById(textInputID).style.disabled = true; indeed. sorry 'bout that.

Re: User's getting other user's sessions

2007-05-17 Thread James Wolfe
We had this problem last year. We spoke to a whole bunch of CF Gurus and even to the people at Macromedia (in particular a very unhelpful, derogatory gentleman named Serge who denied that we were having the problem even after I proved it to him). Either way, general suggestions were to ensure

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread James Wolfe
I cant speak about Frameworks in general, but I can tell you to avoid FuseBox like the plague. If all you ever coded in was fusebox, then maybe its an OK framework to work with. We hired a new developer who told us that FuseBox was the bomb and that he knew it. We gave him a specific

Errant Web-inf directories

2007-05-17 Thread Deanna Schneider
Hey all, So, we have a single instance of CF 6.1 installed on linux (no clustering). However, we have multiple instances of the web-inf/* directories. The server admin's don't know where they came from, or what to do about them. They seem to be in subdomains or virtual servers, but they're not

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Greg Luce
I have to disagree. Fusebox 3 is not the way to go. Get the new Jeff Peters FB5.1 book. And download the sample apps out there. I like WeGotWidgets for teaching new Fuseboxers. (FB 3 had the worst layout system, don't get newbies involved in that) Greg On 5/17/07, Tom Chiverton [EMAIL

RE: User's getting other user's sessions

2007-05-17 Thread Brad Wood
Interesting. We seem to have that problem every once in a while, but usually it boils down to a user E-mailing a link to another user with a jsessionid or cfid/cftoken in it. ~Brad -Original Message- From: James Wolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 10:39 AM To:

RE: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Peterson, Chris
I am coding my first app in Model-Glue and once I got over the concepts, its really simple. Also, if this is your first one, take a peek at Coldbox (http://www.luismajano.com/index.cfm?event=ehProjects.dspColdbox) When I stumbled upon this, I was surprised it didn't have more press. It has a

RE: User's getting other user's sessions

2007-05-17 Thread Brad Wood
OF course, we schedule our servers to restart every night so we wouldn't know whether or not it was fixed. ~Brad -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 10:56 AM To: CF-Talk Subject: RE: User's getting other user's sessions Interesting.

RE: Errant Web-inf directories

2007-05-17 Thread Dave Watts
So, we have a single instance of CF 6.1 installed on linux (no clustering). However, we have multiple instances of the web-inf/* directories. The server admin's don't know where they came from, or what to do about them. They seem to be in subdomains or virtual servers, but they're not

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Greg Luce
I cant speak about Frameworks in general, but I can tell you to avoid FuseBox like the plague. Now this is just a rediculous idea. There are thousands of Fusebox developers out there writing tens of thousands of applications with various degrees of success I'm sure, but I don't think it's a

Re: User's getting other user's sessions

2007-05-17 Thread Christopher Jordan
OT-OT... My company has dealt with Serge too, and I have to agree with your assessment of him. Small world huh? James Wolfe wrote: We had this problem last year. We spoke to a whole bunch of CF Gurus and even to the people at Macromedia (in particular a very unhelpful, derogatory gentleman

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Raymond Camden
Ali, a few thoughs. Frameworks, for me, makes my life VERY easy. But it is important to note that this doesn't mean LESS work. Just EASIER work. (Sorry for all the caps.) One of the things that surprised me when I started working with frameworks was the amount of extra code. Sometimes it feels

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Charlie Griefer
On 5/17/07, James Wolfe [EMAIL PROTECTED] wrote: I cant speak about Frameworks in general, but I can tell you to avoid FuseBox like the plague. If all you ever coded in was fusebox, then maybe its an OK framework to work with. We hired a new developer who told us that FuseBox was the bomb

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Aaron Roberson
First, you need to understand that there are different kinds of frameworks. There are controller frameworks (such as MG, M2, FB, CB, etc), DI/ioC frameworks (CS and LW) and ORM frameworks (Reactor, Transfer and oB). I like ColdBox for my controller framework (most documented, and suites my

Los Angeles CFMX Firms

2007-05-17 Thread Rob Sherman
Hi, I'm working for a client (Fortune 500) that is interested in outsourcing an ongoing project list of websites. They want a development house / firm situated in Los Angeles, preferably the west side / southbay areas near Santa Monica, Venice, Marina Del Rey, El Segundo, LAX. The client is

RE: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Scott Stewart
I'll pitch this out there It really depends on the application in question... If it's a very small app, a framework may not even be necessary. It may even create headaches. Very large apps are great fodder for a framework, because it organizes the hundreds, or thousands of templates into

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Robertson-Ravo, Neil (RX)
Devils advocate... To be fair, don't pan blame on the past developer on someones word as you haven't seen the code, it could be very well written and it is the current developers who simple don't understand it (not saying it is, just that it could be). If may well be a pile of crap (not

Re: User's getting other user's sessions

2007-05-17 Thread Robertson-Ravo, Neil (RX)
Really? I do hope that was sarcasm? :-\ 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 may also be

Re: Apache with Vhosts, SSL, and CF

2007-05-17 Thread Hatem Jaber
First of all, thanks to everyone who helped! Second, this is an update for those of you who are interested: SSLPassPhraseDialog builtin is not supported on Win32 Unfortunately Apache on Windows does not support encrypted private keys. To resolve this you will need to remove the private key

RE: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Damien McKenna
-Original Message- From: Ali Majdzadeh [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 11:03 AM Subject: Does CF Framework make life easier? Which one to start? Everybody says Frameworks make life easier. Does it? Yes, from numerous standpoints: * Forces you to bring more

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Christopher Jordan
Aaron, Would you mind explaining some of the acronyms you threw around? Specifically: what is DI/ioC? What is ORM (I should know my CFUG just did a preso on Transfer I think, but I missed out)? You say, they all solve different problems. What are those problems, and how do these frameworks go

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Matt Quackenbush
On 5/17/07, James Wolfe [EMAIL PROTECTED] wrote: I cant speak about Frameworks in general, but I can tell you to avoid FuseBox like the plague. If all you ever coded in was fusebox, then maybe its an OK framework to work with. We hired a new developer who told us that FuseBox was the bomb

CFUNITED-07 pre-conference classes + iPod raffle

2007-05-17 Thread Michael Smith
Want to go more in depth on topics from CFUNITED? Then come to one of our Pre-conference clases from the experts. Conveniently located at the CFUNITED hotel in Bethesda MD. Plus everyone who signs up before Friday 6/15/07 5pm EDT will be entered in a raffle to win one Apple iPod Nano. The iPod

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Robertson-Ravo, Neil (RX)
CS = ColdSpring IoC = inversion of control DI = I presume Direct Invocation? (as in Explicit Invocation?) not sure about that one! ORM = Object Relationship Mapping This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division

Re: Does CF Framework make life easier? Which one to start?

2007-05-17 Thread Charlie Griefer
On 5/17/07, Christopher Jordan [EMAIL PROTECTED] wrote: Aaron, Would you mind explaining some of the acronyms you threw around? Specifically: what is DI/ioC? What is ORM (I should know my CFUG just did a preso on Transfer I think, but I missed out)? You say, they all solve different

Re: Apache with Vhosts, SSL, and CF

2007-05-17 Thread Hatem Jaber
I spoke too soon. When I access the site from the server directly, it works but with an error regarding the certificate. When I tried from my local machine to access that page, it gave me a Cannot find server page. What's the cause of this? Thanks! - Original Message - From: James

GetTempDirectory() stopped working

2007-05-17 Thread Ben Nadel
Hey All, Out of no where, GetTempDirectory() started returning empty string on both our production and dev servers. By restarting the CF service locally, it was fixed. We can restart CF in production, but would love NOT to do that. Has anyone else had this happened? It happened yesterday at

RE: Apache with Vhosts, SSL, and CF

2007-05-17 Thread Damien McKenna
-Original Message- From: Hatem Jaber [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 1:00 PM Subject: Re: Apache with Vhosts, SSL, and CF I spoke too soon. When I access the site from the server directly, it works but with an error regarding the certificate. When I tried

Re: Apache with Vhosts, SSL, and CF

2007-05-17 Thread Hatem Jaber
Damien, thanks for the reply. I gave the link to a couple of my friends and tried the link from my Wife's computer and everyone was able to access the site. For some reason it was my machine that was not able to access the site. Than I remembered that I used the same host name in my host file

Re: cfloop output into columns - help

2007-05-17 Thread Christopher Chin
Using Bobby's simple code, I got it to work (yes, fix the problem; don't cover it up). table tr cfloop query=getFoo cfif currentrow LTE recordcount td#getFoo.fname# #getFoo.lname#/td /cfif cfif

Re: Optimize Query Write Output Time

2007-05-17 Thread Gert Franz
Well its right there... 35000 result records. Honestly Ismail, who reads line 17414 when the report has 50 pages? That CF uses so much time to output it and retrieve it from the resultset is clearly understandable. Try narrowing it down. Railo is much faster in generating such output, but I

Re: Optimize Query Write Output Time

2007-05-17 Thread Doug Bezona
Not to mention, if that 35000 row table is being output directly to the browser, the browser may take as long to render it as CF takes to generate it. On 5/17/07, Gert Franz [EMAIL PROTECTED] wrote: Well its right there... 35000 result records. Honestly Ismail, who reads line 17414 when the

Spry dataset question

2007-05-17 Thread Yves Arsenault
Hi there... hope you're all having a great day! I was wondering if there is a way to get Spry to reload an XML data set I'm assuming I should be able to use: dsVar.startLoadInterval(1000); // to load it in a second And then just use: dsVar.stopLoadInterval(); Or, is there an easier

Re: Spry dataset question

2007-05-17 Thread Doug Bezona
dsVar.loadData() On 5/17/07, Yves Arsenault [EMAIL PROTECTED] wrote: Hi there... hope you're all having a great day! I was wondering if there is a way to get Spry to reload an XML data set I'm assuming I should be able to use: dsVar.startLoadInterval(1000); // to load it in a

RE: cfloop output into columns - help

2007-05-17 Thread Dave Francis
I know, I know. I have decided to fix the problem, not cover it up. -Original Message- From: Christopher Chin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 17, 2007 1:06 PM To: CF-Talk Subject: Re: cfloop output into columns - help Using Bobby's simple code, I got it to work (yes, fix

Re: User's getting other user's sessions

2007-05-17 Thread Dave Ferguson
I have seen this a few times before. I do remember in one occurrence it was caused by a misuse of variable scoping. The others a reboot or restart of service fixed the issue. --Dave http://www.dkferguson.com/BlogCFC ~|

Re: Spry dataset question

2007-05-17 Thread Yves Arsenault
Perfect. Thanks! Yves On 5/17/07, Doug Bezona [EMAIL PROTECTED] wrote: dsVar.loadData() -- Yves Arsenault Love is the only force capable of transforming an enemy into a friend. --Martin Luther King, Jr. ~| Deploy Web

Mark Drew on his cfEclipse Frameworks Explorer - starting now

2007-05-17 Thread Nick Tong
The title says it all but: Mark Drew on his cfEclipse Frameworks Explorer - starting now: http://adobechats.adobe.acrobat.com/frameworksexplorer/ -- Nick Tong web: http://talkwebsolutions.co.uk blog: http://succor.co.uk f..works:http://cfframeworks.com short urls:

SOT: CFEclipse temporary hangs

2007-05-17 Thread Bryan Stevenson
Hey All, I use CFEclipse on Windows XP (run on a Virtual PC) and it seems to have a nasty habit of going to sleep if yu aren't working with it for 5 minutes or so. When I come back to it to do something, it seems to hang for 15-30 seconds while it wakes up. Other than that sleepiness issue

Re: Errant Web-inf directories

2007-05-17 Thread Deanna Schneider
On 5/17/07, Dave Watts wrote: What's in those other WEB-INF directories? I suspect they don't contain the entire contents of the original WEB-INF directory. Well, in one example, there are 19,195 .class files. Not as many as are in the root web-inf, no. But, a sizable amount.

Concepts of Developing Locally with CFEclipse

2007-05-17 Thread Rick Root
Hi, my name is Rick.. and I develop in a production environment. Is there a 12 step group for Production Developers Anonymous? I'd like to start using a local copy of Developer Edition for developing my apps... but I have a couple of questions. Currently I'm still using Homesite+ but I have

Re: SOT: CFEclipse temporary hangs

2007-05-17 Thread Doug Bezona
Do you minimize it when you aren't working with it? XP will push some stuff out of memory when you minimize an app, and Eclipse does take some time to reconstitute itself. If you are lowish on memory, it will be even more noticeable. It may also be some sort of similra memory management being done

RE: Concepts of Developing Locally with CFEclipse

2007-05-17 Thread Adkins, Randy
Rick, What I do with my 8+ applications (websites/products), I have CFMX 7 Dev Edit installed. I have a copy of IISAdmin.net installed. I have all my sites under: D:\wwwroot\development\client sites\site 1 D:\wwwroot\development\client sites\site 2 . With the IISAdmin.net tool, I set the

Re: setting var inside cffunction

2007-05-17 Thread John P
That worked! Thanks Charlie! I've never used cfldap, so i'm not sure you can alias the columns that way (maybe someone who has more familiarity with it can chime in). what i was suggesting was a query of queries. assuming the cfldap returns a standard CF query object (again, an assumption),

RE: Concepts of Developing Locally with CFEclipse

2007-05-17 Thread Scott Stewart
If you're running any of the Windows professional versions (XP Pro etc.) You should either have installed or can install IIS.. So you have a local webserver. ColdFusion Dev version will run quite happily on that. Link your datasources to your development data servers, provided that you can. I

  1   2   >