RE: Html email??

2000-10-18 Thread Pete Freitag
In CFMAIL you have to specify cfmail type="html" otherwise it will show up in plain text. __ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. ColdFusion Developer Resources http://www.cfdev.com/ -Original Message- From: Joseph

req: CF Applets and WDDX help

2000-10-18 Thread Mooner Ent
Hi, Below is brief description of what I'm attempting to do. If you could help with some code snippets (or a good place to look) that would be great. Objective: 1) To have an applet (on start or initialization) call the cfm page on the home server with an id number. 2) The cfm page will take

Re: Storing passwords in database as one way hash

2000-10-18 Thread Dirk De Bock
Show us the code! :-) Or more politely, I'd love to have a look a that. Is this javascript code publicly available? Of course the effect is that the hash is sent across the wire instead of the clear text password, so it could still be sniffed I guess. - Original Message - From:

Re: Storing passwords in database as one way hash

2000-10-18 Thread Rob Keniger
on 10/18/00 9:57 AM, BORKMAN Lee at [EMAIL PROTECTED] wrote: You can do better than hashing on the server side. I use a JavaScript MD5 hash on the client-side. This prevents the password being sent over the network in clear, and alleviates the need for SSL in some circumstances. Works

Re: [Re: Preventing Simultaneous Logins]

2000-10-18 Thread JL
when a user is logging in with user name "Login1" and another user is trying to log in with the same user name, what do u want to do? kick out the first user or stop the second user? The first case is easy. The second case is harder because you need to clean up all the dead users in the table.

RE: File replication packages

2000-10-18 Thread Stewart McGowan
We use various flavours of Veritas Replication, its expensive but it works very nicely http://www.veritas.com/us/products/replication/ Regards Stew Archives:

RE: Html email??

2000-10-18 Thread Neil Clark
this should do the trick cfmail to="" from="" subject="" type="HTML" groupcasesensitive="Yes"/cfmail Neil ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Neil Clark
Okay, hash-ing the password seems to be an overkill - why not simply generate a random key which you can use with encrypt(form.password, key) this value can then be placed in the db along with the key... when it comes to it, simply decrypt the form.password with the given key and you're away. If

RE: CF_MENSCH

2000-10-18 Thread Dominic J. Doucet-Lorang
I would nominate David Shadovitz. David has given me very good advice on how do do a few things in ColdFusion. Dominic J. Doucet-Lorang Telemark Medieutvikling AS Norway - Original Message - From: "Adam Phillip Churvis" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday,

Re: CF_MENSCH Awards

2000-10-18 Thread Jon Hall
I gotta nominate Pan...while he doesn't post much. He is da man. jon - Original Message - From: "Adam Phillip Churvis" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 6:44 PM Subject: CF_MENSCH Awards FusionFolks, I would like to propose an annual

Re: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Rob Keniger
on 10/18/00 6:43 PM, Neil Clark at [EMAIL PROTECTED] wrote: Okay, hash-ing the password seems to be an overkill - why not simply generate a random key which you can use with encrypt(form.password, key) this value can then be placed in the db along with the key... when it comes to it, simply

SQL: Rename a column

2000-10-18 Thread Aidan Whitehall
How do you rename a column (or should that be field) using a SQL statement? I've started playing around with ALTER TABLE and CONSTRAINTS, but can't find the syntax for this. Thanks in advance. BTW, *completely* off topic, but does ICQ 2000b have Active Lists? I was on 2 CF Active Lists but

RE: Rename a column

2000-10-18 Thread Andy Ewings
You're on the right track. You can use alter table here is the syntax from SQL help ALTER TABLE table { [ALTER COLUMN column_name { new_data_type [ (precision[, scale] ) ] [ NULL | NOT NULL ] | {ADD |

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Neil Clark
Not sure what you mean - there is a unique key for every user... Also how are you giving *every user* access the DB? are you talking about when the user is at the machine or via the web? N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44

Re: Passwords in O'Reilly WebSite

2000-10-18 Thread W Luke
Hi, Once I've entered the code as follows, how do I get the output or Error Level? CFX_WSAUTH action="Delete_User" username="#user#" Realm="sales" Cheers, Will - Original Message - From: "Michael Dinowitz" [EMAIL PROTECTED] Newsgroups: cf-talk Sent: Tuesday, October

