RE: secure pages...

2001-02-12 Thread Tristram Charnley
As an adjunct to this... Does anyone know how to force the browser to show the security padlock when visiting an secure site that also uses frames? Tristram Charnley - [EMAIL PROTECTED] -Original Message- From: Jeff Howden [mailto:[EMAIL PROTECTED]] Sent: 12 February

RE: secure pages...

2001-02-12 Thread alistair . davidson
Make the frameset page an SSL page. For instance, if you're on a normal site that has, say, a secure shoppingbasket, when you load up the shopping basket, don't just load the basket page in your content frame, reload the WHOLE frameset from https: Haven't tried it myself, I must admit, but I

Languages

2001-02-12 Thread Ruben Chadien
We are looking at building a site in 120 languages. Witch languages doesn't Cold Fusion support, i know it doesen't suport UNICODE, but witch languages nedds UNICODE to work...? Also, does JRUN support all languages, would using JRUN (or mayby ASP) solve the language problem ? -Ruben Chadien

Re: secure pages...

2001-02-12 Thread MailMate
all elements must be secure, that means the complete frameset - Original Message - From: "Tristram Charnley" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, February 12, 2001 10:33 AM Subject: RE: secure pages... As an adjunct to this... Does anyone know how to force

RE: Languages

2001-02-12 Thread Neil Clark
Erm off the top of my head it is mostly the Asian languages : Japanese Chinese Malaysian Thai Korean Vietnamese... but there are others. N ! --- Neil Clark Senior Web Applications Engineer ColdFusion / Spectra / XML mcb digital [Allaire Premier Partner]

RE: Making Rows change color

2001-02-12 Thread Aidan Whitehall
tr bgcolor="#iif(qWhatever.CurrentRow MOD 2, DE('00'), DE('33'))#" Within a query-driven CFOUTPUT, try this slight variation: tr bgcolor="###iif(qWhatever.CurrentRow MOD 2, DE('00'), DE('33'))#" -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions

Re: Languages

2001-02-12 Thread Paul Hastings
Malaysian this is basically english, well roman letters (a,bc,x,y,z) anyways. Thai nope, thai doesn't require UNICODE per say but if you want to display more than a few langauges on one page, then yes these would all have to be UNICODEd. for instance it wouldbe ok if you tried to display

RE: Web Design

2001-02-12 Thread Aidan Whitehall
Remember Jakob is a useability practitioner specialising in HCI techniques. There is a big difference between good usability or HCI and good design What's HCI? -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/

RE: Web Design

2001-02-12 Thread Len Conrad
What's HCI? http://www.acronymfinder.com/af-query.asp?String=exactAcronym=hciFind=Find Len http://BIND8NT.MEIway.com : Binary for ISC BIND 8.2.3 for NT4 W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-spam mail gateways ~~ Structure

Scalable file not found message.

2001-02-12 Thread Phim
Hi Everyone When browser meet the 404.htm (File not found) IE will display an error message by using a local HTML file which are explain 404 error ( but Netscape use file that locate on server -- 404.htm ) Can I force IE to use the same file on the server instead of local file? Any suggestion

RE: Database Indexing Primary Keys

2001-02-12 Thread Philip Arnold - ASP
If I understand your question correctly, yes, you'll generally want your foreign keys to be indexed. Any fields commonly used for filters or joins should be indexed, if those fields will benefit from an index. Dave, Just wondering if you can answer me this on Indexing; If you have several

RE: Web Design

2001-02-12 Thread Aidan Whitehall
What's HCI? http://www.acronymfinder.com/af-query.asp?String=exactAcronym =hciFind=Find HCI Horizontal Contracting Integration lol... sounds like an escort service ;-) Great link... thanks. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services

RE: secure pages...

2001-02-12 Thread Philip Arnold - ASP
As an adjunct to this... Does anyone know how to force the browser to show the security padlock when visiting an secure site that also uses frames? all elements must be secure, that means the complete frameset Actually, not 100% true - as long as the outer frame is secure, some of the

SQL to find tables

2001-02-12 Thread Dave Hannum
Hello, Is there an SQL command I can use to look into a database and dynamically return all of the table names and output them to a page? Thanks, Dave ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: SQL to find tables

