RE: sql question...

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166612---You are grouping on the paymentDate AND selecting it. This will return all paymentDates instead of the last. I didn't have to do something like this yet, but I recall a thread with some answers not that long ago. It isn't very simpl

RE: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166613---I see you are using session vars, so I would recommend session.times_logged_on. But that aside, you have to realize that there is no way of really blocking more than x attempts to log in on a web app. All methods you can come up wi

RE: cfmail problem

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166614---The from has to be a valid email address. So I would check that (download IsEmail from cflib.org):    cc="#variables.siteEmail#" from="#form.Email# " subject="leads #form.CategoryText# Lead"> . I d

Securing Directories

2004-06-15 Thread Paul Wilson
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166615---I am developing a CF App that allows users to login in and view pdf and excel documents. These documents contain very sensitive information and I can't allow one user to be able to view another user's documents. I'm going to use sess

Re: Securing Directories

2004-06-15 Thread Mark Drew
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166616---Hi there Paul I had to implement something like this a few years back (with CV's rather than anything else) and the basic outline of how I implemented it is as follows: 1) All documents are stored ouside of the web root, eg: c:\Inetp

CF Dates with MX 6.1 ?

2004-06-15 Thread Ian Vaughan
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166617---Hi Since upgrading to MX 6.1 the following date lines are not working, the error returning is Error Executing Database Query. [Macromedia][Oracle JDBC Driver][Oracle]ORA-01843: not a valid month This is an example of two o

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166618---If you are using oracle, you should definitely use to_date to store dates. It is probably using a US date format instead of a european. Another solution is to pass everything as ISO dates -mm-dd. Most DBs and apps understand it a

SOT: Page Layout Problems

2004-06-15 Thread James Smith
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166619---Hi all, I have a large CF application running a stock control and invoicing system for one of my clients.  They now wish to use custom stationary to print out dispatch notes complete with address and returns labels (like the ones Am

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Ian Vaughan
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166620---Pascal This is the original code, and you are correct its in US Format WHERE startdate <= #createodbcdate(formatted_date)# So change it to WHERE STARTDATE <= TO_DATE( value="#formatted_date#">,'DD/MM/') Is

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166621---> Pascal >   > This is the original code, and you are correct its in US Format >   > >   > WHERE startdate <= #createodbcdate(formatted_date)# >   > So change it to >   > WHERE STARTDATE <= TO_DATE( > value="#formatted_date#">,

Re: Upload a file via a webservice?

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166622---On Monday 14 Jun 2004 23:34 pm, Andrew Spear wrote: > Does anyone know if it is possible to upload a file in CFMX via a > webservice (also CFMX)?  I've Googled it and it sounds possible, but I > haven't seen any examples. I'd think

Re: XP SP2 IE Changes (was: DHTML drop-down menu)

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166623---On Monday 14 Jun 2004 13:50 pm, Burns, John D wrote: > you can click to allow the pop-ups or whatever.  I'm not 100% sure but > if they block all of that stuff, that will really suck for us web > developers. There is - it appears un

Re: jtcc.edu subscriber(s): LART your mail administrator

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166624---On Tuesday 15 Jun 2004 01:03 am, Girardeau, Anne wrote: > Michael alerted me around 12:00 EST today.  After receiving his e-mail, I > contacted our e-mail admin who has since white listed houseoffusion.com. I just received a further

Re: jtcc.edu subscriber(s): LART your mail administrator

2004-06-15 Thread Jochem van Dieten
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166625---Girardeau, Anne wrote: >   > Michael alerted me around 12:00 EST today.  After receiving his e-mail, I contacted our e-mail admin who has since white listed houseoffusion.com. This is NOT a simple white-listing issue. The issue is a

RE: sql question...

2004-06-15 Thread Tony Weeg
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166626---yeah, but you have to, its an aggregate query, and if all of the contents of the select list, do not reside in the groupy by clause, it bombs :( so, any other ideas...thanks anyway pascal. tony Tony Weeg sr. web applications a

What sort of a link is this??

2004-06-15 Thread Michael Kear
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166627---A client has asked me to try to see whats' wrong with his link that doesn't work  . I'm looking at the page that calls the one that's broken and the calling URL is: http://www.vcenet.com.au/?sec=10 &ms=10&Membership=1# in other wo

RE: What sort of a link is this??

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166628---Yes. If you leave out the file, it will get the default file for that directory. You probably need index.cfm. > -Original Message- > From: Michael Kear [mailto:[EMAIL PROTECTED] > Sent: dinsdag 15 juni 2004 13:32 > To: CF-T

Re: What sort of a link is this??

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166629---On Tuesday 15 Jun 2004 12:31 pm, Michael Kear wrote: >  in other words, there's no actual CFM file called, apparently.   Is this > valid?   What file will it be calling?    It's perfectly valid - the webserver will serve up the defa

RE: sql question...

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166630---I meant that you will need at least 2 queries because of that!! The only solution I can come up with on short notice is get the acctNo and maxdate, loop over that query and query for the detail. I'm sure there must be a better solu

Archive links at head of posts

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166631---On Tuesday 15 Jun 2004 12:39 pm, Thomas Chiverton wrote: > Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166629 Is that really needed at the *top* of _every single post_ ? -- Tom Chiverton Advanced ColdFusion Programme

RE: FW. www.FairFuelTax.co.uk

2004-06-15 Thread Kola Oyedeji
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166632---Jeez, it was a joke! -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: 14 June 2004 16:23 To: CF-Talk Subject: Re: FW. www.FairFuelTax.co.uk On Mon, 14 Jun 2004 14:55:40 +0100, Kola Oyedeji wrote: > >

ATTN: Mike (was Re: jtcc.edu subscriber(s): LART your mail administrator)

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166633---On Tuesday 15 Jun 2004 11:35 am, Thomas Chiverton wrote: > I just received a further bounce. > Please contact them again :-) Mike, I seem to get a bounce from the jtcc.edu email server for every single post I make, can you unsub th

ot-quick javascript question

2004-06-15 Thread Janine Jakim
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166634---I use some _javascript_ validation for one page where users can change account information. I want to add a validation that alerts them if the password is less than 6 characters long I have this but it doesn't work. Here's the chunk

RE: ot-quick javascript question

2004-06-15 Thread Katz, Dov B (IT)
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166635---You want Password.value -dov   _   From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 8:14 AM To: CF-Talk Subject: ot-quick _javascript_ question Archive: http://www.houseoffusion.com/lists.cfm/link=i:4

RE: sql question...

2004-06-15 Thread Tony Weeg
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166636---yeah, I can do it, with two queries too :) just like you said, tryin to get down to one! thanks, if you can think of anything, let me know. tw -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: T

RE: Archive links at head of posts

2004-06-15 Thread Tony Weeg
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166637---twas wondering the same thing... kinda feel like I have to duck my head to read a message ;) tony -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 7:55 AM To: CF-Talk Subje

RE: Archive links at head of posts

2004-06-15 Thread Calvin Ward
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166638---Can we put it lower? I'm reading from a phone and real estate is precious! -Original Message- From:  Tony Weeg Date:  6/15/04 8:17 am To:  CF-Talk Subj:  RE: Archive links at head of posts Archive: http://www.houseoffusion

Re: Archive links at head of posts

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166639---On Tuesday 15 Jun 2004 13:46 pm, Calvin Ward wrote: > Can we put it lower? I'm reading from a phone and real estate is precious! :nods In the footer, with all the other stuff, where it should be. -- Tom Chiverton Advanced ColdFus

RE: ATTN: Mike (was Re: jtcc.edu subscriber(s): LART your mail administrator)

2004-06-15 Thread Girardeau, Anne
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166640---Tom, That's very strange because I'm receiving posts from the mailing list without problem.  If you could send me the bounced message it would be greatly appreciated.  Just send it off-list to [EMAIL PROTECTED] to avoid another po

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Matt Liotta
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166641---Take a look at the DCMA and see what it has to say about encryption devices. One could argue RDS is an encrypted protocol, which opens up a whole can of worms thanks to the DCMA. Clearly the correct course of action was to contact

bypass basic authentication credentials of IIS

2004-06-15 Thread gc deep
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166642---I have two applications one having web application security(Cold Fusion)   with User Login Details etc and other(ASP) having Basic Authentication turned ON. Both applications are on different web servers. I would like to provide a l

RE: Archive links at head of posts

2004-06-15 Thread C. Hatton Humphrey
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166643---> In the footer, with all the other stuff, where it should be. Since it appears that Mr. D is still slumbering I'll make a few comments in defense of the archive link - First, it's a Godsend for folks like me who don't have the tim

Re: ot-quick javascript question

2004-06-15 Thread jjakim
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166644--->You want Password.value >-dov Nope that didn't work. Plus isn't value used differently. I use value to check for nulls/if there's @/. in email addresses, etc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: ot-quick javascript question

2004-06-15 Thread Ray Champagne
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166645---Try thisForm.password.value.length < 6 At 09:10 AM 6/15/2004, you wrote: >Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166644 >--- > >You want Password.value > >-dov >Nope that didn't work. Plus isn't value used differen

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Douglas.Knudsen
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166646---huh?  Looks like Ian is using a DATE type, no need for to_date() then at all. WHERE startdate <= Of course, if using CACHEDWITHIN attribute, then you can't use the cfqueryparam, then u have to use to_date() WHERE startdate <=

RE: ot-quick javascript question

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166647---if (theform.Password.value.length<6){   alert("The password must be at least 6 characters long.")   theform.Password.focus()   return false; } > -Original Message- > From: Janine Jakim [mailto:[EMAIL PROTECTED] > Sent: di

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Ian Vaughan
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166648---Just these letting me down "MM-DD-")>     "MM-DD-")> I have tried         but am recieving Entity has incorrect type for being called as a function. The symbol you have provided startdate is not the name of a fun

