RE: Passing form data to CFC, Array or Structure

2004-10-15 Thread Pascal Peters
Why don't you create a structure that links form field names to database field names and pass that structure and the form structure to your cfc. Pascal -Original Message- From: sonicDivx [mailto:[EMAIL PROTECTED] Sent: 14 October 2004 19:57 To: CF-Talk Subject: Passing form data to

late night query ?

2004-10-15 Thread dave
i have a query thats uses a userid to get items out of a db that have a matching userID and i need to run another query thats uses those numbers to get descriptions outta another table the basic query is this cfquery name=qCards datasource=#dsn# username=#un# password=#pw# SELECT cardID FROM

Re: late night query ?

2004-10-15 Thread Ricardo Russon
dave. What database are you using? try.. SELECT usercards.cardID, tblcards.cardID WHERE usercards.cardID = cfqueryparam value=#guserID# cfsqltype=cf_sql_integer AND usercards.cardID = tblcards.cardID Ricardo. On Fri, 15 Oct 2004 02:09:15 -0400, dave [EMAIL PROTECTED] wrote: i have a query

RE: late night query ?

2004-10-15 Thread Pascal Peters
If you don't need the results from the first query, do a join SELECT c.whatever, c.somethingelse, c.cardID FROM usercards uc, tblcards c WHERE uc.cardID = c.cardID AND uc.usersID = cfqueryparam value=#guserID# cfsqltype=cf_sql_integer If you need the first query, make a second query if the first

Re: late night query ?

2004-10-15 Thread dave
i love it when i make it more complicated then it really iz lol using mysql, its close but i get this error Error Executing Database Query. Syntax error or access violation: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax

Re: late night query ?

2004-10-15 Thread dave
i think the killer here is that this usercards.cardID = tblcards.cardID could be 1 record or 7000, so maybe have to loop it or maybe qoq -- Original Message -- From: Ricardo Russon [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 15 Oct 2004 16:24:55

RE: late night query ?

2004-10-15 Thread dave
i been working since 9am (now 1am) so my train of thought is on the booty call i shoulda went and got, lol dammit! ok, here i'll try and explain better 1st i invoke a cfc (heres the meat of it) this gets the logged in usersname and gives me their userid. cfquery name=qgetUser datasource=#dsn#

RE: late night query ?

2004-10-15 Thread Micha Schopman
7000 records still is peanuts, ... if ... you correctly add indexes and set the primary keys and relationships. I also execute queries with such amounts of records and they still execute beneath the 10 ms. If I hadn't added database functionality I would to have to sit and wait. Micha Schopman

RE: late night query ?

2004-10-15 Thread Micha Schopman
Have you tried analyzing the execution plan yet (if you are using SQL Server?) to see where the bottlenecks are? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads]

RE: late night query ?

2004-10-15 Thread Pascal Peters
You are missing the FROM clause -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 15 October 2004 08:35 To: CF-Talk Subject: Re: late night query ? i love it when i make it more complicated then it really iz lol using mysql, its close but i get this error Error

RE: late night query ?

2004-10-15 Thread dave
sorry but that completely doesnt help like i said its mysql, i dont use any m$ crap this isnt even mine just helping, well trying to help -- Original Message -- From: Micha Schopman [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 15 Oct 2004

RE: late night query ?

2004-10-15 Thread Pascal Peters
I've been working since 9am too. Pascal PS Of course, here it's only 10am ;) -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: 15 October 2004 09:10 To: CF-Talk Subject: RE: late night query ? i been working since 9am (now 1am) so my train of thought is on the booty

RE: late night query ?

2004-10-15 Thread dave
lol -- Original Message -- From: Pascal Peters [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 15 Oct 2004 10:05:48 +0200 I've been working since 9am too. Pascal PS Of course, here it's only 10am ;) [Todays Threads] [This Message]

RE: late night query ?

2004-10-15 Thread Micha Schopman
What have you tried.. ? .. what have you indexed? .. have you checked your primary keys .. etc.. ? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This

