Re: Beyond Captcha

2008-02-08 Thread Tom Chiverton
On Thursday 07 Feb 2008, William Seiter wrote: The second one implies that the reader knows enough about math to do a simple word problem. If they don't, I don't particularly want them commenting on my blog :-) As to CAPTCHA - it solves some problems, but as soon as you become a big target,

RE: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Rich
documentProperties=createObject('java','java.util.HashMap').init(); templateStream=createObject('java','java.io.FileInputStream').init(generat edTemplate); documentPrinter=variables.loader.create('org.ujac.print.DocumentPrinter'). init(templateStream,documentProperties);

CFAJAX heavy-weight, come on in

2008-02-08 Thread Don L
The app has a main window, which has a layout and its areas. Everything works as designed for IE7 (not bad for IE6), however, FireFox version 2.0 does not seem to like it much. Specifically, dupe tabs. With FF, the app screen looks like this: [tab 1] [tab2] -- appear to be called from

How Can I Keep The Customers Happy?

2008-02-08 Thread Ali
Hi: I'm making an online Pet Shop. There are some puppies and kittens available now and I want to put them for sale. I can't use online payment system. I wonder how I can keep all the customers happy because some of them may try to add A puppy to their order list while just one of the customers

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Ryan, Terrence
I feel the desire to jump in and defend Adam here. It's definitely a different tone the we're used to. But we talk about how ColdFusion gets bashed on Digg and it isn't attracting new developers. Having someone who speaks in the same tone as those audiences isn't a bad thing. If you want

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Tom Chiverton
On Friday 08 Feb 2008, Gerald Guido wrote: Personally I do not want an Evangelist for my stack of choice who uses terms like PHP and open sores fanboys in the about section of his blog. Depends on context. I do want someone promoting CF who thinks PHP isn't enterprise-ready, for instance. It

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Tom Chiverton
On Thursday 07 Feb 2008, Russ wrote: customers. If enough developers feel that this is a good idea and make their voice heard, perhaps Adobe will reconsider it. I think they've heard, considered, and rejected. -- Tom Chiverton Helping to simultaneously unleash world-class design-patterns on:

Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Tom Chiverton
I am using JavaLoader to load the UJAC pdf generator: documentProperties=createObject('java','java.util.HashMap').init(); templateStream=createObject('java','java.io.FileInputStream').init(generatedTemplate);

RE: Beyond Captcha

2008-02-08 Thread Billy Cox
My primary objection to captcha is that it adds speed bumps to the user experience (extra keystrokes). I feel smarter just having reviewed the cfformprotect code. I suspected before that captcha would be going away (good riddance), now I am sure of it. -Original Message- From: James

Re: Beyond Captcha

2008-02-08 Thread Les Mizzell
Anyone who uses a screen reader will gladly welcome the demise of CAPTCHA as the images cannot be read by these programs making Web sites that use them inaccessible by persons who are blind or who have another print disability. Heck - there's some sites where *I* can't read them - takes me

sending entire Form back on a url string

2008-02-08 Thread Will Swain
Morning, Having a brain freeze. I want to send an entire set of form variables back to the previous page on the url string. Obviously previous_page.cfm?formStructure=#Form# doesn't work. I can't for the life of me remember how to do this. Cheers Will

RE: cfinput autosuggest styling problem

2008-02-08 Thread Brad Wood
Yeah, drop downs don't seem to obey z-indexes and always want to be on top. I can't speak to what fixes are out there, but they usually involve one of the following: * Dynamically hiding and re-showing drop-downs that are overlapped. * Floating an iframe behind the auto-suggest since that is the

Re: How Can I Keep The Customers Happy?

2008-02-08 Thread J.J. Merrick
Actually you can do this. Basically when someone puts a pet on an order list you take it out of rotation for say 24 hours. And explain to them that they have to complete the purchase in the store in 24 hours or it goes back on the shelve. Similar to what Ticketmaster does but only for like 5

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Rick Mason
I think sometimes we sulk off to places like here and complain when someone says CF is dead. I used to think it wasn't dignified to duke it out with some of the fanboys. But I have changed my mind. So now I have made it a point to challenge these guys sometimes. I took the time to learn Rails

Re: Looking for a developer...