Re: sql question...

2004-06-15 Thread jjakim
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166649---You are getting multiple records because your tables are probably set up as one to many relationships and there is 2/more records being pulled from the table. For example if an account is hooked to more than 1 payment plan or the deb

Re: Archive links at head of posts

2004-06-15 Thread G
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166650---The problem is not necessarily with the link, but it's location. I'd like to add my vote for putting the link at the bottom of the posts.   - Original Message -   From: C. Hatton Humphrey   To: CF-Talk   Sent: Tuesday, J

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166651---I am no expert on that, but what date format would be allowed using cf_sql_date? My experience is that, due to the different server configs we have in Europe (and especially Belgium), using to_date was the only safe alternative whe

Re: Archive links at head of posts

2004-06-15 Thread Ray Champagne
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166652---I second the motion - it is just awkward, not unhelpful. lAt 09:30 AM 6/15/2004, you wrote: >Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166650 >--- >The problem is not necessarily with the link, but it's location. > >I

Re: Archive links at head of posts

2004-06-15 Thread Greg Landers
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166653---I also agree ... link should be at the bottom. - Greg G wrote: > Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166650 > --- > The problem is not necessarily with the link, but it's location. > > I'd like to add my vote

re: CF & Flash

2004-06-15 Thread Hoe
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166654---Hello, How simple would it be to include my application into Flash? Create a Flash GUI and include all my CF code etc.? Toxic. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166655---On Tuesday 15 Jun 2004 13:53 pm, Matt Liotta wrote: > whole can of worms thanks to the DCMA. Clearly the correct course of > action was to contact Macromedia in regard to RDS and they have spoken. IMVHO no-one should be using RDS in

