Re: Hiding email address from spiders

2011-10-12 Thread Al Musella, DPM
That is a nice captcha.. most of them are so hard for people to read that it discourages some people, and I am dealing with people who have brain tumors. What my form does is ask the simple question: is this brain tumor related. Defaults to no. If they don't change it to yes before

Re: Hiding email address from spiders

2011-10-12 Thread Claude Schnéegans
That is a nice captcha.. most of them are so hard for people to read that it discourages some people. You've got a point. Never forget that a Web site is first intended to be comfortable for the visitor, not for the programmer. With a captcha, the programmer can sleep quietly, but the visitor

Re: Hiding email address from spiders

2011-10-12 Thread Claude Schnéegans
getAddress () I mean getMail () ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Coldfusion as Windows Service Throwing 500 Errors

2011-10-12 Thread Carl Von Stetten
Good point. I just reviewed the ColdFusion 9 Server Lockdown Guide and made all of the folder permissions adjustments to allow the domain account to work without being an administrator. Everything is now working perfectly. Thanks again for the advice. Carl On 10/11/2011 9:07 PM, Dave Watts

arraydeleteat display issue

2011-10-12 Thread Tom Connolly
When the following code runs I get a YES diplayed on the page: cfoutput cfif #ArrayLen(session.order_array)# gt 6 #ArrayDeleteAt(session.order_array,7)# /cfif /cfouput I tried changing the code to this to get rid of the YES output but it still appears: cfoutput cfif

Re: arraydeleteat display issue

2011-10-12 Thread morgan lindley
ArrayDeleteAt() returns a boolean after affecting the array. The question then becomes, what do you want displayed? cfif ArrayLen(session.order_array) gt 6 cfset arrayDelete = ArrayDeleteAt(session.order_array,7) !--- do or display something here --- /cfif On Wed, Oct 12, 2011

Re: arraydeleteat display issue

2011-10-12 Thread Captain Obvious
ArrayDeleteAt returns true\false based on the success of the operation. Both your samples create the impression you want to display that value. Try this, cfif (ArrayLen(session.order_array) gt 6) cfset ArrayDeleteAt(session.order_array,7) /cfif

Re: JVM Heap Size

2011-10-12 Thread John M Bliss
we've also started a conversation with RackSpace netadmin types to determine whether there might be steps we could take to improve bandwidth. RackSpace ran some tests and provided us with some traceroute/ping times between our server and 'Net locations around the world. They claim that

Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-12 Thread Nathan Chen
All: I have a html table that lists people's names and thea href around the name will open up a pop-up showing their bio. I use cfajaximport tags=cfwindow to make this happen. It works perfectly in CF 8 but won't work in CF 9. Did I miss anything? The following code is just a sample from the

Re: SOT: Advantages of running IIS 7.5 vs Apache 2.2x on Windows and vice versa

2011-10-12 Thread Gerald Guido
On Thu, Oct 6, 2011 at 1:37 PM, Russ Michaels r...@michaels.me.uk wrote: - PHP Manager, no more faffing about with php.ini or fastCGI, the PHP manager allows you to choose which version of PHP u want for each site and edit the php config settings and enable.disable extensions with ease.

RE: Hiding email address from spiders

2011-10-12 Thread Rick Faircloth
How about the honeypot method that was presented on CFMeetup a few months ago? I was planning to implement that method. Users don't even know it's working. Any drawbacks? Rick -Original Message- From: Claude Schnéegans schneeg...@internetique.com

cfthread

2011-10-12 Thread Ria Ragam
Hi All, I am trying to implement something with cfthread but it throws with an error Child threads are not supported This is how its coded. cfloop from=1 to = 4 cfthread action = run name=t#1# !---Logic goes here --- /cfthread cfthread action = run name=t10 !---Logic goes here --- /cfthread

Re: Shouldn't these statements work?

2011-10-12 Thread Brian Kotek
It sure is a word: http://oxforddictionaries.com/definition/truthiness?region=us On Wed, Oct 5, 2011 at 1:29 PM, Michael Grant mgr...@modus.bz wrote: Truthiness is not a word. It may seem like a natural progression, but that doesn't make it exist. I stand by my statement.

Re: Shouldn't these statements work?

2011-10-12 Thread Gerald Guido
It sure is a word: http://oxforddictionaries.com/definition/truthiness?region=us That is 100% PURE Awesome. w00t!!! G! On Wed, Oct 12, 2011 at 10:50 PM, Brian Kotek brian...@gmail.com wrote: It sure is a word: http://oxforddictionaries.com/definition/truthiness?region=us -- Gerald

Re: cfthread

2011-10-12 Thread Raymond Camden
You have a thread called t10 in a loop. You probably want that outside the loop. On Wed, Oct 12, 2011 at 9:40 PM, Ria Ragam ragam0...@gmail.com wrote: Hi All, I am trying to implement something with cfthread but it throws with an error Child threads are not supported This is how its

Re: cfthread

2011-10-12 Thread Ria Ragam
So is it not possible to run more than one thread from cfloop? I have to run a set of threads in a loop.In that way I can change the values on the thread attributes from the cfloop increment.Actually my cfloop is a query. Every time I loop I need to create a set of threads.My cfloop query

Re: cfthread

2011-10-12 Thread Andrew Scott
Also you will need to remember that there is a limit to how many threads can run at the same time on CF Standard.. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Thu, Oct 13, 2011 at 1:40 PM, Ria Ragam ragam0...@gmail.com

Re: cfthread

2011-10-12 Thread Raymond Camden
You can do N threads, but I don't think you can reuse the same name. In your logic, you have threads being named like so: t1 t10 t2 t10 t3 t10 t4 t10 I don't think you intended that. On Wed, Oct 12, 2011 at 10:01 PM, Ria Ragam ragam0...@gmail.com wrote: So is it not possible to run more

Re: cfthread

2011-10-12 Thread Dave Watts
So is it not possible to run more than one thread from cfloop? Sure, it's possible. But you don't want to have more than one thread with the same name in the loop. You're dynamically naming some of your threads, but not t10. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Re: cfthread

2011-10-12 Thread Ria Ragam
Thanks all for help, I found two problems in my code. My thread name wasn't unique and I accidentally added cfthread inside cfthread which is not valid. Also you will need to remember that there is a limit to how many threads can run at the same time on CF Standard.. -- Regards, Andrew Scott