2008-02-08 Thread Toby King
Hi there Are you able to provide any further info - I'm interested in helping. My email is [EMAIL PROTECTED] Cheers Hi everyone, A client of mine is looking for a coldfusion developer to re-engineer their site. The design is already underway and being handled by an agency. The project at

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Todd Rafferty
I have to agree. Isn't it about time we all got a little smug? On Feb 8, 2008 10:13 AM, Ryan, Terrence [EMAIL PROTECTED] wrote: I feel the desire to jump in and defend Adam here. It's definitely a different tone the we're used to. But we talk about how ColdFusion gets bashed on Digg and it

RE: Java-Coldfusion conversion

2008-02-08 Thread Gaulin, Mark
Hi You may be having issues because the main method appears to be a static method, and I seem to recall that there is an issue with calling those directly from CF when you don't have an instance of the class handy. I suggest you create a java class of your own that does the calls you want, but

cfinput autosuggest styling problem

2008-02-08 Thread Dominic Watson
Has anyone run into and fixed the problem using autosuggest where, when you stack autosuggesting inputs, the form fields get in the way of the drop down suggestion list? It's a stylesheet issue but one that is eluding me; here is an image of the problem:

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Tom Chiverton
On Thursday 07 Feb 2008, Raymond Camden wrote: Shoot, as it stands, CF is more free as you don't have to be a student to run it on your own machine for nothing. See my (unanswered) post last week, about what CFML engines are free to use in production (i.e. without limits like 3 IP address, for

Re: sending entire Form back on a url string

2008-02-08 Thread Tom Chiverton
On Friday 08 Feb 2008, Will Swain wrote: doesn't work. I can't for the life of me remember how to do this. Loop over structKeylist(form) ? -- Tom Chiverton Helping to authoritatively enable principle-centered deliverables on: http://thefalken.livejournal.com

RE: Conditional INSERT INTO

2008-02-08 Thread Dave Watts
I want the user to add products into the order table but I don't want it to add the same product two or more times into the table. I made a condition and for a test I used ProductID s and I put them in the condition myself just to test it. If I enter the same productID which is in the

Conditional INSERT INTO

2008-02-08 Thread Ali
Hi: I want the user to add products into the order table but I don't want it to add the same product two or more times into the table. I made a condition and for a test I used ProductID s and I put them in the condition myself just to test it. If I enter the same productID which is in the table it

RE: CFExchange Permission Problems

2008-02-08 Thread Dawson, Michael
As for the service account, you can pass in a username/password AND a mailbox. The username doesn't have the username for the mailbox owner. As long as the service account has permissions for the mailbox, then it should work. In Exchange System Manager, open the Administrative Groups folder.

Re: Beyond Captcha

2008-02-08 Thread Rick Root
I hate captchas. Especially hard ones. I have a visual disability which makes my vision about 20-50 with my glasses on. I have Best Disease. There are spots in my central vision. It means I read a lot slower than I used to. I don't read for pleasure at all anymore. Anyway, I don't have any

RE: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Russ
Isn't that because the price of dollar really fell? Or is that equivalent to inflation? Russ -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, February 08, 2008 1:26 PM To: CF-Talk Subject: Re: ColdFusion: Some People Just Don't Know Any Better

Re: Conditional INSERT INTO