Re: Archive links at head of posts

2004-06-15 Thread Calvin Ward
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166656---I do like the link itself... Just not the location! -Original Message- From:  G Date:  6/15/04 9:31 am To:  CF-Talk Subj:  Re: Archive links at head of posts Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166650

RE: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Steve Nelson
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166657---Cookies are definitely not the only solution. This would make an interesting CF contest. Who ran that CF contest a couple months ago? Steve Nelson   _   From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15,

RE: CF & Flash

2004-06-15 Thread Raymond Camden
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166658---This is a very open ended question. The short answer is that you just can't "Include" cf code inside a Flash application. You can, however, execute CF code via web services or flash remoting. So, for example, you can populate a drop

RE: CF & Flash

2004-06-15 Thread Adkins, Randy
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166659---Don't you like it when people post NEW TOPICS using the subject line:    RE: -Original Message- From: Hoe [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 9:40 AM To: CF-Talk Subject: re: CF & Flash Archive: ht

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Mark Drew
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:10---Why? I have had to use it as I am a remote developer and it is very good in terms of speed, now, I agree it is not as secure but that can be overcome surely? What GOOD alternatives do you suggest? > IMVHO no-one should be using RD

Re: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread G
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:11---This is a bit of a tangent to this topic, but I'm curious whether I'm the only person out there who gets annoyed by systems that employ this technique. The system we built at my old dot.com company employed this technique, and it dro