2001-02-12 Thread Philip Arnold - ASP
Is there an SQL command I can use to look into a database and dynamically return all of the table names and output them to a page? Use either Information_Schema.Columns or SysObjects Select distinct Table_Name from Information_Schema.Columns order by Table_Name Select name from SysObjects

Re: SQL to find tables

2001-02-12 Thread Dave Hannum
Thanks . . . - Original Message - From: "Philip Arnold - ASP" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, February 12, 2001 6:44 AM Subject: RE: SQL to find tables Is there an SQL command I can use to look into a database and dynamically return all of the table

boolean search with CF and SQL statement

2001-02-12 Thread river
How do you go about doing Boolean search with CF and SQL statement? The search needs to be able to use AND, AND NOT, and OR. So if a user types in Boston AND Bruins, the application would search for the matches that have both Boston and Bruins. If a user types in Boston OR Burins, the

RE: boolean search with CF and SQL statement

2001-02-12 Thread Aidan Whitehall
How do you go about doing Boolean search with CF and SQL statement? The search needs to be able to use AND, AND NOT, and OR. Is is possible to create a Verity Collection for that data and search it instead of doing a SQL search? Then you would be able to introduce the Boolean terms in your

RE: secure pages...

2001-02-12 Thread Aidan Whitehall
Actually, not 100% true - as long as the outer frame is secure, some of the browsers display the padlock no matter whether the inner frames are secure or not I think IE5 (not sure about NS4.x or 6.x) throws an alert saying (something to the effect of) "This page contains both secure and

RE: SQL to find tables

2001-02-12 Thread JustinMacCarthy
You would be better off using the sp_tables Sproc. Justin [EMAIL PROTECTED] -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 12:00 PM To: CF-Talk Subject: Re: SQL to find tables Thanks . . . - Original Message - From:

RE: secure pages...

2001-02-12 Thread Philip Arnold - ASP
I think IE5 (not sure about NS4.x or 6.x) throws an alert saying (something to the effect of) "This page contains both secure and unsecure items" if you do this. NS 4 gives a dialog saying "You have requested a secure document that contains some insecure information. The insecure

Re: boolean search with CF and SQL statement

2001-02-12 Thread river
I gotta ask my ISP if I can use Verity on their servers. I guess it could make my life whole a lot easier if I could use Verity for such a thing? Is is possible to create a Verity Collection for that data and search it instead of doing a SQL search? I know that doesn't answer your Q, but

Re: cfm-resources: Dangerous, avoid at all costs.

2001-02-12 Thread Michael
What I meant Jeffry was to dispute the charges, that way they (cfm-resources) should get something in writing and a verbal, from the credit card firm. Which in turn lets cfm know that your not going to just let this go away, its just as easy to swipe the card, and take an amount, as it is to

RE: boolean search with CF and SQL statement

2001-02-12 Thread Terry Bader
you can use the CFCOLLECTION tag to make a collection... no need to be on the server... and i dont think you isp can turn it off, not sure though... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED]

RE: boolean search with CF and SQL statement

2001-02-12 Thread Keith Thornburn
Just an aside here with using Verity and boolean operators in the search term: CF (Verity) will error on an incorrectly formed boolean search term, eg, fast and car and and skoda -- error fast and car and not skoda -- OK fast and car or or skoda -- error fast and car or not skoda -- error fast

RE: boolean search with CF and SQL statement

2001-02-12 Thread Stephen Moretti
River, You either need to use verity or SQL Server's text search features to do this properly. You could do SQL like this : WHERE textfield LIKE '%Boston%' AND textfield LIKE '%Bruins%' But its not recommended. You need a proper index for these kinds of search and verity and SQL Servers

RE: boolean search with CF and SQL statement

2001-02-12 Thread Aidan Whitehall
I gotta ask my ISP if I can use Verity on their servers. I guess it could make my life whole a lot easier if I could use Verity for such a thing? If you have CFWACK or Mastering ColdFusion, find the chapter towards the end of either book that deals with Verity collections. You can create

RE: Y2K Pivot Year Question.

2001-02-12 Thread bflynn
One hack around that I can think of - adjust your input date by 20 years before using the function, then un-adjust it afterwards. Not pretty, but it should work quickly Brian -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 11, 2001 10:23 PM