2008-02-08 Thread Don L
A more efficient way would be (provided you're using enterprise-grade DBMS): cfquery datasource=test_shop if not exists (SELECT * FROM orders WHERE PRODUCTID = {cfqueryparam...}) begin INSERT INTO orders (productID) VALUES ({cfqueryparam...}) end

Re: Java-Coldfusion conversion

2008-02-08 Thread C S
FrameworkManager and MessageFactory are being imported. they are in . JAR files provided by the customer. I just cannot get the main to get executed, foget about moving forward. What error are you receiving? Did you first create the necessary objects before calling main()? cfscript

Re: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Marco Antonio C. Santos
Tom, may be an OT but Mark Mandel recommends instantiate javaLoader in server scope. Please look this link: http://www.compoundtheory.com/?action=displayPostID=212 Cheers Marco Antonio On Feb 8, 2008 12:32 PM, Tom Chiverton [EMAIL PROTECTED] wrote: I am using JavaLoader to load the UJAC pdf

RE: sending entire Form back on a url string

2008-02-08 Thread Dave Watts
I want to send an entire set of form variables back to the previous page on the url string. Obviously previous_page.cfm?formStructure=#Form# doesn't work. I can't for the life of me remember how to do this. Loop through the FORM scope and build the appropriate string: cfset

RE: sending entire Form back on a url string

2008-02-08 Thread Dave Watts
But isn't there a finite limit on how many characters you can put in a URL string? Yes, and my understanding is that the limit is browser-specific. For IE 7, it's 2048 characters for a GET request: http://support.microsoft.com/kb/208427 This link goes into more detail on the topic, and covers

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Jochem van Dieten
Mark Fuqua wrote: It is interesting, that while the developer community has been belly achin' about prices for cf, Adobe has actually raised the price for enterprise 50%. You just have an inflation problem, for people outside the US the price has gone down. Jochem

Re: sending entire Form back on a url string

2008-02-08 Thread Brian Swartzfager
But isn't there a finite limit on how many characters you can put in a URL string? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

CFLAYOUT/cflayoutarea again

2008-02-08 Thread Don L
Hi, These cfajax family tags are inside a cfwindow. Display is fabulous with IE7, not bad with IE6, however, tabs display are too closely layered with FFv2, with FF it kind of looks like this, [tab logout] [tab main] [tab logout] [tab main] while with IE it looks as expected [tab logout] [tab

Report Builder - table of contents

2008-02-08 Thread Raj Vijay
Hello all, I am using the Coldfusion report builder (v 7.02) to generate the reports. My requirement says the generated report should contain the table of contents on the first page. I have never done this before. I searched the net and read this blog posting

RE: Software Recommendations

2008-02-08 Thread Russ
Also if you're willing to forego customization (or have some python knowledge), trac is a great project that offers SVN integration/Wiki/etc. Russ -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, February 08, 2008 3:23 PM To: CF-Talk Subject: Re:

Re: Software Recommendations

2008-02-08 Thread Larry Lyons
Doesn't Ray Camden have one called LightHousePro that's a fairly good bug tracker? http://lighthousepro.riaforge.org/ It looks like it can be easily adapted for what you want. hth, larry -- Larry C. Lyons Web Analyst BEI Resources American Type Culture Collection http://www.beiresources.org

CFAJAX -- x-tabs-wrap

2008-02-08 Thread Don L
The app has a main window, which has a layout and its areas. Everything works as designed for IE7 (not bad for IE6), however, FireFox version 2.0 does not seem to like it much. Specifically, dupe tabs. With FF, the app screen looks like this: [tab 1] [tab2] -- appear to be called from

Re: cfinput autosuggest styling problem

2008-02-08 Thread Dominic Watson
Yeah, drop downs don't seem to obey z-indexes and always want to be on top. Thanks for the reply, I finally found a solution that succinctly worked for me when I added z-index to my searching. ColdFusion creates a div around the input called [inputname]autosuggest. So in your stylesheet (or

universal data retention laws

2008-02-08 Thread Richard White
Hi just wondering if anyone knows of any 'universal' data rentention guidelines or laws for us to make sure our sites are compliant with them. or does anyone have any good practice guidelines we could follow. also for anyone in Europe, is there any EU directives on data retention - i have

Re: Beyond Captcha

2008-02-08 Thread Chris Montgomery
Tom Chiverton said the following on 2/8/2008 3:41 AM: At the end of the day, it's an arms race, and right now I don't see a way to defeat the current man-in-the-middle-offering-free-porn work around. Frankly, I think we users / developers spend way too much time trying to one-up the lowlife

Re: A question re a better way to do something

2008-02-08 Thread Richard White
if you want a message to pop up with javascript asking yes and no then you can either use vbscript or create a custom message box with yes no buttons. there is a really cool example at the following url: http://javascript.about.com/library/blmodald3.htm hope this helps

changing a cfselect through an onchange event

2008-02-08 Thread NIck Shippers
Hello, I would like to change the value of a cfselect after a change of a cfinput. Here's what I have so far. A cfscript changes the cfselect from grid selection changes: public function contactListChanged():Void { selectOption(currentappointmentcheck,

JRun maxing out?

2008-02-08 Thread Michael Muller
Every once in a while my server's CPUs go nuts. Normally they hang around 0%, 1%, 2%, 13%, 22%, 5%, 1%, etc. Then, maybe once a week or every few days, they jump to like 85% and just stay there, bouncing between 80% and 95%. The box is pretty much unusable. Just a couple of days ago I was

RE: JRun maxing out?

2008-02-08 Thread Brad Wood
SeeFusion or Fusion-Reactor will make you wonder how you ever lived without them. SeeFusion has a free 2-hour trial before you buy. Both programs will show you exactly what is running on your box and give you a stack trace to show you where the problem code lies. ~Brad -Original

Re: JRun maxing out?

2008-02-08 Thread Nathan Strutz
Michael, Most obvious questions first - what version of CF are you running, do you have the latest patches and have you updated your database driver (esp. for CFMX 6.1)? More likely than anything, it's one of the applications on your server. Try logging slow requests via the CF admin setting and

Alert component

2008-02-08 Thread Don L
Hi, I did some quick research for an Alert component/function to no avail. Here's the problem/objective statement. Say, my schedule data is stored in a db table, I would like to be alerted 30 minutes or 45 minutes or whatever you name it before the the event and also let's assume I'm at my

Re: Alert component

2008-02-08 Thread s. isaac dealey
I'm fond of the notion of a .swf to handle this sort of thing myself. You might have to use the Eolas workaround hack for right now to make it work properly in IE although I heard that's supposed to end soon. I say swf because it seems like you might be able to get the functionality irrespective

A question re a better way to do something

2008-02-08 Thread Toby King
I currently have three buttons on a page. Here is the code for one of the buttons: a href=javascript:;

RE: A question re a better way to do something

2008-02-08 Thread Dave Francis
Would a Javascript confirm() work for you here? -Original Message- From: Toby King [mailto:[EMAIL PROTECTED] Sent: Friday, February 08, 2008 10:59 AM To: CF-Talk Subject: A question re a better way to do something I currently have three buttons on a page. Here is the code for one of

RE: JRun maxing out?

2008-02-08 Thread John Mason
For CF76 use seeFusion or Fusion-Reactor. http://www.fusion-reactor.com/ http://www.seefusion.com Do not start playing around with the JVM settings until you find exactly what the problem is. Most problems are code related and can be safely fixed there. Only after looking at the code and the

Re: Java-Coldfusion conversion

2008-02-08 Thread Mark Mandel
Mark, There are no issues with calling Static methods. You just createObject(java, class) and call the static methods on that directly. The reason I asked what version of CF he is on, is because he will need to pass a String[] into the main() argument scope. If he is on CF8, he can use

RE: Beyond Captcha

2008-02-08 Thread Russ
I think one guy tried the virtual version of that and failed. He posted fake email addresses and when those addresses received email he spammed the spammers back. I think they got together and DDOSed his site. Shortly after he closed down the company. Can't remember the name off the top of my

Re: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Mark Mandel
I thought they fixed this issue in CF8, but apparently they didn't. Put it in Server scope should hopefully sort you out, so you don't end up re creating it every time. Mark On Feb 9, 2008 3:41 AM, Marco Antonio C. Santos [EMAIL PROTECTED] wrote: Tom, may be an OT but Mark Mandel recommends

RE: JRun maxing out?

2008-02-08 Thread Russ
JRUN also tends to go nuts when it hits the memory limit. So when you hit something like that, check how much ram is used up, and see what the max is. Bumping up the limit might fix things. Russ -Original Message- From: Michael Muller [mailto:[EMAIL PROTECTED] Sent: Friday, February

Re: Alert component

2008-02-08 Thread Josh Nathanson
You could load the user's reminder data into the client either by outputting directly into javascript, or via an ajax call...then set up a timer using setInterval that runs every minute or so to check the client time against their reminder times. If the times match up pop an alert window. --

Re: JRun maxing out?

2008-02-08 Thread Casey Dougall
On 2/8/08, Michael Muller [EMAIL PROTECTED] wrote: Every once in a while my server's CPUs go nuts. Normally they hang around 0%, 1%, 2%, 13%, 22%, 5%, 1%, etc. Then, maybe once a week or every few days, they jump to like 85% and just stay there, bouncing between 80% and 95%. The box is pretty

Re: Beyond Captcha

2008-02-08 Thread s. isaac dealey
Frankly, I think we users / developers spend way too much time trying to one-up the lowlife spammers. Instead, we should quit wasting time, re-channel our energies, grab some baseball bats, and start hunting the bastards down and beat the livin' crap out of 'em! Now there's a plan I can get

RE: Alert component

2008-02-08 Thread Will Swain
Someone else might be able to shed more light, but is this something you could use AIR for? I've not played with it myself yet, haven't had time. Could an AIR app handle this kind of thing? Will -Original Message- From: Don L [mailto:[EMAIL PROTECTED] Sent: 08 February 2008 21:53 To:

SOT : JavaScript SelectedIndex by *value*

2008-02-08 Thread Gerald Guido
I have a JavaScript that sniffs out the Timezone Abbreviation of the users local machine: AKST EDT MST PST CST etc I have a select box that lists out the Timezones select name=strTimeZone option value=HADT Hawaii-Aleutian Daylight Time option value=HAST Hawaii-Aleutian Standard Time

Re: Apache and CF7

2008-02-08 Thread Phillip M. Vector
Already tried that. Didn't work either. But I'll try again. Nope still says it can't load mod_jrun20.so. Josh Nathanson wrote: You have some conflicting information there: LoadModule jrun_module c:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so IfModule mod_jrun.c In my httpd.conf

Re: Beyond Captcha

2008-02-08 Thread s. isaac dealey
On Thursday 07 Feb 2008, William Seiter wrote: The second one implies that the reader knows enough about math to do a simple word problem. If they don't, I don't particularly want them commenting on my blog :-) On the other hand, imagine how much fun we could have with a captcha that

Re: Apache and CF7

2008-02-08 Thread Josh Nathanson
You have some conflicting information there: LoadModule jrun_module c:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so IfModule mod_jrun.c In my httpd.conf file I have the directive IfModule mod_jrun20.c (note the 20 after jrun). -- Josh - Original Message - From: Phillip M.

RE: Apache and CF7

2008-02-08 Thread John Mason
learning PHP to increase my marketability Just a thought here. When there are thousands of cheap PHP programmers running around looking for projects. I would think your return on investment in learning PHP is going to be very small. Learning something that is growing and the demand is already

Apache and CF7

2008-02-08 Thread Phillip M. Vector
After trying to redo my CF 7 set up with apache (because I also want to start learning PHP to increase my marketability, I have this error. == The Apache service named reported the following error: httpd.exe: Syntax error on line 485 of C:/Program Files/Apache Software

RE: Alert component

2008-02-08 Thread Brad Wood
I'm not clear on exactly what it is being built, but from the sound of it, AIR could be a viable solution. 1) Executable client app which would not require a browser to be open. 2) Build it in Flex to use Flex Data Services 3) Push the reminders to the client via a CF back end I'll admit, this

Re: Apache and CF7

2008-02-08 Thread Josh Nathanson
Already tried that. Didn't work either. But I'll try again. Nope still says it can't load mod_jrun20.so. Well, PHP blows anyway. Time to give up. ;0) Seriously though, if the module file is really there in the right directory and everything then it should work. The path shows your CF

RE: Apache and CF7

2008-02-08 Thread Dave Watts
After trying to redo my CF 7 set up with apache (because I also want to start learning PHP to increase my marketability, I have this error. == The Apache service named reported the following error: httpd.exe: Syntax error on line 485 of C:/Program Files/Apache Software

Re: Apache and CF7

2008-02-08 Thread Gerald Guido
Check out XAMPP http://www.apachefriends.org/en/xampp.html I have been using it for years. I recommend Method B: Installation without the Installer http://www.apachefriends.org/en/xampp-windows.html#521 Get the zip or 7 zip file follow the instructions. --- In a

RE: Apache and CF7

2008-02-08 Thread John Mason
Well it should get you closer (more than half way there). Start with the VM that has a stable version of Apache and PHP running then install CF on it. Should be easier for you. Once you have everything running - make a copy of the VM for safe keeping in case in the future things get messed up. On

RE: SOT : JavaScript SelectedIndex by *value*

2008-02-08 Thread Dave Watts
script var x=document.getElementById(mySelect); x.options[x.selectedIndex].text=Melon; /script select id=mySelect optionApple/option optionOrange/option optionPineapple/option optionBanana/option /select --- I googled it and I can't find a way to

Re: Apache and CF7

2008-02-08 Thread Phillip M. Vector
John Mason wrote: learning PHP to increase my marketability Just a thought here. When there are thousands of cheap PHP programmers running around looking for projects. I would think your return on investment in learning PHP is going to be very small. Well, it seems that there are several

Re: Apache and CF7

2008-02-08 Thread Phillip M. Vector
Yeah.. That's where it is.. I don't understand it. and it's more of getting CF to work with apache now then trying to get PHP installed (I managed to get that fixed). Josh Nathanson wrote: Already tried that. Didn't work either. But I'll try again. Nope still says it can't load

passing URL variables to a cfwindow

2008-02-08 Thread Steve Good
Is it possible to pass variables through the URL scope to a cfwindow? If so, how? Thanks! :) -- ~Steve ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread s. isaac dealey
I have to agree. Isn't it about time we all got a little smug? As long as I don't have to use words like playa hater and represent. There's nothing sadder than an egg-headed gen-x post-hippie white-guy like me trying to talk street. When I do it somebody really should be mimicking the Family

Re: SOT : JavaScript SelectedIndex by *value*

2008-02-08 Thread Gerald Guido
Yep. That should do it. Thanx for taking the time, Gerald On Feb 8, 2008 7:07 PM, Dave Watts [EMAIL PROTECTED] wrote: script var x=document.getElementById(mySelect); x.options[x.selectedIndex].text=Melon; /script select id=mySelect optionApple/option optionOrange/option

Re: Beyond Captcha

2008-02-08 Thread s. isaac dealey
Heck - there's some sites where *I* can't read them - takes me four or five tries to get it right! My Stupid Question Experiment: A cow goes __? (Suggestions - woof, quack, moo, oink) ...has been 100% successful for the last six months stopping form spammers. Funny that

Re: Apache and CF7

2008-02-08 Thread Phillip M. Vector
I found that is probably the issue. I downloaded the new file and now, I can't load it under the current version of Java (need 1.4). *sighs* I think I'm going to go back to how it was and just use the built in webserver and give up on apache ever running CF7. Dave Watts wrote: After trying to

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread s. isaac dealey
Paul Graham says we should all learn a language a year. Lets make this the year we tell our critics to master Coldfusion or stop criticizing it! I guess that would mean I'd have to learn Ruby pretty soon. http://ontap.riaforge.org/blog/index.cfm/2008/2/8/Maintainability Doh! -- s. isaac

Re: Beyond Captcha

2008-02-08 Thread Todd Rafferty
To quote wargames, A strange game. The only winning move is not to play. How about a nice game of chess? Everyone needs to give up blogging and dealing with Captchas. So say we all. On Feb 8, 2008 7:44 PM, s. isaac dealey [EMAIL PROTECTED] wrote: I may be out of the loop, but I have some

Re: ColdFusion: Some People Just Don't Know Any Better

2008-02-08 Thread Gerald Guido
Isaac you are insanely smart and you know it... quit rubbing it in. ;) Whirled peas, G On Feb 8, 2008 8:05 PM, s. isaac dealey [EMAIL PROTECTED] wrote: Paul Graham says we should all learn a language a year. Lets make this the year we tell our critics to master Coldfusion or stop

Re: Alert component

2008-02-08 Thread Don L
Thank you, Josh, isaac and Will, Yeah, javascript approach would be more efficient performance-wise, and yet as issac so elegantly put it, Flash or Flex or Air as Will pointed out, would be more appealing. My limited experience with Flex suggests that its loading is just too slow or because

Re: Apache and CF7

2008-02-08 Thread Adrian Moreno
You need to apply this Hot fix to use CF7 with Apache 2.2 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8001e97 Once you apply the hot fix, you don't have to run the changes by command-line, you can use the Web Server Configuration Tool that's in your CF 7 program group off the Start

Re: Apache and CF7

2008-02-08 Thread Phillip M. Vector
Unfortunally, that only works with Javascript 1.4 or below. Otherwise, I get a MBean error. Adrian Moreno wrote: You need to apply this Hot fix to use CF7 with Apache 2.2 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=8001e97 Once you apply the hot fix, you don't have to run the

Re: Using JavaLoader with UJAC creates memory leak

2008-02-08 Thread Mark Mandel
The other thing I am concerned about - are these variables var'd properly? Mark On Feb 9, 2008 1:32 AM, Tom Chiverton [EMAIL PROTECTED] wrote: I am using JavaLoader to load the UJAC pdf generator: documentProperties=createObject('java','java.util.HashMap').init();