RE: Rename a column

2000-10-18 Thread Aidan Whitehall
Thanks for the reply, Andy. ALTER TABLE table { [ALTER COLUMN column_name [snip] to ensure it works ok. I appreciate what you say about SPs but this on an Access database and I've never used SPs. Unfortunately the machine the DB is on doesn't have Access installed (it's a network admin

Creating Excel Documents

2000-10-18 Thread seth ward
I am desperately trying to output the contents of a query into a new Excel document; I have just about managed to open Excel on the client's machine using cfobject and some cfscript but it seems that i just get errors when trying to follow the Microsoft Visual Basic instructions in Excel. I

RE: Creating Excel Documents

2000-10-18 Thread Stewart McGowan
Seth CFX_Excel works well and is available @ http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34728E-2830-11D4-AA 9700508B94F380method=Full Regards Stew Archives:

Extension to custom functions...

2000-10-18 Thread Paul Johnston
Can anyone think of a way of calling custom tags from within functions or cfscript? I think it's possible using a variation of Michael Dinowitz custom functions. Just set up a page full of custom tags, and set up a function that you pass in various values to and it returns a value. This value

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Neil Clark
yep, understood, solution - keep your DB server secure, store the key somewhere else on a cluster or even in a secure file. N ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct]

RE: Extension to custom functions...

2000-10-18 Thread Paul Johnston
Sorry. I was having a bit of a mare there! The only thing that you would need for this to happen is a variable that if it was changed within the page could call a function at any point. This cannot happen, because all variables are set at the time of execution (unless you can think of a

Re: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Jon Tillman
On Wed, 18 Oct 2000, Rob Keniger spake thusly: on 10/18/00 8:03 PM, Neil Clark at [EMAIL PROTECTED] wrote: Not sure what you mean - there is a unique key for every user... Also how are you giving *every user* access the DB? are you talking about when the user is at the machine or via

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Neil Clark
you will have them encypted in the DB. by generating a random key (using a custom tag I wrote ;-) - say '284un#'][fn7' you will actually have 3 values. used in this way - cfset tKey = '284un#'][fn7' (this will actually be generated at run-time) cfset tEncryptPWD = #encrypt(#FORM.Password,

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Neil Clark
doesn't seem a point in doing that - why create even more ODBC load than u need to? ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com

Writing to Excel - answers

2000-10-18 Thread Chris Norloff
[Amazing how simple some problems are ... AFTER you find the solution.] In answer to the question about writing to Excel spreadsheets, Allaire's Developers' Exchange has many possible solutions. http://devex.allaire.com/developer/gallery/SearchResults.cfm?keywords=excel Chris Norloff

Crystal Reports

2000-10-18 Thread Anita Kriz
I was wondering if anyone has any experience with Crystal Reports. I am interested in using this product with CF and Visual Basic and would like to know whether or not anyone has found it useful or maybe has a better way to go. Thanks Anita Kriz

Re: CF_MENSCH Awards

2000-10-18 Thread Dick Applebaum
I nominate Judith Dinowitz she keeps us all focused with a a gentle nudge when needed Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

getting query results based on day

2000-10-18 Thread Dominic J. Doucet-Lorang
I am trying to pull information from a database table based upon the date and a couple of other items. I have tried to use a query wher I comparied the date column in the table with now() but it gets no results. the query looks like this: cfquery name="getkundeinfo" datasource="abx2"

RE: Include Perl script?

2000-10-18 Thread Raymond K. Camden
It would be better to use CFEXECUTE to call the Perl script. This is assuming you have CF 4.5+. === Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified Instructor and Member of Team Allaire

Avoiding erros with CFRegistry

2000-10-18 Thread W Luke
Hi. I'm looping through a Registry Entry, and inserting the String Names into a Database. However, one or 2 of the Entries generate an error because the Key doesn't exist. How can I avoid generating these errors? I've listed my code below if that's any help: cfoutput query="Windows"

Re: (Admin) Ads

2000-10-18 Thread Larry W. Virden
From: "Michael Dinowitz" [EMAIL PROTECTED] One of the things I'm going to add to this is a small CF program to trim out the ad and the admin info at bottom when its part of a reply. Should save a TON of space. How about trimming out excess such as attachments, massive quoting of previous

RE: getting query results based on day

2000-10-18 Thread Stewart McGowan
Dominic, I'd check the datatypes are consistant and then check for your dB if you need to cast or convert the now() function Regards Stew Archives:

Re: [Re: Preventing Simultaneous Logins]

2000-10-18 Thread Peter Alexandrou
The first case would suffice. Could you let me know how you go about it? Many thanks. - Original Message - From: "JL" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, October 18, 2000 5:47 PM Subject: Re: [Re: Preventing Simultaneous Logins] when a user is logging

RE: Include Perl script?

2000-10-18 Thread Richard Kuryk
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C038FE.9E2C000A Content-Type: text/plain; charset="iso-8859-1" I know activestate has a Perl Dev Kit 2.0 (win only) which has a

RE: Rename a column

2000-10-18 Thread Aidan Whitehall
NopeI think you need:I've had a look at the syntax nd I'm [snip] another ALTER TABLE statement to drop the old field. Okie dokie... someone else here mentioned that might be the only way of doing it. Thanks for the advice. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd

Re: Avoiding erros with CFRegistry

2000-10-18 Thread David Shadovitz
You could use CFTRY / CFCATCH. In the CFCATCH, either do nothing or report the error. -David On Wed, 18 Oct 2000 13:18:32 +0100 "W Luke" [EMAIL PROTECTED] writes: Hi. I'm looping through a Registry Entry, and inserting the String Names into a Database. However, one or 2 of the Entries

Re: getting query results based on day

2000-10-18 Thread David Shadovitz
Dominic, There are two issues here: First, is "dos" a date, or a date/time? Now() is a date/time, so it's not likely you'll match any entries down to the current time. If dos is just a date, you'd need to manipulate Now() to get the date part of it. If dos includes the time, you'll need to

RE: getting query results based on day

2000-10-18 Thread Dominic J. Doucet-Lorang
this is the code I used to create the record. cfset form.dos = CreateODBCDateTime (Now()) cfinsert datasource="abx2" tablename="forsikring" dbtype="ODBC" formfields="forsikringstype,byraanr,selgernr,refnr,antall,forsikringstye,pri s,kid,ticketnr,dos,prodtype,prodnr" cfinsert

RE: [OT] ICQ2000b Active Lists

2000-10-18 Thread Aidan Whitehall
I think it's a plug in. Check the plug in area off the downloads page and I'm pretty sure it's there. Great - thanks. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651

RE: (Admin) Ads

2000-10-18 Thread Aidan Whitehall
So long as they don't make it to the top of the ad, I (for one) wouldn't mind. CF-Tips (or whatever that thing with Dave Nor... Norv... Nor-something) has them and they're a royal PITA. Mind you, I think most of us are grateful for what you've done and complaining about ads would seem a bit

RE: Preventing Simultaneous Logins

2000-10-18 Thread Christopher Olive, CIO
my suggestion would be an APPLICATION scope variable of those logged in at the present time, along with their time of last activity. this is updated for each user on every page call to the secure area. when someone tries to log in, check the "currently logged in" structure (or data element of

usemap inside cfoutput

2000-10-18 Thread Guy J. McDowell
Hello CF_Folk This is probably a simple one, but I am not seeing it Problem: Using code similar to that which follows, returns Invalid Parser Construct error on " before #Map1 cfoutput query="name" table td img source = #Image# /td td img source = "image/image1.gif" usemap = "#Map1" /td

RE: usemap inside cfoutput

2000-10-18 Thread Neil Clark
you will need to escape the # simply put another # before #map thus ##map Neil ! --- Neil Clark Senior Web Applications Engineer mcb digital Tel. +44 (0)20 8941 3232 Tel. +44 (0)20 8408 8131 [Direct] http://www.mcbdigital.com

usemap and cfoutput

2000-10-18 Thread Guy J. McDowell
Hi, Nevermind, I dropped all CF tags and the thing still isn't lining up Yet it was fine yesterday. Oh well. Guy McDowell Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

CF mail and strange time problem (Sending into time warp)

2000-10-18 Thread Mark W. Breneman
Sorry to ask a question like this but, I am having a problem with cfmail sending mail with a 10 hour error in the header. I am in the CST (-6 hours from GMT) zone and we are in daylight savings time right now CDT (-5 hours from GMT). If a cfmail tag sends a message at 3:19 PM the time

Memory Leaks

2000-10-18 Thread Robert Flesher
I am running CF 4.5(not 4.5.1) with Oracle and am getting major memory leaks from Cold Fusion. Does anyone have any ideas/suggestions on how to plug cold fusion's memory leakage? Thanx, Rob Flesher _ Get Your Private,

querying olap cubes through cf with mdx

2000-10-18 Thread Edward Peloke
Hello, Has anyone successfully used mdx to query an olap cube? I am able to get to the cube through coldfusion but can't get any output. Any suggstions? Thanks, Eddie body cfset adOpenStatic = 3 cfset adLockReadOnly = 1 cfset adCmdText = 1 !--- Grab the component--- cfobject type="COM"

Re: CF mail and strange time problem (Sending into time warp)

2000-10-18 Thread Vance_Duke
I am having the same problem. I too am CST, currently in CDT. Vance Duke Cold Fusion Application Developer i2 Technologies (469) 357-4729 "Mark W.

RE: Memory Leaks

2000-10-18 Thread Robert Everland
Go up to 4.5.1 or try checking your queries. I get a memory leak if i call a huge query in AS/400 and the data is just enormous. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Robert Flesher [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000

Still can't download Studio beta

2000-10-18 Thread Robert Everland
I posted this a week ago that I couldn't download the beta for studio. Is anyone having this problem still. I know people from Allaire monitor the list, could someone email me off list as to why it won't download. Robert Everland III Web Developer Dixon Ticonderoga

RE: RE: Html email??

2000-10-18 Thread joeug
Thanks, I dont have a query in the CFMAIL but i build multiple database queries stored in varaibles that are included in the body of the email and the groupcasesensitive shouldnt matter, i have the type="html" also set. I have cutomers using Outlook Express 5.0 and Messenger 4.7 and they

RE: Threading issue

2000-10-18 Thread Hoffman, Joe (CIT)
What version CF server, web server and OS? Any add-ons? Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: Dan Allison [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17,

Spectra Question

2000-10-18 Thread Deepak Agarwal
I am currently using HTML Editor provided by Spectra. The problem I am having is, when ever I create a link through the editor and view it's HTML source, the link get's changed. For example I have Hotmail(In the text body) and linked it to (http://www.hotmail.com) through the create Link Icon

Variables in Java and Javascript

2000-10-18 Thread Gavin Myers
Hey people, New thing: I need to check if a certing browser has java enabled, and javascript can you set a variable in java or javascript and let it be read in cold fusion? this is what i'm thinking: Cfset javascript = 0 cfset java = 0 javacode put 1 into java /javacode javascript code put

CF Installation questions with SP1

2000-10-18 Thread Ryan
Hello. We are going to setup some new CF servers in the next week or two. Do I have to use our 4.5.1 CD, and then install the downloaded SP1, or can I install a downloaded CF 4.5.1 that has SP1 in it, and then somehow enter my CD key so its not an eval version? RPS

novell user name

2000-10-18 Thread Joseph Vincent
This is a problem i have been trying to resolve for a while but have never posted to this list. We are running an Intranet site in-house on an NT Server. All of our users are logged into Novell. We want to increase our Intranet site security by figuring out some way for CF to capture the

ticker

2000-10-18 Thread Joseph Vincent
Does anyone have a recommendation for where I can get a javascript news ticker that either scrolls 3 separate lines at once horizontally or scrolls text vertically? _ Get Your Private, Free E-mail from MSN Hotmail at

RE: locking with IsDefined

2000-10-18 Thread Zachary Bedell
That's wrong alright... Reads AND writes both need to be locked. CF uses advisory locking only, so unless you TELL CFAS that you're about to read a particular scope, it has no way of knowing whether to allow or deny write locks on said scope. ALWAYS, ALWAYS, A-L-W-A-Y-S!!! lock all READS AND

how to detect when the session variable is expire?

2000-10-18 Thread Chen, Yung-Chih (CIT)
Hi, Does anyone know the way to detect when session variable is expire? Some example code will be really helpful! Thank you in advance! YC Archives:

Re: Spectra Question

2000-10-18 Thread Mary_Baotic
There is a bug in the HTML editor in Spectra. I am using eWebEditPro by Ektron as a replacement. Mary |+--- || "Deepak | || Agarwal" | || cflist@hotma| || il.com | ||

SQL Query Question

2000-10-18 Thread Tim Bahlke
I have the following SP: CREATE PROCEDURE [n_speaker_list] AS SELECT DISTINCT s.f_name, s.l_name, s.pro_title, c.co_name, sm.subject, a.agenda_title, s.sp_file FROM speakers s, company c, subject_matter sm, agenda a WHERE a.time_slot = s.time_slot AND s.subject_id = sm.subject_id AND

RE: Threading issue

2000-10-18 Thread Dan Allison
Joe, I am using CF 4.5.1 SP1, NT 4.0 SP6a, and MDAC 2.6. Thanks, Dan -Original Message- From: Hoffman, Joe (CIT) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 10:47 AM To: CF-Talk Cc: [EMAIL PROTECTED] Subject: RE: Threading issue What version CF server, web server and

RE: CF Installation questions with SP1

2000-10-18 Thread Simon Horwith
just put in your actual CD Key... should work. ~Simon -Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:01 AM To: CF-Talk Subject: CF Installation questions with SP1 Hello. We are going to setup some new CF servers in the next week or two.

CFCase - Number in range of values

2000-10-18 Thread Paul Sizemore
Is there any way to do the following? (I know case values must be constants). Will I need to test for this possibility before it goes into the CF switch? CFCase GT value="400" AND LT value="499" My Code /CFCASE pbs

RE: CF mail and strange time problem (Sending into time warp)

2000-10-18 Thread Mark W. Breneman
Think I found the problem. "Jim" mailed me off list. "I found the post below from doing a search in the Allaire forums. Jim" Thanks Jim! Date: September 25, 2000 02:33 PM Author: Christine Lawson ([EMAIL PROTECTED])

RE: Variables in Java and Javascript

2000-10-18 Thread Patricia Lee
The javascript would work, yes. The java wouldn't work as you have it because you can only process one server side language per application page. Java and ColdFusion cannot be called on the same page. I do not know if or how you could tell that a broweser is java-enabled. I'd wait and see if

RE: CF Installation questions with SP1

2000-10-18 Thread Dharmesh Goel
You can directly install the SP1 and it will ask you for the serial number. Dharmesh Goel Programmer Analyst IT Dept. - Discount Car Truck Rentals 416-744-0123 x290 -Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent: October 18, 2000 11:01 AM To: CF-Talk Subject:

Allaire Documentation

2000-10-18 Thread Won Lee
If anyone from Allaire is on this list... I suggest that you work on the content of your documentation included with CF Studio 4.5. The implementation is good and I like that it is highly serachable. However there are too many errors in your documentation. This extends to all the versions of

RE: Creating Excel Documents

2000-10-18 Thread Nardi, Gaston
Hi. Look into ColdFusion at www.webtricks.com Selene uses a cfcontent type="text/tabdelimited" to creates the Excel file. Good Luck. Gastón -Mensaje original- De: Dave Hannum [SMTP:[EMAIL PROTECTED]] Enviado el: Miércoles 18 de Octubre de 2000 09:21 Para: CF-Talk Asunto:

RE: Threading issue

2000-10-18 Thread Hoffman, Joe (CIT)
CF 4.5.1 SP1 but with WSP 2.4.9 and Win2k Pro. Do you have any SQL code like? Employees.FirstName+' - '+Employees.LastName AS FULLNAME This used to work for me ... now all it does is throttle the CPU and hangs CF Server till I stop start the service. I rewrote the page and problems went

RE: how to detect when the session variable is expire?

2000-10-18 Thread Simon Horwith
Go to www.figleaf.com and then click on the link to CFUGs. Download the examples and slides for July (I think). Steve Drucker (our CEO) gave an excellent presentation about how to pop up javascript windows warning users they are about to be logged off (i.e. expire), and whether or not they want

RE: ticker

2000-10-18 Thread Doyle, Mike
Vincent, Try: http://javascript.internet.com/scrolls/ Good to see the posting is working ;-) Mike -Original Message- From: Joseph Vincent [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:04 AM To: CF-Talk Subject: ticker Does anyone have a recommendation for where I

Re: CF_MENSCH Awards

2000-10-18 Thread Michael Dinowitz
I second that nomination. Despite the obvious bias here, Judith does a LOT in the background of the community. She connects a lot of people when needed, edits Fusion Authority (we're behind due to the Fusebox book), publishes CF books, helps keep me on track and we're just starting a CF

Saving File and Directing to Display a Specific CF Template !

2000-10-18 Thread Manasa Anand
Hi, I have a.cfm which is something like : CFFORM ACTION="a_exp.cfm/a_exp.xls" METHOD="post" CFOUTPUT#SomeData#/CFOUTPUT INPUT TYPE="submit" NAME="Save" VALUE="Save Data" /CFFORM My a_exp.cfm file is as follows: CFCONTENT TYPE="application/excel"DataHeader CFOUTPUT#DisplayData# /CFOUTPUT

Saving into Multiple Files !

2000-10-18 Thread Manasa Anand
Hi, I have a Multiple Select for Reports in my x.cfm file. (Note: Each Report when selected should have a specific related query run, the results of which should be saved into a file.) When I select X number of reports and click on 'submit' button, it should perform two functions; - One,

RE: Variables in Java and Javascript

2000-10-18 Thread Evan Lavidor
Don't know about Java, but this can't be done with JavaScript. CF is server side, and JavaScript is client side. By the time the JavaScript executes, CF has completed all of its execution. There are tags that check to see if JavaScript is enabled, check out CF_aBrowserInfo. Haven't used it

RE: Preventing Simultaneous Logins

2000-10-18 Thread nb
why not keep a application.object to store current user names/id's and the time for the last page request... write a short script in application.cfm that will ignore/purge inactive users, say after 30 minutes. Simultaneous logins will be avoided, and if users forget to log out before closing the

RE: CFCase - Number in range of values

2000-10-18 Thread Hayes, David
You can use CFDEFAULTCASE. -Original Message- From: Paul Sizemore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 10:10 AM To: CF-Talk Subject: CFCase - Number in range of values Is there any way to do the following? (I know case values must be constants). Will I need to

RE: CF Installation questions with SP1

2000-10-18 Thread Ryan
At 11:19 10/18/00 -0400, you wrote: just put in your actual CD Key... should work. ~Simon I couldn't even remember if it prompted me for a key, I thought it might only be able to be used as an eval. Thanks, Ryan

RE: Spectra Question

2000-10-18 Thread Raymond K. Camden
This is a known issue. I _believe_ Rich Ragan issued a patch for this in the Developer's Exchange (essentially it 'scrubs' the input). === Raymond Camden, Cold Fusion Jedi Master for Syntegra (www.syntegra.com) Allaire Certified

RE: Variables in Java and Javascript

2000-10-18 Thread Aaron Johnson
browserhawk can catch enabled/disabled Java. http://www.browserhawk.com/products/bhawk/features.asp AJ -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:33 AM To: CF-Talk Subject: RE: Variables in Java and Javascript The javascript

Re: [Re: Preventing Simultaneous Logins]

2000-10-18 Thread Al Musella, DPM
To kick out the first user: When someone logs in successfully, create a UUID that is stored in the database and pass along with the user ID. Then in application.cfm, I check the that the UUID and user ID match in the database. IF they don't they get kicked out to the login page. IF someone

RE: CF Installation questions with SP1

2000-10-18 Thread Ryan
At 11:29 10/18/00 -0400, you wrote: You can directly install the SP1 and it will ask you for the serial number. By 'directly install' you mean I can just install the service pack, without having cold fusion installed? And then it will ask me for my serial number, and when I'm done I will have

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Steve Bernard
Hehe, well, wouldn't it be nice if security tools were perfect, everyone was completely ethical, and there weren't any unknown vulnerabilities. In that case, why have passwords? Let me take your response and put it in the context of credit card numbers. "Why strongly encrypt credit card numbers?

I know we have gone over this a million times.

2000-10-18 Thread Nick Call
I am populating a list that will eventually be written to a text file. I want to put a carriage return after each entry. I cannot remember the syntax. Can someone kindly email that to me. Thanks in advance. Nick

Re: CF_MENSCH Awards

2000-10-18 Thread Judith Dinowitz
Thank you for the nomination! I'm honored. (Thanks, Michael, for the plug. : ) ) I'd like to second the nomination for Michael Smith though (Eron, you beat me to it) because I think he does do a heck of a lot for the community. And, despite the obvious bias, I'm going to second the nomination

CF_MENSCH Voting Online!

2000-10-18 Thread Adam Phillip Churvis
Dearest Fusion People, I have implemented an online voting mechanism for the CF_MENSCH vote on http://www.commerceblocks.com. Go there and cast your votes, and I will announce the three top winners at DevCon and also on the CF_TALK list. Cheers! Respectfully, Adam Phillip Churvis

(no subject)

2000-10-18 Thread KJis18
I am looking for a Cold Fusion hosting company that would offer me this : http://www.myname.com 20 megs space 1 ODBC CF of course 3 - 5 email boxes SSL Does anyone know of a cheap place to do this??? thanks kev

SOT: Allaire conference

2000-10-18 Thread Jennifer
I know this is a long shot, but I am trying to go to the dev conference in DC and I'm having a travelling budget issue. Is there anyone who is trying to unload airfare or hotel rooms that they can't use or are there and females with a room needing a roommate?

Data Missing from Post operation

2000-10-18 Thread Judith Taylor
We've all seen it, we pretty much know how and why we get this message...is there any way around it? TIA, Judi Judith Taylor Webmaster - http://www.busybobbins.com ICQ: 67460562 Freelance ColdFusion Developer This year will go down in history. For the first time, a civilized nation has full

RE: Variables in Java and Javascript

2000-10-18 Thread Jason Powers
You can't put CF and ASP on the same page, unfortunately. In CF, you can do a detection for Java/JS as shown below, and redirect the user accordingly. As long as the java is an applet loaded client side, you're fine, you can just call it as you normally would. In order to get information,

RE: Variables in Java and Javascript

2000-10-18 Thread Simon Horwith
why not just do: cfwddx action="CFML2JS" input="#javascript_verify#" toplevelvariable="javascript_final_verify" output="javascript_final_verify" instead of CFML2WDDX, WDDX2JS ? ~Simon -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000

RE: I know we have gone over this a million times.

2000-10-18 Thread Simon Horwith
Replace "," with Chr(13) ~Simon -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 12:44 PM To: CF-Talk Subject: I know we have gone over this a million times. I am populating a list that will eventually be written to a text file. I want

RE: VERY OT: ticker

2000-10-18 Thread Warrick, Mark
Try a search engine. Search for "javascript news ticker". -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED]

RE: Allaire Documentation

2000-10-18 Thread Warrick, Mark
In my humble opinion, If the people from Allaire who are supposedly monitoring this list really cared about what we thought, then they would have a mailing list of their own. As it stands now, all they've got is the Forums system which as we all know is a pain in the $# to use. These type of

RE: Storing passwords in database as one way hash -The Solution

2000-10-18 Thread Cameron Childress
It seems a little more important when put into that context, huh? You wouldn't hash credit card It's also a little more important if you don't have control over the machine you are hosting on. Not to mention the extra bonus points you get from your client when you tell them all about the

RE: I know we have gone over this a million times.

2000-10-18 Thread Chapman, Katrina
#Chr(10)# and #Chr(13)# should do the trick. One is a CR and one is a LF. I don't remember which is which though. --K -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 9:44 AM To: CF-Talk Subject: I know we have gone over this a million

Re: I know we have gone over this a million times.

2000-10-18 Thread Alex Sherwood
At 10:43 AM 10/18/2000 -0600, you wrote: I am populating a list that will eventually be written to a text file. I want to put a carriage return after each entry. I cannot remember the syntax. Can someone kindly email that to me. Thanks in advance. Nick cfset theText = theText CHR(13) I

RE: I know we have gone over this a million times.

2000-10-18 Thread Adrian Cesana
I think your looking for this.. #Chr(13)##Chr(10)# -Adrian -Original Message- From: Nick Call [mailto:[EMAIL PROTECTED]] I am populating a list that will eventually be written to a text file. I want to put a carriage return after each entry. I cannot remember the syntax. Can

RE: I know we have gone over this a million times.

2000-10-18 Thread ron
I am populating a list that will eventually be written to a text file. I want to put a carriage return after each entry. I cannot remember the syntax. Can someone kindly email that to me. #CHR(13)##CHR(10)# (for a PC-style "carriage return", or CRLF) -ron

  1   2   >