RE: Is Coldfusion losing it biggest asset?

2011-01-17 Thread Andrew Scott
I have to agree with this. Regards, Andrew Scott http://www.andyscott.id.au/ > -Original Message- > From: Adrocknaphobia [mailto:adrocknapho...@gmail.com] > Sent: Tuesday, 18 January 2011 4:22 PM > To: cf-talk > Subject: Re: Is Coldfusion losing it biggest asset? > > > Do yourself (an

Re: Is Coldfusion losing it biggest asset?

2011-01-17 Thread Adrocknaphobia
Do yourself (and the community) a favor... train a PHP/Java/.NET/Ruby developer in ColdFusion if you are struggling to hire someone. CF is so easy to learn you'll likely spend less time training a developer than you would searching for one. Our anecdotal evidence shows that an experienced OO devel

CFSPREADSHEET

2011-01-17 Thread Doug Ford
Hi folks - I am looking for some people who have used this tag or have created spreadsheets with a larger data set (more than 200 records). CFSpreadSheet works fine with under 100 records, but when you start going above 200, 500, or even 700 records, the systems grinds to almost a halt, and it

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Dave Watts
> One of us apparently misunderstood the OP's issue.  :-)  I thought he said > that the file was being renamed, as opposed to overwritten.  You are stating > that it is indeed being overwritten.  I'm not sure which the case is, but as > Robert pointed out, it might be a file lock issue.   No, it'

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Matt Quackenbush
On Mon, Jan 17, 2011 at 4:38 PM, Dave Watts wrote: > > > I would file a bug report. 'Overwrite' should always overwrite. > > But that's exactly what it's doing. It's overwriting the file. > > Dave Watts, CTO, Fig Leaf Software > One of us apparently misunderstood the OP's issue. :-) I though

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Dave Watts
> I would file a bug report.  'Overwrite' should always overwrite. But that's exactly what it's doing. It's overwriting the file. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, a

RE: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Andrew Scott
I don't think he said it was not written, if I read it right he said it was written but in upper case. This is where I will point out that ColdFusion leverages of Java libraries here, and as it is case sensitive one has to convert to a specific case to do a comparison to begin with and Adobe have

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Matt Quackenbush
Oh. Yeah. What he said. :-) On Mon, Jan 17, 2011 at 2:30 PM, Robert Harrison wrote: > > It's possible the file you were trying to overwrite had a file lock left on > it from some other program that opened it (for example, an FTP session). > Nothing will overwrite a locked file. I've seen it

RE: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Robert Harrison
It's possible the file you were trying to overwrite had a file lock left on it from some other program that opened it (for example, an FTP session). Nothing will overwrite a locked file. I've seen it happen on Windows machines now and again. Robert B. Harrison Director of Interactive Servic

RE: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Rick Faircloth
As far as I remember, I've never had any problems with cfimage and rewriting the filename when there's a conflict and I only using Windows, both locally and on my server. Rick -Original Message- From: Kris Jones [mailto:kris.jon...@verizon.net] Sent: Monday, January 17, 2011 2:39 PM To:

RE: ExtJS Text Area, MySQL, ColdFusion and Enter Key

2011-01-17 Thread Brook Davies
What is the error you are getting? Are you using firebug to debug the error? Turn on the script tab / break on error / option to break as soon as the error is hit, then look at the data/vars and try to see where its choking. Telling us what the error is would help... I have not had any problems wi

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Matt Quackenbush
I would file a bug report. 'Overwrite' should always overwrite. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.c

Re: CFIMAGE - case sensitivity on filename - CF9 vs CF9.01

2011-01-17 Thread Kris Jones
Figured out what the issue was here (was not related to difference in version). There was a file with the same name (but uppercase) already in the directory. The code specified to overwrite on name conflict. This environment is windows, so I guess CFImage doesn't actually rename the file on overw

RE: Is Coldfusion losing it biggest asset?