RE: Y2K Pivot Year Question.

2001-02-12 Thread Lord, Heath
Which begs to ask... Why are you using CFUPDATE... It would be much less worry to use CFQUERY and update as you like. IMHO Heath -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 11, 2001 10:23 PM To: CF-Talk Subject: Y2K Pivot Year Question. I

RE: boolean search with CF and SQL statement

2001-02-12 Thread Terry Bader
and dont forget locking Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED] icq: 5202487 aim: lv2bounce

RE: boolean search with CF and SQL statement

2001-02-12 Thread bflynn
Dropping out the Verity suggestions...since you did specify that you wanted just CF and SQL. What you're proposing is not trivial, however it can be done. As a hack version of what I'll describe - you might be able to use Replace (or REReplace) on the input string to get what you want some/most

Re: Backup Place

2001-02-12 Thread paul smith
Is the ColdFusion app that does the filtering available? best, paul At 03:10 AM 2/12/01 -0500, you wrote: Yep. This allows it to be set into the archive and 'saves' it when post.office decides to be temperamental. It also does a lot of filtering of content such as removing viruses, html junk,

CF Studio 4.5 crash

2001-02-12 Thread Smith, Melanie
OK Studio 4.0 was working relatively well (ok the occasional fatal exception but still I could get my work done), so I decided to upgrade to 4.5.1. It seemed to work for a while and then whenever I got in it would beep upon entry and hang. I clicked on the local resource tab and get "can't

Problem with CreateDate

