Re: getting min value based on inputs

2009-09-07 Thread Tom Chiverton
On Saturday 05 Sep 2009, b...@bradwood.com wrote: I believe it would take #plans x #lines tries to complete, but the good news multiplication and addition are very fast operations even when done millions of times. :) Yup, I do a brute force search, store the results, and then reporting to the

Re: Embedding Flash Files in CF Page

2009-09-07 Thread Tom Chiverton
On Saturday 05 Sep 2009, Chris Montgomery wrote: Well, after trying everything I can think of, this isn't working. Could there possibly be some mime type issues with the .flv files? I'm testing this on my local development box, WinXP Pro, CF8, using the built-in web server with CF. Any 404's

Re: Stung by HostMySite price increase?

2009-09-07 Thread Claude Schneegans
Most of the companies I work for INSIST on *everything* Microsoft because in their eyes, *only* Microsoft is suitable for stuffed shirt corporate work. True, And IMHO the only reason is the incompetence of managers. The bigger the organization is, the higher the decision maker is, And the

RE: Stung by HostMySite price increase?

2009-09-07 Thread Rick Faircloth
I would think that large corporations place great value on products whose use adheres to a strict chain-of-accountability for performance rather than open source software, which from my limited point-of-view, belongs to no one and, therefore, offers fuzzy accountability. Now, realize, I've used

Hot Fixes Explained

2009-09-07 Thread Glyn Jackson
After installing the new hotfix chf8010002.jar in my libs/update folder I have the following... chf8010002.jar hf801-1875.jar hf801-1878.jar hf801-71634.jar now it states in cfadmin the update level is hf801-1875.jar (is this the case? what about the chf8010002 I just installed?) in the tech

RE: getting min value based on inputs

2009-09-07 Thread brad
Ok Greg, I went ahead and just stuck the code and explanation into a blog post since it was kind of long. http://www.codersrevolution.com/index.cfm/2009/9/7/Phone-Plan-Matchup-SQL-Brute-Force-Method Keep in mind this really just one way to do it, and it might not be the best. I also considered

Re: Stung by HostMySite price increase?

2009-09-07 Thread Jordan Michaels
I'm kinda jumping into the middle of this thread but I thought it would be worth mentioning that I've had exceptionally good experiences with PostgreSQL. It's licensed even more liberally then MySQL, and is regularly benchmarked at being faster with complex queries then MySQL is. I started

Re: Stung by HostMySite price increase?

2009-09-07 Thread denstar
David, your response was artful, I'm going to put a cool dude check next to your name in my book. :) Did you bring in any hired guns/experts for your MySQL stuff? I think the Dolphin is blue, that might be your problem right there! =) We all have our strengths and weaknesses, which is pretty

Re: Stung by HostMySite price increase?

2009-09-07 Thread denstar
On Mon, Sep 7, 2009 at 9:53 AM, Rick Faircloth wrote: ... It's just the nature of business, it seems, that big businesses like working with big businesses.  Less efficient?  perhaps... More costly?  perhaps... more comforting? probably... Sleeping soundly at night is worth a lot of money...

Re: Hot Fixes Explained

2009-09-07 Thread Mike Chabot
The latest hotfix is 8010003. http://kb2.adobe.com/cps/511/cpsid_51180.html The cumulative hotfix 3 contains all the prior hotfixes, so delete everything else in that folder then restart the ColdFusion service. There should only be one file in that directory when you are done. If you won't want

Form field auto-fill, auto-eliminate from query

2009-09-07 Thread Les Irvin
Can CF do this? I have a database of, say, 1000 song titles. I want a user to be able to input one of those song titles into a form. A select box with 1000 options is pretty unwieldy. Can CF eliminate irrelevant songs as the user types? For example: User types B, only those titles starting

Re: Form field auto-fill, auto-eliminate from query

2009-09-07 Thread Dominic Watson
It sure can, you have: cfform... cfinput autosuggest=... .../ /cfform Ben Forta on the matter: http://www.forta.com/blog/index.cfm/2007/5/31/ColdFusion-Ajax-Tutorial-1-AutoSuggest How is your javascript? If good, I'd recommend plugging into a js framework directly and using an autosuggest

Re: Hot Fixes Explained

2009-09-07 Thread Andy Allan
Note that the latest security fixes are NOT included in 8010003. Andy 2009/9/7 Mike Chabot mcha...@gmail.com: The latest hotfix is 8010003. http://kb2.adobe.com/cps/511/cpsid_51180.html The cumulative hotfix 3 contains all the prior hotfixes, so delete everything else in that folder then

SSL and https in ColdFusion

2009-09-07 Thread Richard McKenna
Hi all, I'm using SSL in a site for the first time and wasn't sure how to reference external files within my pages (images, css, javascript etc.) I'm forcing the pages to use SSL with the following code, which will be placed in my Application.cfc in the onRequest method. cfif CGI.HTTPS EQ

Re: SSL and https in ColdFusion

2009-09-07 Thread Scott Stroz
For images/css/js files, if you use a relative path, the browser will automatically use the protocol for the current page, so if your page is HTTPS and you use a relative path for an image, the image will be loaded using HTTPS. The bindings will call the onRequest in App.cfc as that is juts a