RE: Archive links at head of posts

2004-06-15 Thread C. Hatton Humphrey
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:12---> Message: http://www.houseoffusion.com/lists.cfm/link=i:4:166652 It's already in the footer of the message, methinks the issue has something to do with Google Groups - they apparently clear out the footer of every message.  Makes f

RE: Archive links at head of posts

2004-06-15 Thread Burns, John D
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:13---Here's the weird thing...it's at the bottom too.   I'm not sure why it also needs to be at the top.  Look down by the ads. John -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004

What do you do with bounced emails?

2004-06-15 Thread Michael Kear
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:14---Those of you who send out bulk emails from your sites,  how do you handle the inevitable bounced emails/undeliverable/invalid addresses etc?    I've told my client he should set up a mailbox to use as a 'replyto' and collect them t

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:15---On Tuesday 15 Jun 2004 14:47 pm, Mark Drew wrote: > Why? Insecure, for starters. No revision control. Copes badly with multiple updates to the same file. Doesn't support locks. There was an issue with dates mentioned earlier today t

RE: CF & Flash

2004-06-15 Thread Burns, John D
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:16---Depends on how well you made your CF app.  Are you using CFCs? Do you have the ability to do remoting or webservice calls from flash?  Do you know action script?  Obviously, it's not just a drag and drop sort of thing, but it's defin

Re: CF Comet FTP Info

2004-06-15 Thread Dain Anderson
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:17---Hi Mike, Well, still no luck. I really hate bugging you with all of this! Here's what I have: Host: 64.74.114.235 User_ID: cfcomet PW: Great_Dain Port: 21 Mode: Passive Remote Folder: /cfcomet I've tried different case-sensitivit

RE: What do you do with bounced emails?

2004-06-15 Thread Burns, John D
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:18---I've been trying to come up with an automated way, but the problem is figuring out what the bounced email reason is programmatically since each mail server responds with a different message.  One thing you didn't mention that you may