2001-02-12 Thread Eric V. Hodge
This is a multi-part message in MIME format. --=_NextPart_000_0040_01C094D7.64407800 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am using CreateDate to set a local variable called RetireDate cfset RetireDate=3DCreateDate(form.year,

RE: Is it me or harpoon?

2001-02-12 Thread Steve Drucker
In beta 2, the cfml folder is erroneously copied into the C:\cfusion\bin subdirectory (instead of C:\cfusion\customtags\). This issue was fixed soon after the beta was posted. Just out of curiosity, when did you download the beta? -S -Original Message- From: Greg Wolfinger

Re: Making Rows change color

2001-02-12 Thread Clint Tredway
Try this... tr bgcolor="#IIf(CurrentRow Mod 2, DE('ff'), DE('dededf'))#" valign="top" -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Use of CreateDate

2001-02-12 Thread Eric V. Hodge
I am using CreateDate to set a local variable called RetireDate cfset RetireDate=CreateDate(form.year, form.month, form.day) The values I see when debugging:form.year = 2000 form.month=1

RE: Use of CreateDate

2001-02-12 Thread Philip Arnold - ASP
I am using CreateDate to set a local variable called RetireDate cfset RetireDate=CreateDate(form.year, form.month, form.day) The values I see when debugging:form.year = 2000 form.month=1

Urgent - Forums 2.05 Anyone Got?

2001-02-12 Thread Daryl Fullerton
One of Our Forums server died. Anyone got a copy of Allaire Forums 2.05 We have all the backups. Just need to install and copy files and databases. Anyone got a copy?? Appreciate any help. Cheers Daryl Daryl Fullerton, Managing Partner, BizNet Solutions, Allaire Premier Partner (Ireland)

Re: Urgent - Forums 2.05 Anyone Got?

2001-02-12 Thread Howie Hamlin
You can get 2.06 from forumspot.org. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's most configurable mail server Get your free copy of iMS POST-SE Server from CoolFusion! - Original

ClusterCATS

2001-02-12 Thread Chris Alvarado
Doing some research on Clustering within a Cold Fusion environment and I came accross the ClusterCATS product. I have read about it before and it seems that it would suit our needs well. The only thing I cannot seem to find is, WHERE CAN I GET IT? Anyone help me out here? Thanks,

RE: ClusterCATS

2001-02-12 Thread Steve Drucker
It's bundled as a component of CF Enterprise. -S -Original Message- From: Chris Alvarado [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:07 AM To: CF-Talk Subject: ClusterCATS Doing some research on Clustering within a Cold Fusion environment and I came accross the

RE: Urgent - Forums 2.05 Anyone Got?

2001-02-12 Thread Benjamin S. Rogers
Don't know about 2.05, but 2.06 can be downloaded from http://www.forumspot.org. I can't imagine too much changed between those two versions. Benjamin S. Rogers Web Developer, c4.net Voice: (508) 240-0051 Fax: (508) 240-0057 -Original Message- From: Daryl Fullerton [mailto:[EMAIL

Losing my mind here! - Help with list loop

2001-02-12 Thread JMilks
Hi, I am doing something I have done many times before, but can't seem to make it work today I am trying to loop over a list of ID's. I have tried both ValueList and ListAppend, and have no problem making the list, but when I try to loop over it like this: !--- Loop over the list of ID's

RE: Losing my mind here! - Help with list loop

2001-02-12 Thread JMilks
Duh! - got it. Just needed to retype it I guess. -20c in Ottawa this morning. Guess the brain is still on ice. James -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:21 AM To: CF-Talk Subject: Losing my mind here! - Help with list

OT: personal Oracle server?

2001-02-12 Thread Albert, Gregory Mitchell (Greg)** CTR **
Is there a "personal oracle server" that you can run on your own machine like there is in SQL Server? I'd like to be able to make/edit tables and connect to them through CF, but I haven't had a whole lot of luck with it. Any luck would be greatly appreciated! Greg Albert Archives:

RE: Losing my mind here! - Help with list loop

2001-02-12 Thread Keith Thornburn
Try putting the list into ## otherwise CF thinks your list is 'lstCustomerIDList' and not the variable '#lstCustomerIDList#'. CFLOOP LIST="#lstCustomerIDList#" INDEX="x" DELIMITERS="," Keith -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 12 February 2001

RE: ClusterCATS

2001-02-12 Thread Chris Alvarado
is it an additional install? or is it automatically installed with CF Server Ent? The reason I ask is we have the CF Server Enterprise Upgrade. I looked thrugh the install CD and cannot find any reference to an install for ClusterCATS. The only thing I see referring to ClusterCATS is in the CF

Re: [OT: personal Oracle server?]

2001-02-12 Thread Alex
"Albert, Gregory Mitchell (Greg)** CTR **" [EMAIL PROTECTED] wrote: Is there a "personal oracle server" that you can run on your own machine like there is in SQL Server? I'd like to be able to make/edit tables and connect to them through CF, but I haven't had a whole lot of luck with it. Any

Re: [OT: personal Oracle server?]

2001-02-12 Thread Alex
yes there is. www.oracle.com "Albert, Gregory Mitchell (Greg)** CTR **" [EMAIL PROTECTED] wrote: Is there a "personal oracle server" that you can run on your own machine like there is in SQL Server? I'd like to be able to make/edit tables and connect to them through CF, but I haven't had a

RE: personal Oracle server?

2001-02-12 Thread Dave Watts
Is there a "personal oracle server" that you can run on your own machine like there is in SQL Server? I'd like to be able to make/edit tables and connect to them through CF, but I haven't had a whole lot of luck with it. Yes, there's Personal Oracle 8i and Oracle Lite. For development

RE: Is it me or harpoon?

2001-02-12 Thread Duane Boudreau
BTW, why wasn't the drag drop app included in the harpoon install? They said it would be at the conference. Duane -Original Message- From: Steve Drucker [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 9:36 AM To: CF-Talk Subject: RE: Is it me or harpoon? In beta 2, the

RE: ClusterCATS

2001-02-12 Thread Dave Watts
is it an additional install? or is it automatically installed with CF Server Ent? The reason I ask is we have the CF Server Enterprise Upgrade. I looked thrugh the install CD and cannot find any reference to an install for ClusterCATS. The only thing I see referring to ClusterCATS is in

RE: Is it me or harpoon?

2001-02-12 Thread Steve Drucker
We never said that the drag drop org chart would be part of Harpoon. -S -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:40 AM To: CF-Talk Subject: RE: Is it me or harpoon? BTW, why wasn't the drag drop app included in the harpoon

RE: cfm-resources: Dangerous, avoid at all costs.

2001-02-12 Thread Daniel Lancelot
To all concerned... My credit card was charged twice I have manged to contact Pablo He says it will be refunded CFM-resources is cheap - I use it for personal stuff - would not put client stuff on there... I have overall been very happy with what I have recieved... just a few problems that

Unlocking Access database under CF 4.5

2001-02-12 Thread Percy E Perez
Hello all, I have checked the CF archives looking for unlocking an access database. I found that issuing an invalid query against the datasource will release the lock. I have tried this under my current ISP, but no go. Is there anything different under CF4.5? Sys info: Windows NT Server 4.0

RE: Is it me or harpoon?

2001-02-12 Thread Duane Boudreau
My bad, I could have sworn the Macromedia rep said that the drag and drop org chart was included. I was sure they demoed it during their presentation. To bad I could have used it for a couple of different things. D -Original Message- From: Steve Drucker [mailto:[EMAIL PROTECTED]] Sent:

CF Competition ??

2001-02-12 Thread Nick Betts
Hi all. What does everyone make of this I got sent? Allaire recently announced plans to port its Coldfusion server into a standard J2EE application that could sit atop any J2EE compliant application server. It seems that they have been beaten to the punch by Scottish consultancy firm n-ary, who

Securing your application

2001-02-12 Thread Duane Boudreau
Hi All, I know this has been discussed a couple of time but I could really use some suggestions on methods of securing an application thru code (hardware is being handled by a network security specialist). I've always done simple database stored authentication, but for an application I am about

maketree

2001-02-12 Thread John Lucas
I have a strange problem that I can not figure out. I have tried both the cf_maketree tag and the cfx_make_tree cfx tag. On one development machine, the icons display correctly. However, when we moved the setup to another development machine, the folder icons are missing. Both machines are

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Aidan Whitehall
I have checked the CF archives looking for unlocking an access database. I found that issuing an invalid query against the datasource will release the lock. I have tried this under my current ISP, but no go. Is there anything different under CF4.5? There have been a few times when

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Simon Horwith
A better way to do this programmatically is: CFSET rc=cfusion_disable_dbconnections("cfmysource","1") to disable a specific datasource, and CFSET rc=cfusion_disable_dbconnections("cfmysource","0") to re-enable it. To flush all datasource connections, try: cfset CFUSION_DBCONNECTIONS_FLUSH()

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Chris Alvarado
One thing to remember. When creating an ODBC connection to an Access DB through the CF Administrator, UNcheck the 'Maintain Database Connections' checkbox (you may have to click the 'CF Settings' button to expand the page). I have had problems with this locking the connection to the DB in the

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread alistair . davidson
CFUSION_DBCONNECTIONS_FLUSH(); -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: 12 February 2001 16:25 To: CF-Talk Subject: RE: Unlocking Access database under CF 4.5 I have checked the CF archives looking for unlocking an access database. I found that

RE: Replace List Help - SORRY

2001-02-12 Thread Caulfield, Michael
I tried your code and it works fine for me. Maybe there is something strange with the variable you are passing it? The following works for me just fine. cfoutput#ReplaceList(ParagraphFormat(":-), :'(, :-), :'(, :-), :'("), ":-), :'(", "img src=images/smiley.gif, img

Re: CF Competition ??

2001-02-12 Thread Rey Bango
Nick, Personally, I think its great and I hope it keeps Allaire/Macromedia on their toes. If they put TagFusion into opensource, I think they'll have a better chance of succeeding that trying to compete w/ Macromedia head on. The bottom line will be how much support n-ary can offer. Rey Team

Re: Unlocking Access database under CF 4.5

2001-02-12 Thread Jon Hall
Yeah, the invalid query worked in 4.0 and previous. It was a bug that was fixed in 4.5. The way to keep Access db's from being locked is to uncheck the Maintain database connections checkbox in the CF odbc admin area. This way Access db's will NEVER lock, even if they are being accessed. Of

Re: Urgent - Forums 2.05 Anyone Got?

2001-02-12 Thread Rey Bango
Daryl, You should be able to use v2.06. There were some bug fixes but the DB structure stayed intact. Rey Bango Forums OpenSource Initiative Core Team www.ForumSpot.org - Original Message - From: "Daryl Fullerton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday,

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Terry Bader
normally it will unlock after a short time, so you leaving for an hour was the reason it unlocked and not the bogus query itself... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED]

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Terry Bader
i will have to try that, never have seen that... thanks... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED] icq: 5202487 aim:

Here you have, ;o)

