RE: Extra records in CSV file generation

2000-10-17 Thread Rich Wild
Well, have you checked there are no empty records in the db at all? Paul PS I assume you have, but it's only polite to ask! Thanks Paul, but yeah - I have :D --- Rich Wild Senior Web Designer

Re: CF-Talk V1 #63

2000-10-17 Thread Peter Theobald
Ask Michael Dinowitz permission to create a searchable archive of the list and make it available to the members. At 09:53 PM 10/16/00 -0700, Joseph Thompson wrote: A good idea, but isn't this list data "protected"?

RE: CFOBJECT Sessions

2000-10-17 Thread DeVoil, Nick
Thanks for the advice Dave. In the end I did get it to work using the code that I posted - not sure what it was I did that stopped it working before. Fortunately I don't have to worry too much about scalability here as this is not a web site but effectively a single-user application :o) Thanks

RE: Extra records in CSV file generation

2000-10-17 Thread Paul Johnston
How about sending us the code again with a sample output? Paul -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Sent: 17 October 2000 08:28 To: CF-Talk Subject: RE: Extra records in CSV file generation Well, have you checked there are no empty records in the db at

Client Storage

2000-10-17 Thread Bill Killillay
If the default client storage is set to registry and in the application.cfm or application tag you enable client management and then enable setclientcookies to yes, will client info be stored in the cookies, or will it go with the setting in CFAS and store that info in the registry? Bill

RE: Extra records in CSV file generation

2000-10-17 Thread Rich Wild
Paul, I tried repositioning the cfsetting tag as you said - but am still getting the extra fields... Here is the code - all on one line. CFHEADER NAME="Content-Disposition" VALUE="inline; filename=mangobase_#dateformat(now(), "mmdd")#_#timeformat(now(), "HHmm")#.csv"CFCONTENT

RE: Extra records in CSV file generation

2000-10-17 Thread Paul Johnston
Well I'm stuck! Anyone else care to try? Paul PS Maybe you could create a variable and write that out to a file and strip out any blank lines? Then you could locate the user to a page that downloads the file as a csv... Dunno! It's a solution, but a bit scrappy, but it should work!

RE: Jsstringformat