2011-01-17 Thread Justin Hansen
I'll chime in for the Midwest. I'm looking to hire 4 CF developers in the Kansas City (Overland Park, KS) area. Send your resumes to care...@uhlig.com Thanks, Justin Hansen Senior Vice President - Software Uhlig LLC -Original Message- From: Mark A. Kruger [mailto:mkru...@cfwebtools.co

Re: server load

2011-01-17 Thread Russ Michaels
You need to do some load testing this article should help http://www.west-wind.com/presentations/webstress/webstress.htm Russ On Mon, Jan 17, 2011 at 5:40 PM, John M Bliss wrote: > > We have a production server (IIS & ACF8) curren

server load

2011-01-17 Thread John M Bliss
We have a production server (IIS & ACF8) currently dedicated to our single most mission-critical app. We're considering adding a second less mission-critical app to that server. What's the easiest/best way for us to more-or-less prove to ourselves that, under typical load, server has sufficient

Re: CFSearch and SOLR

2011-01-17 Thread Dominic Watson
Yeah, huge isn't it. Makes for such simple code too :) The thing that swayed me was the data import handler, having Solr index the collection direct from the database near instantly. Being able to indexing on a non working collection and then replicate to the clustered live collections was also p

Url Rewrite rule help

2011-01-17 Thread Wil Genovese
I'm working on a CF site and converting the standard url strings to SES urls. So far we have most of it working. But I'm working on this rewrite rule and I can not figure out why this fails when I try to add product paging. Here is the rule RewriteRule ^([^/]*)/parts/([\w&\-/]+)?$ /mypage.cfm

ExtJS Text Area, MySQL, ColdFusion and Enter Key

2011-01-17 Thread Richard White
Hi, I am using ExtJS text area on a form, which posts the data to a cfm page, which in turn stores the data into MySQL database. Then I use CF to get data out of database, and convert the data to json using toJSON.queryToJSON which sends the data to an ExtJS grid. If the user hits the enter k

Re: CFSearch and SOLR

2011-01-17 Thread Dan Baughman
What I ended up doing is using CFINDEX/CFCOLLECTION to create and index the collection but then using a manually cfhttp request to the localhost solr index to get the facet counts. In my scenario the 4 custom fields wasn't a limitation as much as not getting the facet counts was. This thing is e

Re: Mailing List program

2011-01-17 Thread Stefan Richter
If you are on a Mac then take a look at Direct Mail. I like it as it allows you to pull lists directly from a database and also offers tracking, mail merge and all the core features one would expect. http://ethreesoftware.com/directmail/index.php Obviously this is a desktop app - nothing to do

Re: Mailing List program

2011-01-17 Thread Asim Manzur
I meant the program which I can use to sent mass mail out. like CFMagic List. I don't mind paying but need the solid app which I can modify later for custom requirements. ~| Order the Adobe Coldfusion Anthology now! http://www.

Re: cfimage write problems

2011-01-17 Thread Raymond Camden
Yeah I seem to remember that trick working in the past. You have to assume your remote service doesn't care about a url param called ext. To be safe, I'd use: &rayrules=.gif On Mon, Jan 17, 2011 at 9:13 AM, Stefan Richter wrote: > > Ah I see. Guess I could try this by appending &ext=.gif to

Re: cfimage write problems

2011-01-17 Thread Stefan Richter
Ah I see. Guess I could try this by appending &ext=.gif to the URL then... Thanks. On 17 Jan 2011, at 14:41, Raymond Camden wrote: > > I think - stress think - CF handles the result based on the file name > in the URL. So if CF had seen foo.gif at the end, it would have > assumed a gif. In yo

Re: cfimage write problems

2011-01-17 Thread Raymond Camden
I think - stress think - CF handles the result based on the file name in the URL. So if CF had seen foo.gif at the end, it would have assumed a gif. In your case there is no obvious extension so maybe CF didn't know what to assume. On Mon, Jan 17, 2011 at 7:31 AM, Stefan Richter wrote: > > Stil

Re: cfimage write problems

2011-01-17 Thread Stefan Richter
Still not sure why CF complained, but I am having more luck using this: http://www4d.wolframalpha.com/Calculate/MSP/MSP79419e1a6ei6h30076g3170cdffcai81067?MSPStoreType=image/gif&s=55"; resolveurl="No" > Cheers Stefan On 15 Jan 2011, at 19:10, St

Re: CFSearch and SOLR

2011-01-17 Thread Dominic Watson
p.s. I started blogging about how I accessed solr directly in CF here: http://fusion.dominicwatson.co.uk/2010/12/apache-solr-or-departing-from-confines.html and http://fusion.dominicwatson.co.uk/2010/12/apache

RE: CFSearch and SOLR

2011-01-17 Thread Russ Michaels
Seems a custom cfsearch tag might be useful here if Adobe have not implemented it very well. Russ -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: 17 January 2011 09:08 To: cf-talk Subject: Re: CFSearch and SOLR I tried and ended up doing it directl

cf-talk@houseoffusion.com

2011-01-17 Thread blizzm2004
cf-talk@houseoffusion.com i didn't ever expect to give this a try you are probably taking care of yourself before this i was overwhelmed all of my friends are envious of me now http://shorten.ws/15edba consider this __ Do You Yahoo!? Tired of spam?

Re: CFSearch and SOLR

2011-01-17 Thread Dominic Watson
I tried and ended up doing it directly. As far as I could see it was not possible. Using Solr directly wasn't too much bother and the benefits were more than worth it. On 16 January 2011 23:25, Dan Baughman wrote: > > Hi List, > > Has anyone setup any of the complex Facet stuff that Solr suppo