2001-02-12 Thread Matt Rodosky
Hi: Check This! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Terry Bader
but i would only do that on development and test servers... on production servers i would maintain those connections... my recommendation... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED]

RE: Replace List Help - SORRY

2001-02-12 Thread Caulfield, Michael
oops -- sorry -- didn't see the previous response. -Original Message- From: Caulfield, Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:36 AM To: CF-Talk Subject: RE: Replace List Help - SORRY I tried your code and it works fine for me. Maybe there is something

RE: Y2K Pivot Year Question.

2001-02-12 Thread Arden Weiss
Why CFUPDATE -- have had problems updating memo fields with strings longer than 255 chracters with the CFQUERY and UPDATE commands -- but now that I recall that was with free DBF tables, not DBC tables. Besides, the pivot date is a separate issue -- even with CFUPDATE, I can redefine the form

RE: CF Studio 4.5 crash

2001-02-12 Thread Sandra Clark
Hi Melanie. I had a lot of problems with 4.5.2 after upgrading the same way you did. What I ended up doing was uninstalling CF 4.0 and 4.5.x from my machine, deleting all the directories (saved all my snippets of course) and going through the registry and deleting anything that referenced either

Here you have, ;o)

2001-02-12 Thread Brandon Behrens
Hi: Check This! ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