Re: Archive links at head of posts

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:19---On Tuesday 15 Jun 2004 14:53 pm, C. Hatton Humphrey wrote: > I'm also guessing that not many people knew it existed down there already > :) I trim the footers off anyway :-) If it's already down there, another good reason for it not

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Ian Vaughan
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166670---Doug How would I change the following two lines to make it compatible with mx 6.1? Because it does not like the createodbcdate ??? "MM-DD-")> "MM-DD-")> From: [EMAIL PROTECTED] [mai

Re: bypass basic authentication credentials of IIS

2004-06-15 Thread Jochem van Dieten
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166671---gc deep wrote: > > I have two applications one having web application security(Cold Fusion)   with User Login Details etc and other(ASP) having Basic Authentication turned ON. Both applications are on different web servers. > > I w

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Mark Drew
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166672---What do you recomend? WebDav? I like it simply because working over  a VPN makes it VERY slow and RDS seems like lightening compared to that MD On Tue, 15 Jun 2004 14:56:04 +0100, Thomas Chiverton <[EMAIL PROTECTED]> wrote: > > A

Windows file synchronizer?

2004-06-15 Thread Burns, John D
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166673---I have 2 servers that have the same app running on them and people upload files through the app.  The servers are not on the same network, but are connected via a VPN connection.  I originally was looking at doing FTP across the serv

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Thomas Chiverton
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166674---On Tuesday 15 Jun 2004 15:04 pm, Mark Drew wrote: > WebDav? Logging into the box and using CVS over SSH, myself. > I like it simply because working over  a VPN makes it VERY slow and > RDS seems like lightening compared to that Th

RE: Windows file synchronizer?

2004-06-15 Thread Mark W. Breneman
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166675---We use MirrorFolder  http://www.techsoftpl.com/backup/ and we love it.  It also has the ability to zip the contents of the folder for archiving. Mark W. Breneman -Cold Fusion Developer -Network Administrator   Vivid Media   [EMAIL P

RE: What do you do with bounced emails?

2004-06-15 Thread Mark W. Breneman
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166676---I have not used this tool yet, but I will be soon. http://boogietools.com/. Boogie tools makes several tools for doing just what you are looking for. Mark W. Breneman -Cold Fusion Developer -Network Administrator   Vivid Media   [E

Simple way to add spaces

2004-06-15 Thread Phillip B
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166677---I need to write a fixed length file on a daily basis. and need to find a simple way of adding the missing spaces to a string. The issue I'm having is adding the trailing spaces to the end of each field. I can do a len on the strin

RE: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Mark W. Breneman
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166678---We built something like this into our default admin template that we base all of our client's admin / content management section off of.  I decided that I did not want to lock the user out after 3 attempts and then force them to call

RE: Simple way to add spaces

2004-06-15 Thread Joe Rinehart
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166679---Phillip, LJustify(string, length) is a function made just for this. #lJustify(dealer_code, 8)# -Joe -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 10:28 AM To: CF-Talk

Re: Windows file synchronizer?

2004-06-15 Thread Britney Spears
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166680---We use "SureSynch". Works great! On Tue, 15 Jun 2004 10:06:49 -0400, Burns, John D wrote: >Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166673 >--- >I have 2 servers that have the same app running on them and people >up

Re: Simple way to add spaces

2004-06-15 Thread Phillip B
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166681---Thats it. Thanks man! Joe Rinehart wrote: > Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166679 > --- > Phillip, > > > LJustify(string, length) is a function made just for this. > > > #lJustify(dealer_code, 8)# > > > -J

Re: image dimensions

2004-06-15 Thread daniel kessler
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166682---While it looks very nice, it's difficult to get funds allocated in my environment. Even so, it really looks like I'm one java function call away from making it work.  Just for some reason, this is getting an error: Error: Object Ins

Re: Windows file synchronizer?

2004-06-15 Thread Mark Drew
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166683---I must say that I never new Britney Spears was also a coldfusion developer. now that is amazing! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Securing Directories

2004-06-15 Thread Claude Schneegans
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166684--->>How can I prevent unauthorised access to these directories.? Hi, I've solved a similar problem this way: When you upload the pdf file, rename it .cfm instead of .pdf. This way, you can protect them from being accessed with an appl

MX Java Maximum Memory Setting

2004-06-15 Thread Daniel J O'Keefe
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166685---A customer of mine set the maximum memory for Java setting to high and the service does not start. For the life of me, I cannot find the setting in the registry or in any of the XML files. Anyone know where I can lower this setting s

Re: Archive links at head of posts

2004-06-15 Thread Mark Drew
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166686---I am reading this from a gmail account... the preview of all the messages is now: Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:19 Great... REAL helpful MD [Todays Threads] [This Message] [Subscription] [Fast

RE: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Paul Kenney
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166687---Not that I think you should implement RDS, but there is an open source implementation of Flash Remoting for PHP out there.  Did MM give its blessing on that one?  Just curious.  I'd say skip RDS mainly because of its shortcomings.  H

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166688---What format is startdate in ? > -Original Message- > From: Ian Vaughan [mailto:[EMAIL PROTECTED] > Sent: dinsdag 15 juni 2004 15:59 > To: CF-Talk > Subject: RE: CF Dates with MX 6.1 ? > > Archive: http://www.houseoffu

ANNOUNCE: CFUN-04 last day for $269 price TODAY 6/15/04; interviews CF Studio, Jeff Peters, Mont College

2004-06-15 Thread Michael Smith
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166689---The $269 price for CFUN expires today midnight EST. In these CFUN-04 interviews, Michael Smith talks with Jo Belyea-Doerman on "CF Studio Tips", Jeff Peters about "Want to Succeed? Here's the One Thing You Need" and Professor Melis

RE: Archive links at head of posts

2004-06-15 Thread Raymond Camden
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166690---Just an FYI, the preview in Outlook is also the same. Definitely something I vote against as well. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread me
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166691---On Tue, 15 Jun 2004 08:06:12 -0700, "Paul Kenney" wrote: > I'd say skip RDS > mainly because of its > shortcomings.  How about a web-service interface using > CFCs instead? We trying to stear clear of having cfeclipse coders have t

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Ian Vaughan
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166692---mm/dd/ From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: 15 June 2004 16:27 To: CF-Talk Subject: RE: CF Dates with MX 6.1 ? Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166688 --

QoQ type comparison bug

2004-06-15 Thread Doug James
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166693---HELP! I am getting the old: Query Of Queries runtime error. Unsupported type comparison. I have a db query then I build a QoQ using DateFormat(tmp_Date,"mm/dd/") in the QuerySetCell(). I then have a QoQ:   select Meeting_Date

RE: QoQ type comparison bug

2004-06-15 Thread Marlon Moyer
You might try and Meeting_Date > '#query1.Meeting_Date[1]#' or assign the query1.meetingdate to a variable first. -- Marlon Moyer, Sr. Internet Developer American Contractors Insurance Group phone: 972.687.9445 fax: 972.687.0607 mailto:[EMAIL PROTECTED] www.acig.com > -Original Message--

Re: Archive links at head of posts

2004-06-15 Thread Michael Dinowitz
I have the link at the top of all posts in the Google and Yahoo groups archives. I wanted to see how it would look in the normal mail, especially as GMail 'hides' the footers in almost all cases. I've removed the top version of the link for normal list mail though it still exists in the footer of e

RE: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Cary Gordon
Wouldn't it be possible to use openSSH as a base to build an improved RDS type functionality? Cary Gordon The Cherry Hill Company [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: QoQ type comparison bug

2004-06-15 Thread Steve Nelson
It's probably because it's treating it like a string instead of a datetime since you used dateformat in the querysetcell. Is tmp_date already a date? Try removing the dateformat(). Steve Nelson   _   From: Doug James [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 12:01 PM To: CF-Tal

SQL Max Statement Help

2004-06-15 Thread Mark Leder
Hi All, Two tables I'm trying to query: 1) Membership table, each with a unique "memberID" 2) Transaction table, could be many records associated with one member ID (one-to-many).  Has a unique ID (transaction ID, along with "memberID" column(for joining) and a "paidThru" column. I want to query

RE: CF Dates with MX 6.1 ?

2004-06-15 Thread Pascal Peters
Use that format in conjunction with TO_DATE() > -Original Message- > From: Ian Vaughan [mailto:[EMAIL PROTECTED] > Sent: dinsdag 15 juni 2004 17:40 > To: CF-Talk > Subject: RE: CF Dates with MX 6.1 ? > > Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166692 > --- > mm/dd/

OT: Language Translation Web Service

2004-06-15 Thread Ketan Patel
Hi All, I have a project where I need to give a choice to people to translate a HTML page into different languages. Actually have to carry over that translate button in footer on every page. Does anybody know about a web service? Which I can call and translate the page by still keeping them on thei

RE: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Matt Robertson
Granted that deleting cookies pretty much zaps session management, but... The trick to making this work right, I think, is making it successfully self-service.  A user has to have enough retries to get it thru their thick skull that they forgot their password (I use 4 strikes).   The lockout has

Re: Archive links at head of posts

2004-06-15 Thread Calvin Ward
Thanks Mike! You're doing a bangup job! -Original Message- From:  Michael Dinowitz Date:  6/15/04 12:07 pm To:  CF-Talk Subj:  Re: Archive links at head of posts I have the link at the top of all posts in the Google and Yahoo groups archives. I wanted to see how it would look in the nor

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Thomas Chiverton
On Tuesday 15 Jun 2004 17:17 pm, Cary Gordon wrote: > Wouldn't it be possible to use openSSH as a base to build an improved RDS > type functionality? If you are on Linux, you can already mount a remote machines filesystem using ssh, using User Land Filesystem: http://sourceforge.net/projects/luf

RE: MX Java Maximum Memory Setting

2004-06-15 Thread Dave Carabetta
>A customer of mine set the maximum memory for Java setting to high and the >service does not start. For the life of me, I cannot find the setting in >the >registry or in any of the XML files. Anyone know where I can lower this >setting so the service will start? > Look for the jvm.config file, l

Re: Language Translation Web Service

2004-06-15 Thread Paul Hastings
> I have a project where I need to give a choice to people to translate a HTML > page into different languages. Actually have to carry over that translate > button in footer on every page. Does anybody know about a web service? Which machine translators? bah humbug. try some of these but they gene

CFC Oddness

2004-06-15 Thread Deanna Schneider
Okay, so I'm in a Hal Helms class and neither he nor I can figure out this one. In the following CFC, if you set a variables.address at the beginning that is the same object type as is used in the init function, the variables.address supercedes the init setAddress() function. Why? Why? Why? No

Re: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Mark Drew
You are right, deleting cookies just makes it go away, otherwise we are into the arena of banning ip addresses and with dynamic IP addresses being used normally that is outta the window! MD [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: SQL Max Statement Help

2004-06-15 Thread G
Hjust off the top of my head Mark (completely untested/unverified), does this return what you want? SELECT M.firstName, M.middleName, M.lastName, M.email, M.company, M.city, M.zip, M.memberID, M.memberLevelID, max(T.paidThru) FROM Membership M JOIN Transaction T ON M.memberID = T.memberID

Re: RDS support (was Re: CFEclipse release - beta

2004-06-15 Thread Calvin Ward
We should consider defining what it is we are looking for from RDS and then go forth to create that functionality independently... -Original Message- From:  Thomas Chiverton Date:  6/15/04 12:24 pm To:  CF-Talk Subj:  Re: RDS support (was Re: CFEclipse release - beta On Tuesday 15 Jun 2

Re: locking user out after 3 incorrect attempts to log in

2004-06-15 Thread Casey C Cook
As log as it just kicks the user off the login screen I wouldnt mind. What I really dislike is 3 failed attempts and you have to call a helpdesk or send e-mail or whatever to have your account "reactivated" such that you can try to login again. Casey Cook [Todays Threads] [This Message] [S

SOT: LIFT for DWMX 2004

2004-06-15 Thread George Abraham
Hi, Has anyone here used LIFT for DWMX 2004? If so, what are your experiences/recommendations? For those not in the know: LIFT is the accessibility tool designed to work with Dreamweaver. URL: http://www.usablenet.com/products_services/lift_dw/lift_dw.html TIA, George [Todays Threads] [This

  1   2   >