2000-10-17 Thread Courtney Payne
cfset safeString = Replace(evilString, "'", "\'", "All") (escape single quotes by replacing them with \') Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com -Original Message- From: Sean Daniels [mailto:[EMAIL PROTECTED]] Sent:

RE: Extra records in CSV file generation

2000-10-17 Thread Rich Wild
Hmmm, yeah Cheers Paul, I thought about doing that. Spose I could write the file, serve the hard copy file, delete the file see if that would make any difference than just serving up a file. Speed isn't an issue here, as its an action that'll only be performed a few times a week.

RE: validating an empty field in enctype=multipart/form-data

2000-10-17 Thread Courtney Payne
Won't work in MacIE 4.5- browsers. I found out the hard way a few months ago with a client that insisted on using MacIE to upload images. Due to "bug" in MacIE 4.5-, the length of the file field is always 0 -- whether you select a file or not. Getting your users to use MacIE 5.0 will solve

RE: Client Storage

2000-10-17 Thread Akbar
i guess in all the 3 cases(registry, DB, cookies) there were would be 2 client cookies set (CFID, CFTOKEN) once we set "setclientcookies=yes" in our application.cfm. akbar -Original Message- From: Bill Killillay [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 7:16 PM To:

news driven site

2000-10-17 Thread Juan Andres Alvarez Valenzuela
hi guys, I'm looking for open source CF software to set a news driven site but I can't found nothing. Actually, I found a PHP software: http://phpnuke.org/. it seems a pretty good. is there any work in CF to make something like that ? CF Nuke ? ~Juandres

Re: Send data to Excel

2000-10-17 Thread Chris Norloff
-- Original Message -- From: "Neil Robinson" [EMAIL PROTECTED] I'm developing a graphing system using CF and CFXGraphicsServer. I'd like to give the user the option to export the graph source data into Excel if possible. Does anyone know of a way I can do

RE: Extra records in CSV file generation

2000-10-17 Thread Rich Wild
I'll stick the last few lines of a sample file up at http://www.funjunkie.co.uk/csv/b0rked.csv (personal site) so that you can see whats happening... not quite sure where its getting this stuff from... --- Rich Wild Senior Web Designer

Re: cfinclude + cfform..answer...

2000-10-17 Thread Ethan Rosch
Actually guys...It seems to have something to do with the form tag in a div tag!!! When I pulled my form tags out of my div and put them around the entire page (bodydiv .../div/body with the include in the middle; the page parsed, howeverI did not get my actually text fields to parse to

RE: Dynamic Form value

2000-10-17 Thread stas
I do it this way, easier to read ( I am assuming you're doing this to "remember" form field values): cfparam name = "session.particulars.name" default = "#somevar#" cfinput type="Text" name="name" value="#session.particulars.name#" -Original Message- From: David [mailto:[EMAIL

RE: Jsstringformat

2000-10-17 Thread Sean Daniels
cfset safeString = Replace(evilString, "'", "\'", "All") (escape single quotes by replacing them with \') But are single quotes the only evil things I need to watch out for? If so, woo hoo! But I kind of doubt it? - Sean ~~ Sean Daniels Manager, Engineering

RE: Jsstringformat

2000-10-17 Thread Courtney Payne
Depends on what's in your string and what you're trying to do. Ex. If you have an HTML string ("Hello there.brbrHow are you?"), you'll want to replace occurances of br with \r (or \n). Courtney E. Payne, Developer Fig Leaf Software "We've got you covered" [EMAIL PROTECTED] www.figleaf.com

RE: Extra records in CSV file generation

2000-10-17 Thread Paul Johnston
I am guessing that there are some line breaks or something in your fields. Either that or that the fields contain whitespace and nothing else and are still coming out. Maybe check for that when pulling the data out? It doesn't seem to be outputting anything it shouldn't (or that it doesn't

Re: CF Resources

2000-10-17 Thread Stephan Tual (CFTutorials.com)
At 10:13 AM 10/16/00 -0400, you wrote: Boy what a hard time I had this weekend trying to find some resources on Cold Fusion. Basically I was trying to write a few scripts, but I couldn't find any decent examples online. Much different from the PHP community out there. The examples I could find

RE: Dynamic Form value

2000-10-17 Thread Stewart, Mark
David, The last two posts answer your question so all I'll add to this is be sure to remember your cflocks when you reference a session variable. ~Mark -Original Message- From: stas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 9:07 AM To: CF-Talk Subject: RE: Dynamic Form

RE: Extra records in CSV file generation

2000-10-17 Thread Rich Wild
Other than that, I'm confused. Yeah, me too! :D There are no fields which are blank There *are* fields which contain line breaks..but, even when an entire query containing no line breaks (eg selecting 1 record from sql specifically without line breaks) are pulled out, those end records

RE: outputting data in a matrix

2000-10-17 Thread Stewart, Mark
Richard, If you're comfortable with using Crystal Reports, give that a try. ~Mark -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED]] Sent: Monday, October 16, 2000 6:28 PM To: CF-Talk Subject: outputting data in a matrix Can someone suggest how to do this: category1

RE: Jsstringformat

2000-10-17 Thread Sean Daniels
Depends on what's in your string and what you're trying to do. Ex. If you have an HTML string ("Hello there.brbrHow are you?"), you'll want to replace occurances of br with \r (or \n). Well, mainly I'm just trying to avoid Javascript errors. The js code is just a real simple alert that

Re: news driven site

2000-10-17 Thread Dave Hannum
This was a duplicate to a message from last week. Smells like someone doing a promo for phpnuke . . . Dave - Original Message - From: "Stewart, Mark" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 9:54 AM Subject: RE: news driven site Juandres,

CF Calendar (Popup?)

2000-10-17 Thread J.Milks
This is a multi-part message in MIME format. --=_NextPart_000_00AC_01C03823.0B51E0A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, Hope everyone is doing well... I have a need for a popup type calendar so that users can select a

RE: NASDAQ.com... ERRRRR! - Fixed it -

2000-10-17 Thread Gavin Myers
Nevermind, Had my stuff inside the cfcatch... shoulda been like this: cftry#sALLR["NASDAQAMEX-DOT-COM"][2]["EQUITY-QUOTE"]["best-bid-price"][1]. value# cfcatch/cfcatch /cftry cftry#sALLR["NASDAQAMEX-DOT-COM"][2]["EQUITY-QUOTE"]["best-bid-price"].val ue# cfcatch/cfcatch /cftry -Original

RE: CF browser detection??? - warning against BrowserHawk

2000-10-17 Thread Mike Amburn
we used to use BrowserHawk from cyScape. it's a great component and provides some really cool information like whether the user has disabled java, javascript, or cookies. the problem is that they require that you license every machine that it runs on. $489 x 25 developers ($12225) + $489 x 10

RE: NASDAQ.com... ERRRRR!

2000-10-17 Thread Gavin Myers
fuseobjects... hah, i mean siteobjects -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 9:29 AM To: CF-Talk Subject: NASDAQ.com... ER! okay, i'm pulling xml info off of nasdaq.com. You can find the xml stuff they have at:

Excel query

2000-10-17 Thread Joseph Vincent
I am running a query on an Excel spreadsheet using the MS Excel ODBC driver. I have the columns named in the top row of the spreadsheet. My problem occurs in one of the columns where there is a text header on row 5 then rows 7-11 have numeric data. When I run the query it is only bringing

RE: NASDAQ.com... ERRRRR!

2000-10-17 Thread Dan O'Keefe
What is a siteobject? fuseobjects... hah, i mean siteobjects -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: Beep, Beep?

2000-10-17 Thread JustinMacCarthy
Not unless you want to use a ActiveX com or Java Applet Justin MacCarthy - Original Message - From: "Michael Rosario" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 4:00 PM Subject: Beep, Beep? This message is in MIME format. Since your mail reader

RE: CF Calendar (Popup?)

2000-10-17 Thread Juan Andres Alvarez Valenzuela
http://devex.allaire.com/developer/gallery/SearchResults.cfm?Sortby=Download skeywords=calendarstartRow=1MaxRows=10Author=Title=Hammer2ID=SearchTy pe=Simple ~Juandres - Original Message - From: J.Milks [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 4:14

Re: Passwords in O'Reilly WebSite

2000-10-17 Thread Michael Dinowitz
http://www.houseoffusion.com/cfapi/cfx_wsauth.zip Does the crypto for you and I got the code for that section directly from Denny. Hello, The Users' passwords in the Registry of O'Reilly WebSite are all encrpyted. Fine. I'm creating an App in CF to automate WebSite - but I don't know how

Re: CF Calendar (Popup?)

2000-10-17 Thread Joseph Thompson
http://www.webtricks.com/SourceCode/ There are a few calendar items here including the one that populates the input box (I think that is the one you want) -- Archives:

RE: Browser Detection

2000-10-17 Thread Doug Powell
You can use this script SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" !-- if(navigator.appName.substring(0,9) == 'Microsoft' navigator.appVersion.indexOf('5.') !=-1) { window.alert('Running MSIE 5 or better') } //-- /SCRIPT

RE: Browser Detection

2000-10-17 Thread Paul Johnston
see cf_browser in the allaire tag gallery. Paul -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: 17 October 2000 16:48 To: CF-Talk Subject: Browser Detection Now i feel dumb for recently deleating all of that past browser detection talk this is all i want

CFContent Weirdness

2000-10-17 Thread Warrick, Mark
I have a report which works fine as HTML output. As soon as I add in the following CFCONTENT tag, the report somehow looses all the variables from the form previous to it which passes information into it. Here's the tag I'm using: cfcontent type="application/msword" Now, If I change the tag

CFFile Copy action

2000-10-17 Thread Joseph Vincent
I am trying to use the CFFile Copy action to copy a file from one of our network drives over to our Web Server every morning. I tried to do this and got an error stating that the network file could not be found. Does anyone know if this should be able to be done?

Re: [pop-up window upon login]

2000-10-17 Thread double-down
javascript ... use window.open() the rest is just a query to diplay the popup info. call the javascript function either from onload or onsubmit "Kim Ahlbrandt" [EMAIL PROTECTED] wrote: I would like to have a window pop-up with the login information, time of login, etc. as my users are

CF on Win2K adv server

2000-10-17 Thread Michael J. Sammut -- Four Eyes Productions -- think | plan | create
I have been running CF Enterprise 4.5 on Windows 2000 professional. I upgraded the system to Windows 2000 Advanced Server and reinstalled CF. However, none of the CF services will start (Well actually executive will start, but not application or RDS)-- automatically or manually. Has anyone

RE: outputting data in a matrix

2000-10-17 Thread Chapman, Katrina
No offence to anyone but your all making this much more difficult than it is. With a little creative HTML you can do this. CFQUERY name="get_stuff" datasource="katrinachapman" SELECT bookcat.Name, book.title FROM bookcat, book WHERE book.catid = bookcat.id ORDER BY bookcat.name /CFQUERY TABLE

CFMAIL problems

2000-10-17 Thread Bruce Srawley
Hi, we have a bit of a problem mailing through ColdFusion. Our servers are all set to GMT with daylight saving time. This is fine, unfortunately it seems that CFMAIL does not take this into account so when a recipient gets a mail from coldfusion it looks as though they receive the mail before it

Re: Divide field in query and output resluts.

2000-10-17 Thread Hong
SELECT ROUND( ( TOTAL / HIT ), 1 ) AS output_result -- Hong Wu Senior Web Developer DoubleSpace Jeremy Toevs wrote: Is there a way to make it round to the nearest tenth? Hong [EMAIL PROTECTED] 10/16/00 03:20PM use SQL math divide operator, SELECT ( TOTAL / HIT ) AS output_result

RE: CFFile Copy action

2000-10-17 Thread Simon Horwith
I don't believe CFFILE will do that (I tried to do the same thing once upon a time). You could use a com object (via cfobject), stored procedure or DTS Package on SQL Srvr, CFX tag, CFFTP (if you have an ftp server on the remote machine), etc. but I do not believe you can just CFFILE

What's with all the space?

2000-10-17 Thread Peter Benoit
Viewing the source code of my CF apps, I see lots of white space. Space that isn't there in other server side programming languages. Why is this, and is there something I can do about it? -- Archives:

Re: pop-up window upon login

2000-10-17 Thread Scott Weikert
In your page that's actually doing the authentication... at the point (or after) the authentication is confirmed... put in a bit of Javascript with a window.open function, calling whatever CF page plus variables (userid, or whatever you're using) as the URL. It's something that won't execute

Re: Comprehensive Scope Listing

2000-10-17 Thread David Shadovitz
In CF Studio's help, check out Developing Web Applications With ColdFuison | Creating and Manipulating Variables | Using Application and Session Variables. Also see Teratech's http://www.cfug-md.org/articles/scope_worksheet.PDF and http://www.cfug-md.org/articles/scope_STORAGE_analysis.PDF

Anyone know of any fusebox-built forum solutions?

2000-10-17 Thread Scott Weikert
Hey all, Working on a contract at a place that's useing the Fusebox development methodology. The site is going to have a forum. Right now they're looking at using Allaire's Forums - bleah. I'm looking around for better solutions (not difficult), but specifically, one built using Fusebox. Anyone

Fw: Re: Comprehensive Scope Listing

2000-10-17 Thread David Shadovitz
Oops, make that Developing Web Applications With ColdFuison | Creating and Manipulating Variables | Naming and Scoping Variables. (I had the last item wrong.) -David - Forwarded message -- From: David Shadovitz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Tue, 17 Oct 2000

Expand Select Box (JS Question)

2000-10-17 Thread j p
Is It possible through JS to expand a select box, I need to expand a select box when someone clicks on something (not the little arrow if the select box) JP _ Get Your Private, Free E-mail from MSN Hotmail at

RE: CFContent Weirdness

2000-10-17 Thread Chapman, Katrina
What we do here is a cfhttp call to the template that creates the HTML for the report passing through the file attribute. Then cfcontent the file that was created in the cfhttp. That way you don't lose anything. Let me know if you need anymore help with this. --K -Original Message-

Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman
anybody know of anything that does such? I am looking for pretty much the same functionality as a standard *NIX login -- *** Jon Tillman LINUX USER: #141163 ICQ: 4015362 http://www.eruditum.org [EMAIL PROTECTED] JAPH

RE: outputting data in a matrix

2000-10-17 Thread Richard Colman
This worked just great. Thank you. Richard Colman -Original Message- From: Chapman, Katrina [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 9:55 AM To: CF-Talk Subject: RE: outputting data in a matrix No offence to anyone but your all making this much more difficult than it

access color selection box with CF?

2000-10-17 Thread Mark Adams
Has anyone accessed the windows color select box using CF? -Mark -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

CFFILE ACTION=UPLOAD probs

2000-10-17 Thread Adrian Cesana
I am using the below code to upload some text files, if the file has an .csv extension is will fail the test and get the error, if I just rename the same file with no extension it works ok. I though the accept="text/plain" looks at the file contents not the extension. Any recommendations on how

OT: File replication packages

2000-10-17 Thread Mark Johnson
Those of you using server farms and or loadbalancing. How do you publish your CF files to all your servers? What software are you using to acomplish this? What should we aviod in implementing a file replication package. Mark Johnson --- Senior Cold Fusion Developer

Re: returning top 10

2000-10-17 Thread Hong
SELECT TOP 10 .. -- Hong Wu Senior Web Developer DoubleSpace Jim Watkins wrote: What I mean is I do not want to hard code the top ten in. I want Cold Fusion/Oracle to determine what the top ten are from say a list of 60. -Original Message- From: Shawnea Carter

Re: Thanks was RE: returning top 10

2000-10-17 Thread Hong
sounds familiar? are you doing your database class homework or something?? maybe you can use: SELECT blah... FROM blah... WHERE ... NOT IN ( query_select_top_10_countries ) Hong Jim Watkins wrote: So far so good. Now I have written another script that selects everyone NOT in the top

writing files from oracle

2000-10-17 Thread Chris Hamer
Is there a way to get oracle to write a csv file from a coldfusion request. Does oracle have a 'bcp' type program like sql server that writes files out quickly? I need to write a file with about 10 - 15,000 records without over-taxing the cfserver. Chris Hamer Web Development ImageServe, Inc.

Re: [Storing passwords in database as one way hash]

2000-10-17 Thread double-down
what database? MySQL has a password() function that encrypts Jon Tillman [EMAIL PROTECTED] wrote: anybody know of anything that does such? I am looking for pretty much the same functionality as a standard *NIX login -- *** Jon Tillman LINUX USER:

Re: [What's with all the space?]

2000-10-17 Thread double-down
use cfsetting enable cfoutput only and the custom tag cf_ripwhitespaces from the allaire exchange Peter Benoit [EMAIL PROTECTED] wrote: Viewing the source code of my CF apps, I see lots of white space. Space that isn't there in other server side programming languages. Why is this, and is

RE: What's with all the space?

2000-10-17 Thread Warrick, Mark
There are several ways to do this. Here's one: You can surround all of your code with the following tag: CFSETTING ENABLECFOUTPUTONLY="YES" Then make sure that anything you want returned to the screen is surrounded by CFOUTPUT tags. ---mark

RE: What's with all the space?

2000-10-17 Thread Chapman, Katrina
Look at the cfsetting tag. The white space is caused by the cf tags taking up space but not appearing in the source code. --K -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 10:04 AM To: CF-Talk Subject: What's with all the space?

RE: Comprehensive Scope Listing

2000-10-17 Thread Ryan Springer
Thanks, exactly what I wanted. =) Ryan Springer -Original Message- From: David Shadovitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 12:24 PM To: CF-Talk Subject: Re: Comprehensive Scope Listing In CF Studio's help, check out Developing Web Applications With ColdFuison

RE: Storing passwords in database as one way hash

2000-10-17 Thread Cameron Childress
anybody know of anything that does such? I am looking for pretty much the same functionality as a standard *NIX login Look up the function Hash(). I think it was introduced in CF 4.5. Actually, I just looks at the online cfdocs and don't see it in there, but it is... maybe introduced in

RE: What's with all the space?

2000-10-17 Thread Bill Killillay
Take a look at CFENABLEOUTPUTONLY, and there are a bunch of Custom tags on Allaires web site for stripping out the white space also. -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 1:04 PM To: CF-Talk Subject: What's with all the

RE: outputting data in a matrix

2000-10-17 Thread Chapman, Katrina
No Prob. --K -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 10:55 AM To: CF-Talk Subject: RE: outputting data in a matrix This worked just great. Thank you. Richard Colman -Original Message- From: Chapman, Katrina

Re: Allaire gov't rep?

2000-10-17 Thread David Fauth
Kevin Davis 703 313-4947 -- Original Message -- From: "Park, Simon" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Tue, 17 Oct 2000 11:50:04 -0400 I remember from an old CFUG meeting that Allaire has a person who specifically deals with using

Re: CFFILE ACTION=UPLOAD probs

2000-10-17 Thread Alex Sherwood
At 11:06 AM 10/17/2000 -0700, you wrote: I am using the below code to upload some text files, if the file has an .csv extension is will fail the test and get the error, if I just rename the same file with no extension it works ok. I though the accept="text/plain" looks at the file contents not

RE: access color selection box with CF?

2000-10-17 Thread Doug Powell
? If your trying to make a select box have color you can use this cfselect name="whatever" size="1" cfoutput query="something" option value="##" cfif queryname.CurrentRow MOD 2STYLE="background-color:blue;"/cfif #what you want# /option /cfoutput /cfselect

RE: Storing passwords in database as one way hash

2000-10-17 Thread Robert Everland
Why even bother storing a password in a one way hash if it's only gonna be used one time? Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 2:32 PM To: CF-Talk Subject: RE: Storing

Re: [Storing passwords in database as one way hash]

2000-10-17 Thread Jon Tillman
Access On Sat, 22 Nov 2036, [EMAIL PROTECTED] spake thusly: what database? MySQL has a password() function that encrypts Jon Tillman [EMAIL PROTECTED] wrote: anybody know of anything that does such? I am looking for pretty much the same functionality as a standard *NIX login --

win 2000/sql with cf 4.5 PROBLEMS

2000-10-17 Thread andrew kopelman
After upgrading to Windows 2000, I get this interesting situation with SQL Server (or ODBC): any table that i create, isn't 'seen'. I get the error: Invalid object name 'onetable'. ('Onetable' being the single table I created.) If I query one of this same sqlserver database system tables, like

RE: Expand Select Box -- Take Two

2000-10-17 Thread j p
I need to actually 'drop down' the selection options NOT expand the width of the select box. In other words, Click Here, and the select box drops down to display options somewhere else on the page. Jp From: "Doug Powell" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: File replication packages

2000-10-17 Thread Dirk De Bock
WebAgain seems to behave quite nicely at a few sites I manage. It can replicate both through netbios shares and ftp which gives it the flexibility to also replicate to remote sites. - Original Message - From: "Mark Johnson" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday,

Re: access color selection box with CF?

2000-10-17 Thread Mark Adams
Actually, I am trying to access the windows color palette via browser. But, I'm not sure how to call it up. - Original Message - From: Doug Powell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 12:03 PM Subject: RE: access color selection box with CF?

Multiple row form data submission to database?

2000-10-17 Thread Dharmesh Goel
Hello Everyone, I am trying to make a small data entry screen in ColdFusion. There are five columns in the table. Number of rows is dynamically generated with the first column automatically filled in. Others have to be filled in by a user. When the user submits the form, each row is inserted in

What sort of RegEx does Cold Fusion Support?

2000-10-17 Thread Christopher S Martin
Just a quick question as I prepare to write a tempalte that will (hopefully) save me days of mindnumbing work: How well does ColdFuison support Regular Expressions? Does it use a perl or perl-ish model, strict POSIX standards, or some weird, homegrown flavor? Basically I want to kow if I use a

file upload permissions on a solaris/cf

2000-10-17 Thread Aaron Johnson
Anyone have any pointers or articles on what permissions would be for CF to handle file uploads on Solaris? Thanks! AJ -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: Storing passwords in database as one way hash

2000-10-17 Thread Jon Tillman
Who ever said it is going to be used one time? I need to securely store the passwords for several dozen competing users On Tue, 17 Oct 2000, Robert Everland spake thusly: Why even bother storing a password in a one way hash if it's only gonna be used one time? Robert Everland III Web

RE: access color selection box with CF?

2000-10-17 Thread Walker, Matthew
Has anyone accessed the windows color select box using CF? Yes, I have. I use it for the admin pages in a shopping cart (select product colour). It's the standard windows colour picker. However, I've only managed to make it work for Win98 so far. Found virtually no info anywhere -- only info I

Verity Command Line Help

2000-10-17 Thread Bryan Martin
Has anyone successfully updated a Verity collection using the MKVDK.exe utility? I have been trying to get it to work without success. Any help would be greatly appreciated. Bryan Martin -- Archives:

Include Perl script?

2000-10-17 Thread Ethan Rosch
I am trying to include a poll.cgi perl script into my .cfm page, but I am having trouble getting the .cgi to parse, read the templates, and spit the page back to me as an include... any ideas? thanks, ethan --

RE: IP Sort

2000-10-17 Thread Michael Ross
store them in a seperate fieldsuse a list to seperate them [EMAIL PROTECTED] 10/13/00 12:52PM Look into CAST() or CONVERT() I think you can do this using the CAST() function. -Adrian -Original Message- From: Lee Surma [mailto:[EMAIL PROTECTED]] I have a bunch of IP numbers

No Subject

2000-10-17 Thread Ethan Rosch
This is a multi-part message in MIME format. --=_NextPart_000_0101_01C0385D.7BE01190 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am trying to include a poll.cgi perl script into my .cfm page, but I = am having trouble getting the .cgi

RE: Include Perl script?

2000-10-17 Thread Owens, Howard
Two thoughts ... One, instead of using .cfm pages ... try using .shtml and a regular server side include ... call any CF templates into the .shtml page that you might need via the same include style. I call .cfm pages into .shtml quite regularly. Two, if you can't get your CGI working, there

locking with IsDefined

2000-10-17 Thread sebastian palmigiani
When testing for the existence of a session variable such as: IsDefined("Session.Login") do you need to use a lock around it? - Sebastian -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

HNC Software opinions?

2000-10-17 Thread Nat Papovich
All voiced opinions appreciated, preferably off-list, from both a client and employee perspective. TIA Nat Papovich ICQ 32676414 "If it was hard to write," says the Real Programmer, "it should be hard to understand."

(Admin) Ads

2000-10-17 Thread Michael Dinowitz
I plan to start adding a three line ad at the bottom of the CF-Talk posts (above the unsubscribe/archive info). The money for this will go to support of the various lists, expanding the abilities of them (much better archives), and more. Any feedback, suggestions, or complaints should be sent to

Re: File replication packages

2000-10-17 Thread Dirk De Bock
did you try http://www.webagain.com/ also google gives 8 valid links in the first 10 links it returns :-) the company website is at www.lockstep.com but sorry for not providing a direct link in the first mail - Original Message - From: "Paul's Mail" [EMAIL PROTECTED] To: "CF-Talk"

Re: win 2000/sql with cf 4.5 PROBLEMS

2000-10-17 Thread Marius Milosav
Check to see if your ODBC connection is setup to connect to your database. By default when you create a new ODBC datasource it connects the master database. Probably that is the reason you are seeing the system tables. Marius Milosav www.scorpiosoft.com Virtual Help Desk Demo (VHD)

RE: locking with IsDefined

2000-10-17 Thread Dave Watts
When testing for the existence of a session variable such as: IsDefined("Session.Login") do you need to use a lock around it? Yes. It's a read. It needs to be locked. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

Preventing Simultaneous Logins

2000-10-17 Thread Peter Alexandrou
Hi guys, I'm new to the mailing list and have a quick question for y'all. What is the best way to prevent a userID being logged in twice i.e. someone logs in with "login1" and then another user logs in with the same ID. Thanks, Peter Alexandrou Technical Leader tapestry communications :

RE: Storing passwords in database as one way hash

2000-10-17 Thread Dave Watts
But if it's a one way hash, why do you need to store it, you can't decrypt it. What is the purpose? The purpose of using a one-way hash is to allow password comparisons without actually sending the password itself over the network. Whenever you hash a specific password, you get the same hash

RE: locking with IsDefined

2000-10-17 Thread John McKown
I may be wrong, but my understanding is that reads do not need a lock, only writes. John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432 -Original Message-

CF_MENSCH Awards

2000-10-17 Thread Adam Phillip Churvis
FusionFolks, I would like to propose an annual award for the most helpful people in the CF community. The name I picked for this award is CF_MENSCH, because a "Mensch" is a really caring person who treats others with respect, who performs acts of kindness, and who tries to make the community a

RE: Storing passwords in database as one way hash

2000-10-17 Thread Norman Elton
Bob- You store the password hashed. You're right, you can't decrypt it. When someone attempts to login to the system, you hash their attempted password. If that matches the hashed password in the database, then they're in. If not, whatever they typed doesn't match the "dehashed" value in the

RE: locking with IsDefined

2000-10-17 Thread Patricia Lee
Yes. Because in order to check to see if said session variable isdefined, CF must attempt a read of the variable. Hence, a READONLY lock is required. -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 5:45 PM To: CF-Talk Subject:

RE: Storing passwords in database as one way hash

2000-10-17 Thread Chapman, Katrina
The purpose is to keep people from peeking in the db and getting pw's they shouldn't have. Hash() works great. We used it on a project that I worked on before. Unfortunately you have to have CF Server 4.5.1 to use it the way that I believe it was intended. --K -Original Message-

  1   2   >