OT: Credit Card Processing

2001-02-12 Thread David B Brooks
Hello all, Quick question, for those who process credit cards over the internet, do you process real-time, or capture the cc info and process at a later time? I am weighing pros and cons of either methods, and wanting the general consensus of this list. Thanks. David Brooks Developer

RE: Here you have, ;o)

2001-02-12 Thread Edward Chanter
Is this some kind of virus??? Or is everyone just being weird? -Original Message- From: Brandon Behrens [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 5:19 PM To: CF-Talk Subject: Here you have, ;o) Hi: Check This!

Re: Here you have, ;o)

2001-02-12 Thread Howie Hamlin
H- I smell a virus... - Original Message - From: "Brandon Behrens" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, February 12, 2001 12:18 PM Subject: Here you have, ;o) Hi: Check This! ~~ Structure your

Re: Here you have, ;o)

2001-02-12 Thread Clint Tredway
check what? -- Clint Tredway www.factorxsoftware.com -- ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: Here you have, ;o)

2001-02-12 Thread Evan Lavidor
Yep. It's a virus. I just got word on it from my network admin. Apparently, it attaches a .vbs file disguised as a jpg (filename.jpg.vbs). Thank goodness the listserv filters out attachments. Thanks Michael! Evan -Original Message- From: Edward Chanter [mailto:[EMAIL PROTECTED]]

RE: Here you have, ;o)

2001-02-12 Thread Edward Chanter
me too, but Norton AV doesn't and the email hasn't got an attachment so how effective a virus could it be (if it is one)..? -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 5:32 PM To: CF-Talk Subject: Re: Here you have, ;o)

Re: Here you have, ;o)

2001-02-12 Thread Scott Weikert
Hmmm virus? Two guys sending the same gibberish...? - Original Message - From: "Brandon Behrens" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, February 12, 2001 10:18 AM Subject: Here you have, ;o) Hi: Check This!

Re: Here you have, ;o)

2001-02-12 Thread Laszlo Nadai
I guess, if you open a VBScript Script File as attachment, it's your problem :-) laszlo Edward Chanter wrote: Is this some kind of virus??? Or is everyone just being weird? -Original Message- From: Brandon Behrens [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12,

Form validation without alert boxes

2001-02-12 Thread James Birchler
1. Client side: Could someone please show me an example of doing client-side form validation that doesn't use the alertbox method? It would be nice if next to the input field the user would simply see red text explaining their input error. 2. Server side: How about server-side validation using

Virus:

2001-02-12 Thread Matt Rodosky
Hi, the 'Check This' email is a virus that slipped through our virus scan. Many apologies. -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Friday, February 02, 2001 1:52 PM To: CF-Talk Subject: RE: Help: WDDX deserialize problem HTML Formatting the XML Packet

RE: Form validation without alert boxes

2001-02-12 Thread Chris Alvarado
as far as the server side goes here is what I do. !--- param the variable Error --- cfparam name="Error" default="" !--- check to see if the First Name is blank --- cfif Trim(FirstName) Is "" cfset FNameNullError = "Please enter a First Name" cfset Error = "True" /cfif cfif