RE: late night query ?

2004-10-15 Thread dave
ah, come on Pascal we all know thats an Urban Legend, u really dont need that!! -- Original Message -- From: Pascal Peters [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 15 Oct 2004 10:02:59 +0200 You are missing the FROM clause -Original

ANNOUNCE: CF Underground VI news - Ben Forta

2004-10-15 Thread Michael Smith
Ben Forta is tentatively scheduled to be at CF Underground VI on Sunday October 31st, 2004 just before MAX (aka DevCon) New Orleans LA. We expect him to talk about Blackstone (CF 7) on the panel! http://www.cfconf.com/cf_underground6/ Quotes from CF_Underground V: * Fantastic job guys!! -

CSV import into DB

2004-10-15 Thread Mark Drew
I am doing an automated insert of a CSV fileinto a MS SQL database. I am sure this has been done a million times, so I was wondering if there is a better way that upload CSV, loop through each line and insert each line one at a time into the db. Is there a better batch import method? -- Mark

RE: CSV import into DB

2004-10-15 Thread kola.oyedeji
Mark If you have Enterprise manager (and this is a one off task) you can run the dts wizard which allows you to Insert data into and from CSV, excels and numerous other file formats. HTH Kola _ From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 15 October 2004 10:48 To: CF-Talk Subject:

Re: CSV import into DB

2004-10-15 Thread Mark Drew
Thanks for that this will not be a one off but a way of populating a table remotely using CSV files via an upload. Seems to me that the SQL language is very limited in the INSERT INTO department. MD On Fri, 15 Oct 2004 12:01:15 +0100, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Mark If you

RE: CSV import into DB

2004-10-15 Thread Robertson-Ravo, Neil (RX)
DTS _ From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: 15 October 2004 11:48 To: CF-Talk Subject: CSV import into DB I am doing an automated insert of a CSV fileinto a MS SQL database. I am sure this has been done a million times, so I was wondering if there is a better way that upload CSV,

RE: CSV import into DB

2004-10-15 Thread Hugo Ahlenius
How does one execute a DTS package from CF? -- Hugo Ahlenius - Hugo AhleniusE-Mail: [EMAIL PROTECTED] Project Officer Phone:+46 8 230460 UNEP GRID-ArendalFax:+46 8 230441 Stockholm OfficeMobile:+46 733 467111 WWW: http://www.grida.no

Re: CSV import into DB

2004-10-15 Thread Scott Stroz
You can use cfexecute to run DTSRun.exe. If you search the SQL server Help, you can find out more info on the syntax to use DTSRun from command line. On Fri, 15 Oct 2004 13:26:50 +0200, Hugo Ahlenius [EMAIL PROTECTED] wrote: How does one execute a DTS package from CF? -- Hugo Ahlenius

Re: CSV import into DB

2004-10-15 Thread Mark Drew
My question exactly! Especially since the DB isnt on the same server (as they generally shouldnt be!) MD [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Compare/Diff functionality

2004-10-15 Thread Micha Schopman
Just wanted to kick this question... Jrun seems to dislike my code, and this piece of instable enterprise level unworthy server software locks up.. and stays at 100% cpu .. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK

RE: Compare/Diff functionality

2004-10-15 Thread Hugo Ahlenius
We have swapped out jrun for tomcat on one server, accessing it through mod_proxy. This is a Solaris/Apache machine. The stability is excellent, we don't have to run the jrun with the interpreted/Xint flag (due to an unresolved jrun/jvm bug), and we can use mod_deflate to save huge amounts of

RE: CSV import into DB

2004-10-15 Thread Hugo Ahlenius
| From: Scott Stroz [mailto:[EMAIL PROTECTED] | You can use cfexecute to run DTSRun.exe. Is it possible to run it through t-sql? ### This message has been scanned by F-Secure Anti-Virus for Microsoft Exchange. For more information, connect to

RE: CSV import into DB

2004-10-15 Thread Robertson-Ravo, Neil (RX)
You can run a DTS via T-SQL using dtsrun and master..xp_cmdshell.What we do is copy the file from the server uploading to the SQL box, then run the DTS against that filethe file can be of any name as we use global variables and some VB inside of the DTS to get the connection properties etc...

Re: CSV import into DB

2004-10-15 Thread Graham Pearson
Here is how I do it through Coldfusion and have not had any problems with it. Basically I ask the user to sleect their file through a Form Object, and The CFFile to Upload this file and then to read the file uploaded. Next I create Objects and Reach each line into an Array. I then have a

Re: CSV import into DB

2004-10-15 Thread Scott Stroz
You can use xp_cmdshell from the SQL server, or you can also load DTSRun.exe onto the web server(I can't remember how, but it is not difficult to find out how).DTSRun.exe can reside on any server, and access any other SQL server that allows remote connections. I have written DTS packages that

Re: CSV import into DB

2004-10-15 Thread Graham Pearson
Sorry, Here is the Code as I attached it before. cfif not isdefined(FORM.EventAction) table border=0 align=center width=90% cellspacing=0 cellpadding=0 STYLE=Border-Color: 00; Border-Style: solid; Border-Width: 0px; tr td Class=ErrorMsgDetailsSelect File to Upload/td /tr tr td

Homesite's Wizards in DW?

2004-10-15 Thread Peterson, Andrew S.
Hi all, There are some (arguably) handy wizards in HomeSite that I sometimes miss - particlularly the good ol' Record Viewer Wizard with it's data manipulation abilities. I was wondering if there was any way to get that functionality in DWMX. I looked in th exchange but found nothing

Re: Homesite's Wizards in DW?

2004-10-15 Thread Massimo, Tiziana e Federica
I was wondering if there was any way to get that functionality in DWMX. You should investigate the Application Objects in DW and, more in general, Server Behaviors. They aren't 100% equivalent of HS's wizards, but it may be worth a check Massimo Foti DW tools:

RE: How to prevent multiple logins

2004-10-15 Thread Burns, John D
But if you force off the first login, that may not be the same user, but it may be a different user using the same login.You can't force someone off while they're in the app. John -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 4:42 PM

Getting around Outlook 2003 Junk Email Filtering

2004-10-15 Thread Burns, John D
Does anyone know the specifics of what Outlook 2003 looks for when filtering Junk Email?I have been testing some email features that I am developing via CF.Whenever I send an email, Outlook 2003 flags it as Junk Email and moves it to the folder.Anyone have any tips for what I can do to avoid Junk

Re: How to prevent multiple logins

2004-10-15 Thread Neil Middleton
We do this in one of our applications. If a user logs in and that user is currently logged in they (the original login) gets kicked. Works well, as it reminds our users a 1 person - 1 login, and not for sharing, On Fri, 15 Oct 2004 10:45:34 -0400, Burns, John D [EMAIL PROTECTED] wrote: But if

Re: How to prevent multiple logins

2004-10-15 Thread Scott Stroz
But how will that stop someone else from trying to login as one of your users while theyare logged in? On Fri, 15 Oct 2004 16:03:15 +0100, Neil Middleton [EMAIL PROTECTED] wrote: We do this in one of our applications. If a user logs in and that user is currently logged in they (the original

Re: How to prevent multiple logins

2004-10-15 Thread Umer Farooq
At login store the users IP . ... and keep checking the IP against the one stored... on each request.. if it changes... log the current user... out and say.. someone else from another IP has logged in... Burns, John D wrote: I think the biggest decision that the person who asked will have to

Re: How to prevent multiple logins

2004-10-15 Thread Neil Middleton
It doesn't, apart from via inference as the users realise that if they share their user account they are likely to be forced off the system with no notice. On Fri, 15 Oct 2004 11:11:42 -0400, Scott Stroz [EMAIL PROTECTED] wrote: But how will that stop someone else from trying to login as one of

RE: How to prevent multiple logins

2004-10-15 Thread Burns, John D
What about people whose connection changes Ips?The new NMCI setup for military bases gives users a pool of Ips that change regularly.Our company has 2 external Ips that change as needed, so the guaranteed IP connection isn't always true. John -Original Message- From: Umer Farooq

Re: How to prevent multiple logins

2004-10-15 Thread Chris Johnston
On Fri, 15 Oct 2004 11:37:54 -0400, Burns, John D [EMAIL PROTECTED] wrote: What about people whose connection changes Ips?The new NMCI setup for military bases gives users a pool of Ips that change regularly.Our company has 2 external Ips that change as needed, so the guaranteed IP connection

Re: How to prevent multiple logins

2004-10-15 Thread Anders Green
At 11:51 AM 10/15/2004, Chris Johnston wrote: There is no method, that I know of, that is going to work in such a way that it never inconviencences the user while at the sametime providing top notch security and preventing concurrent logins. It is an either-or situation. Yes. It's not a technical

Re: How to prevent multiple logins

2004-10-15 Thread Lawrence Ng
I agree with fuzzylizard. You have to make processing decisions and have mgmt okay it. Let everyone know what may/could/would happen if they login concurrently. Once users know this, it would meet everyone's expectations. This pretty much boils down to communication (a lost skill =) LOL. [Todays

GODaddy SSL certs

2004-10-15 Thread Tim Laureska
Has anybody had experience with these... any issues... cost looks good Tim Laureska 1st-String Technologies [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: GODaddy SSL certs

2004-10-15 Thread Damien McKenna
Tim Laureska wrote: Has anybody had experience with these... any issues... cost looks good There are loads of companies out there that do low-cost SSL certs, including one that does them for free!What you have to be concerned about, however, is whether the Certificate Authority (the

Re: GODaddy SSL certs

2004-10-15 Thread Matt Robertson
ubiquity isn't up to the same standard that you get from Comodo, which I'm using.I pay $42.88 as a reseller per cert (being a reseller gets me instant issuance as well). The GoDaddy certs are about half that cost, but when I eventually unburied their actual browser stats they were worse than

OT: JavaScript Validation

2004-10-15 Thread Jillian Koskie
Hey guys, I have a form, that needs some JS help. I need a script that does two things: 1.) makes sure that at least one of 'keyword1' OR 'keyword_phrase' are not blank 2.) It somebody chooses a time period from the drop-down, that the radio button for 'timeperiod' is selected automatically.

RE: GODaddy SSL certs

2004-10-15 Thread djones
I bought one from thawte for $19.00, at FreeSSL.com.It works on96% of all browsers and we have never had a problem.We use it in our development environment, where who issues it isn't important.For real world stuff I always suggest a more recognized company like VeriSign or Geotrust.Though they all

Re: CSV import into DB

2004-10-15 Thread Matt Robertson
I just got done finishing a project that waits around at 15-minute intervals and pulls in 10k+ line csv files for import into a cf db I used Paul Vernon's CFX_pop3 to speed up the processing (*dramatically*) of the 4-5mb file attachments, and Ryan Emerle's new java cfx_text2query to read in the

RE: GODaddy SSL certs

2004-10-15 Thread Tim Laureska
This is what they (god Daddy) shows on their site: QUOTE: Our root certificate - the Valicert Class 2 Policy Validation Authority - is installed in the following browser versions . Internet Explorer 5.01 and higher . AOL 5 and higher . Netscape 4.7 and higher . Opera 7.5 and higher. . Safari

RE: GODaddy SSL certs

2004-10-15 Thread Tim Laureska
GoDaddy's a fairly well know name... yes, primarily domain name registrations but.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 12:39 PM To: CF-Talk Subject: RE: GODaddy SSL certs I bought one from thawte for $19.00, at

Re: How to prevent multiple logins

2004-10-15 Thread Matt Robertson
John wrote: But if you force off the first login, that may not be the same user, but it may be a different user using the same login.You can't force someone off while they're in the app. Oh yes you can, and depending on your business rules maybe you should. If only one user is supposed to

Re: Compare/Diff functionality

2004-10-15 Thread Barney Boisvert
How about just CFEXECUTE on the `diff` command?You'll have to write the strings to temp files, but that should be faster than your setup if you're complaining about performance. cheers, barneyb On Thu, 14 Oct 2004 22:33:16 +0200, Micha Schopman [EMAIL PROTECTED] wrote: Does anyone found any

Re: How to prevent multiple logins

2004-10-15 Thread Matt Robertson
I wrote: ...For that you need a system that can expressly allow unique logins... Oops.I meant 'duplicate logins' --Matt-- [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: JavaScript Validation

2004-10-15 Thread Dave Watts
Can anybody give me some guidance?I've got the first part of the script done... It checked for keyword1 being blank.I tried just adding another notEmpty(form.keyword_phrase) to the script besides the first if... And that didn't help. If you want to ask an OR question, use the || operator.

Re: GODaddy SSL certs

2004-10-15 Thread Matt Robertson
And Comodo claims better compatibility (below).I don't pay much attention to percentage claims, as thats all they are with all of these guys:IE 5.00 is the default for a bare win2k install and I've seen a disturbing amount of traffic using it.Same with older NN's. The Opera stuff is just

RE: How to prevent multiple logins

2004-10-15 Thread Burns, John D
But what if the login information is lost accidentally?I agree that the app may dictate anything, but it seems the helpdesk overhead with handling issues of I got logged out for no reason would outweigh the need for one login per user.Especially because that negates having 2 browsers open with the

RE: Compare/Diff functionality

2004-10-15 Thread Micha Schopman
The 100% cpu was not the direct result of the code, it was the result of using cfdump on a large array, but unfortunately Jrun kept using 100%. I modified the code and it runs perfectly now. Still I am interested in others experiences. I also looked at those possibilities but diff is only

Re: How to prevent multiple logins

2004-10-15 Thread Barney Boisvert
There's not reason you have to just kill the first user's session. Give them a nice message that says someone else logged in with their credendials, and they need to do something about it. The 2 browser issue isn't an issue if they're instances of the same browser, becaue they'll share a

Re: Compare/Diff functionality

2004-10-15 Thread Jochem van Dieten
Micha Schopman wrote: I also looked at those possibilities but diff is only available on Linux, where it has been integrated. Not just Linux, every POSIX OS. I believe it is available from Microsoft in the SFU package (formerly known as Interix). Jochem [Todays Threads] [This Message]

Re: How to prevent multiple logins

2004-10-15 Thread Matt Robertson
Not sure I get what you mean by lost accidentally. Adding an onscreen note to the logged-off individual effectively takes care of help desk issues. You have been logged off because another user has logged on with your credentials at another workstation.You may wish to call Security, or your

Re: GODaddy SSL certs

2004-10-15 Thread Damien McKenna
Tim Laureska wrote: Our root certificate - the Valicert Class 2 Policy Validation Authority - is installed in the following browser versions Just as a warning, I've seen some sites state that and then end up with some visitors getting security warnings.Just be careful and double-check their

Re: How to prevent multiple logins

2004-10-15 Thread Matt Robertson
Barney Boisvert wrote: Give them a nice message that says someone else logged in with their credendials, and they need to do something about it. I think it all depends on what you want from your app.For some, like a commercial membership site, that would probably be undesirable. Others may

RE: How to prevent multiple logins

2004-10-15 Thread Burns, John D
My argument isn't for me, but for the average user.They don't know the different between opening another instance of IE versus a new window of the same instance. John -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 1:29 PM To: CF-Talk

SOT: Functional roles on web application team

2004-10-15 Thread Earl, George
I have lost my bookmark to a page on MM's site that described the different functional roles needed on a team that develops web applications. If I remember correctly they defined about 13 distinct roles and what their responsibilities are. This was in the context of an article on overall web

RE: Functional roles on web application team

2004-10-15 Thread Micha Schopman
Are you looking for information regarding workflow in content management systems, and terms like author, editor, approver, reviewer, etc. ? :) From: Earl, George [mailto:[EMAIL PROTECTED] Sent: Fri 10/15/2004 8:00 PM To: CF-Talk Subject: SOT: Functional roles on

Trouble switching JVMs on Linux

2004-10-15 Thread Martin Olson
Hi all, A server of ours had been having trouble where it would hang frequently (sometimes twice a day, sometimes not for days) with the unexpected signal 11 error as described here: http://www.talkingtree.com/blog/index.cfm?data=""> After a lot of research the general consensus seemed to be

Re: Functional roles on web application team

2004-10-15 Thread george . earl
Micha said: Are you looking for information regarding workflow in content management systems, and terms like author, editor, approver, reviewer, etc. ? :) No, I'm looking for information regarding functional roles on a team of people who build web applications. I'm thinking of roles such

RE: Trouble switching JVMs on Linux

2004-10-15 Thread Steven Erat
Martin, My blog entry actually recommends using the -Xint JVM argument to disable the Sun JVM HotSpot runtime optimizer.It doesn't recommend using a different JVM. Anyway, the problem you're running into is because while you changed the jvm.config JVM, you probably left the -server switch in

PayPal and But it Now buttons

2004-10-15 Thread Ewok
I’ve never used PayPal on a site but guess what… now I don’t have an option. I see a lot of PayPal stores and buy it now buttons all over the web so I figured someone here has done what I need somewhere down the line. There is absolutely no need for a cart in what I have. Registered users will

RE: Functional roles on web application team

2004-10-15 Thread Ketan Patel
Hi George, Are you looking for this article? http://www.macromedia.com/resources/techniques/ Ketan Patel _ From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 2:53 PM To: CF-Talk Subject: Re: Functional roles on web application team

Re: PayPal and But it Now buttons

2004-10-15 Thread dave
its pretty easy if ur using dw there are a few extensions for it, u just need to tweak it abitfor dynamic content. pablo has a tut on www.easycfm.com about using there notification upon purchase feature. there are also some test scripts out there u can use with fake transactions and paypal, at

RE: Functional roles on web application team

2004-10-15 Thread Lawrence Ng
I think you mean this one. scroll down halfway http://www.macromedia.com/resources/techniques/define/plan.html [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: Functional roles on web application team

2004-10-15 Thread Lawrence Ng
the resources section has some good info as well. hope this helps everyone... [EMAIL PROTECTED] 10/15/2004 12:23:54 PM I think you mean this one. scroll down halfway http://www.macromedia.com/resources/techniques/define/plan.html [Todays Threads] [This Message] [Subscription] [Fast

RE: How to prevent multiple logins

2004-10-15 Thread Ewok
If you use session variables to log them in, you can read all information stored in the session scope and compare the login names with what’s already in the session. I used something just like this to count how many users were logged in, who was logged in, how many were administrators, how many

RE: GODaddy SSL certs

2004-10-15 Thread Tim Laureska
Where can you go to check their stats? -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 1:38 PM To: CF-Talk Subject: Re: GODaddy SSL certs Tim Laureska wrote: Our root certificate - the Valicert Class 2 Policy Validation Authority - is

Re: Trouble switching JVMs on Linux

2004-10-15 Thread Martin Olson
On Fri, 15 Oct 2004 15:00:14 -0400, Steven Erat [EMAIL PROTECTED] wrote: My blog entry actually recommends using the -Xint JVM argument to disable the Sun JVM HotSpot runtime optimizer.It doesn't recommend using a different JVM. Steve, thanks for writing back and you're correct of course

Re: GODaddy SSL certs

2004-10-15 Thread Damien McKenna
Tim Laureska wrote: Where can you go to check their stats? Double-check them yourself, as I suggested in a previous email. -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 Nothing endures but

RE: late night query ?

2004-10-15 Thread dave
this was the answer the from statements usually does help eh! and of course naming the db tables correctly cfquery name=qCards datasource=#dsn# username=#un# password=#pw# SELECT * FROM userscards, tblcards WHERE userscards.usersID = '#qgetUser.userID#' AND userscards.cardID = tblcards.CardID

RE: GODaddy SSL certs

2004-10-15 Thread Tim Laureska
Yeah, I know what you said in the previous email... but where do you check stats like that ... is there a web site that tracks this or how would you determine their stats other than relying on what they say in their web site? -Original Message- From: Damien McKenna [mailto:[EMAIL

Re: GODaddy SSL certs

2004-10-15 Thread Damien McKenna
Tim Laureska wrote: Yeah, I know what you said in the previous email... but where do you check stats like that ... is there a web site that tracks this or how would you determine their stats other than relying on what they say in their web site? I don't know of any off hand.I would say that if

CF_ColoredCode

2004-10-15 Thread Brad Roberts
Does anyone have (or know where I can download) the latest version of Dain Anderson's CF_ColoredCode?cfcomet.com is down... Thanks, Brad [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CF_ColoredCode

2004-10-15 Thread Charlie Griefer
http://charlie.griefer.com/coloredcode.zip On Fri, 15 Oct 2004 15:50:33 -0400, Brad Roberts [EMAIL PROTECTED] wrote: Does anyone have (or know where I can download) the latest version of Dain Anderson's CF_ColoredCode?cfcomet.com is down... Thanks, Brad [Todays Threads] [This

Re: CF_ColoredCode

2004-10-15 Thread Ray Champagne
Just curious...what is it? Ray At 03:50 PM 10/15/2004, you wrote: Does anyone have (or know where I can download) the latest version of Dain Anderson's CF_ColoredCode?cfcomet.com is down... Thanks, Brad [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: CF_ColoredCode

2004-10-15 Thread Brad Roberts
You're the man!Thanks for the quick response. -Brad - Original Message - From: Charlie Griefer To: CF-Talk Sent: Friday, October 15, 2004 3:55 PM Subject: Re: CF_ColoredCode http://charlie.griefer.com/coloredcode.zip On Fri, 15 Oct 2004 15:50:33 -0400, Brad Roberts [EMAIL PROTECTED]

Re: CF_ColoredCode

2004-10-15 Thread Bryan Stevenson
I bet it colour codes code that is output on apage (i.e. code examples) Years ago...Duncan Campbell that runs/ran asite called www.defusion.com wrote a similar tag...it may still be available there Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group

Re: CF_ColoredCode

2004-10-15 Thread Charlie Griefer
outputs your code to the screen color-coded (a la HomeSite or Dreamweaver).useful if you want to share your code with others. On Fri, 15 Oct 2004 16:02:19 -0400, Ray Champagne [EMAIL PROTECTED] wrote: Just curious...what is it? Ray At 03:50 PM 10/15/2004, you wrote: Does anyone have (or

Re: GODaddy SSL certs

2004-10-15 Thread Matt Robertson
Tim, Maybe what you should do is check the stats of the sites you propose to install these certs for.Do it for a 1-yr period.If you see an IE5.0 visit percentage, and NN4 (or whatever else that is visible that doesn't conform to GoDaddy's capabilities) then you can expect that percentage of users

Re: PayPal and But it Now buttons

2004-10-15 Thread Brad Roberts
You may want to sign up as a PayPal developer, which allows you to use test account. http://developer.paypal.com -Brad - Original Message - From: dave To: CF-Talk Sent: Friday, October 15, 2004 3:23 PM Subject: Re: PayPal and But it Now buttons its pretty easy if ur using dw there

RE: PayPal and But it Now buttons

2004-10-15 Thread Ewok
That will definitely help, thanks a lot _ From: Brad Roberts [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 4:09 PM To: CF-Talk Subject: Re: PayPal and But it Now buttons You may want to sign up as a PayPal developer, which allows you to use test account.

Multiple Table Query

2004-10-15 Thread Nick Baker
Am I going about selecting from two tables in the right manner? 1. Select all email addresses (variable Email) from Table condensed. ID2 is the index 2. Then the entire record for theemail addresses ((variable Email2) table mailistthat match the email addresses in Table condensed Code:

Re: Multiple Table Query

2004-10-15 Thread Barney Boisvert
SELECT maillist.* FROM condensed INNER JOIN maillist ON condensed.email = maillist.email2 That says select everything from the maillist table, where the maillist.email2 field is equal to the condensed.email field.You don't need to select the condensed.email field, because it's guarenteed to be

Re: Multiple Table Query

2004-10-15 Thread Anders Green
At 05:54 PM 10/15/2004, Nick Baker wrote: Am I going about selecting from two tables in the right manner? 1. Select all email addresses (variable Email) from Table condensed. ID2 is the index 2. Then the entire record for theemail addresses ((variable Email2) table mailistthat match the email

Need a Mail Server Solution Pronto!

2004-10-15 Thread Rick Faircloth
Hi, all... Here's the deal...I've just now begun to send too much email for clients through CF and I've bumped into a ceiling for daily emails through my ISP's mail server, so I have to get my own running. Still using CF 4.5...Windows 2000 Server...No plans to upgrade CF. Buying another server

Re: Need a Mail Server Solution Pronto!

2004-10-15 Thread Jochem van Dieten
Rick Faircloth wrote: Anyone have recommendations for a mail server...as inexpensive as possible? (Can you tell funds are low at the moment?:o) IIS SMTP? Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Laszlo decision to open source pays a dividend

2004-10-15 Thread Rick Mason
Apparently Laszlo's decision to open source their software has paid a dividend already.They just raised a further five million dollars in venture capital. http://dbusinessnews.com/shownews.php?type_news=latestnewsid=2506 Haven't downloaded Laszlo yet, but I thought it was kind of interesting.

RE: Multiple Table Query

2004-10-15 Thread Dave Watts
Am I going about selecting from two tables in the right manner? 1. Select all email addresses (variable Email) from Table condensed. ID2 is the index 2. Then the entire record for theemail addresses ((variable Email2) table mailistthat match the email addresses in Table condensed

Re: Need a Mail Server Solution Pronto!

2004-10-15 Thread Eric Dawson
Mercury - FREE www.pmail.com www.coolfusion.com IMS SE? - Original Message - From: Rick Faircloth To: CF-Talk Sent: Friday, October 15, 2004 5:07 PM Subject: Need a Mail Server Solution Pronto! Hi, all... Here's the deal...I've just now begun to send too much email for clients

Re: Laszlo decision to open source pays a dividend

2004-10-15 Thread dave
well good then maybe they can get it updated to work with flash past version 5 -- Original Message -- From: Rick Mason [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Fri, 15 Oct 2004 18:03:59 -0400 Apparently Laszlo's decision to open source their

Securing the ColdFusion Administrator...

2004-10-15 Thread Troy Simpson
All, I was wondering it there was a way to secure the ColdFusion Adminstrator with Apache's DirectoryMatch Directive. I can't seem to get it to work. For example, if my URL is http://hostname.com/app1/CFIDE/administrator/ This works: DirectoryMatch app1.../DirectoryMatch This does not work:

Re: Securing the ColdFusion Administrator...

2004-10-15 Thread Troy Simpson
All, Additionally, this also does not work. Directory /jrunserver/app1/cfusion-ear/cfusion-war/CFIDE/administrator.../Directory But this does work: LocationMatch CFIDE/administrator.../LocationMatch Any ideas why? Thanks, Troy Troy Simpson wrote: All, I was wondering it there was a way

  1   2   >