Re: OT: Credit Card Processing

2001-02-12 Thread WebMaster
Real-time is quick and easy these days, so I can't see any reason to do it manually. You just need to make sure whoever you get your merchant account from has an online interface for real-time transactions. There are CF tags in the Developers Exchange for some of the larger ones, but you can

RE: Unlocking Access database under CF 4.5

2001-02-12 Thread Bud
On 2/12/01, Terry Bader penned: but i would only do that on development and test servers... on production servers i would maintain those connections... my recommendation... Not me. Not with Access. I disable maintain connections and set limit connections to a whopping 1. Otherwise, you're

RE: Form validation without alert boxes

2001-02-12 Thread Stephen Kellogg
This may give you a simple starting point. Give me a shout off list if you want an example and some more help. http://hotwired.lycos.com/webmonkey/99/17/index1a.html?tw=programming -Original Message- From: James Birchler [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 12:45 PM

(Admin) Re: Here you have, ;o)

2001-02-12 Thread Michael Dinowitz
Yes, this 'was' a virus. Yes, the list ate it up and spit it out. Yes your safe as far as the list is concerned but DO NOT GET COMPLACENT. If the virus was sent to the list then it was send be someone who has posted (two people, actually). They may also have your address in their address book.

Re: Form validation without alert boxes

2001-02-12 Thread Jeffry Houser
James Birchler wrote: 1. Client side: Could someone please show me an example of doing client-side form validation that doesn't use the alertbox method? It would be nice if next to the input field the user would simply see red text explaining their input error. It depends what you

OT: Sttrip attachments - Re: Here you have, ;o)

2001-02-12 Thread WebMaster
I know it's off-topic, but since we're talking about it. Isn't there some easy way to strip all attachments with a .vbs extension in MS Exchange? You wouldn't think it would be very difficult code to write, but it doesn't seem to be possible. Maybe they've added this in Exchange 2000? Anybody

Re: Form validation without alert boxes

2001-02-12 Thread Wjreichard
Client Side Validation with no alerts ... straight from javascriptsource.com: Bill !-- TWO STEPS TO INSTALL VALIDATION (NO ALERT): 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document -- !-- STEP ONE: Paste this code into the

Oracle Client for Linux - Arg!!!!!

2001-02-12 Thread Tony Schreiber
Okay, I'm trying to connect to an Oracle 8.0.5 server on NT with a Linux CF box. The problem isn't even configuring at this point, just getting the damn software! The standard edition of 8.0.5 for Linux is available free from Oracle, but I can't get the thing downloaded. If I get it on my

RE: Form validation without alert boxes

2001-02-12 Thread Will Ryan
Use JavaScript, It's a life saver. We load nearly all of our validation scripts in a header file so you call the validation anytime you need it. We never use CFForm because it writes the Javascripts for you. If need to call any JavaScript on an event with a CFForm element is such as onBlur it

Re: Form validation without alert boxes

2001-02-12 Thread Douglas Knudsen
See below... From: [EMAIL PROTECTED] AT INTERNET on 02/12/2001 12:44 PM Subject: Form validation without alert boxes 1. Client side: Could someone please show me an example of doing client-side form validation that doesn't use the alertbox method? It would be nice if next to the input

RE: Form validation without alert boxes

2001-02-12 Thread Dylan Bromby
i need something like this. thanks for posting. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 10:07 AM To: CF-Talk Subject: Re: Form validation without alert boxes Client Side Validation with no alerts ... straight from

Apache 1.3.17 not being detected by CF server

2001-02-12 Thread PEREZ, RICHARD RINGO (SBCSI)
I know this might be the same issue as Michael... i am also installing the CF server on a Win98 using Apache 1.3.17 as a server but the CF Application Server when i'm installing it can't detect that i am using the Apache Web Server. DO i need to install the CFModule .dll first and define that on

Re: OT: Credit Card Processing

2001-02-12 Thread Jeffry Houser
WebMaster wrote: Real-time is quick and easy these days, so I can't see any reason to do it manually. I'm working on a site where inventory is maintained in a system completely separate of the web site. We have no access to the inventory numbers. Don't charge the customer if you

  1   2   3   >