RE: Match to list item

2004-01-04 Thread Michael T. Tangorre
Keep up the good job with not smoking, its hard as hell, but well worth it :-) _ From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 12:31 AM To: CF-Talk Subject: Re: Match to list item Tim, Thanks, that is exactly what I was looking for. I did look up the

Re: CFMX install on OS X

2004-01-04 Thread Ryan Mitchell
I think you can proceed without being a non-root user. Although it displays the warning, you can still click on the next button. On 4/1/04 12:39 am, Philipp Cielen [EMAIL PROTECTED] wrote: Installing ColdFusion MX for J2EE on OS X I get the warning message that I am installing as a non-root

Re: Adding remote datasource dynamically

2004-01-04 Thread Jochem van Dieten
Chunshen (Don) Li wrote: Oops, Java was not a friend of mine :) Same result same err msg after using javaCast string function. I just got an email from Rafael Quinones confirming that JavaCast() should work: cfset DBpassword=mypassword cfscript factory = CreateObject(java,

Dynamic Array or Structure

2004-01-04 Thread Spectrum WebDesign
I'm looking for tips, how to's, tutorials, code for auditing tool for my solution: Please see this: Original values for form fields have Original string append this names... intQtyContentOriginal,strNameFirmsOriginal,EmailUserOriginal !---audit--- !---form fields - can be change for users ---

RE: Dynamic Array or Structure

2004-01-04 Thread Philip Arnold
Just one point, please don't use Evaluate() - it's incredibly slow... Also, if you are, then use your quotes and pounds sparingly: #evaluate(#formfield#)# is the same as #evaluate(formfield)# But if you can, use scoping and square bracket notation Square bracket notation works like this:

cfm won't work in combination of other isapi.dll

2004-01-04 Thread Willy Otto
I'm am struggling with this serious problem: we have software for pc, and the software engineer of it also made an ISAPI.dll to access the functions via a web page. When you call a webpage and you want to get the functions working on your page you have to make an url like this:

cfm won't work in combination of other isapi.dll

2004-01-04 Thread Willy Otto
I'm am struggling with this serious problem: we have software for pc, and the software engineer also made an ISAPI.dll to access the functions via a web page. When you call a webpage and you want to get the functions working on your page you have to make an url like this:

GUI web controls

2004-01-04 Thread stas
I've asked this a while ago but may be some new products came out on the market since. Does anyone market a set of controls similar to what's available here: http://www.aspnetmenu.com/home.aspx Thanks, Stas [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: GUI web controls

2004-01-04 Thread stas
Sorry, I meant to say a set of controls for ColdFusion. There isn't anything inherently specific to .Net that allows such controls to exist, is there? P.S. This isn't a troll! - Original Message - From: stas To: CF-Talk Sent: Sunday, January 04, 2004 11:52 AM Subject: GUI web controls

RE: GUI web controls

2004-01-04 Thread Tim Heald
There are plenty of _javascript_ menus out there that can be made to work with CF, many are free as well. Milonic are my favorite. http://www.milonic.com/ Tim -Original Message- From: stas [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 11:56 AM To: CF-Talk Subject: Re: GUI web

Re: cfm won't work in combination of other isapi.dll

2004-01-04 Thread Jeffry Houser
When you access the DLL directly in the URL doesn't that mean you're executing a CGI program; not calling an ISAPI filter? IIS (or your web server) sees the DLL extension and doesn't recognize it as a ColdFusion page; so therefore does not pass it onto the ColdFusion server.It won't matter

RE: Dynamic Array or Structure

2004-01-04 Thread Spectrum WebDesign
Thanx Phillip formField is the original value of form field... used to compare with the changed form field... Like this: form... input type=text name=strUserName value= input type=hidden name=strUserNameOriginal value=#qryUser.strUsername# - Original Message - From: Philip Arnold

RE: Dynamic Array or Structure

2004-01-04 Thread Spectrum WebDesign
What's the other option to Evaluate()? - Original Message - From: Philip Arnold [EMAIL PROTECTED] Date: Sun, 4 Jan 2004 10:55:49 -0500 To: CF-Talk [EMAIL PROTECTED] Subject: RE: Dynamic Array or Structure Just one point, please don't use Evaluate() - it's incredibly slow... Also, if you

Okay, I've forgotten this one...*not* caching the page...

2004-01-04 Thread Jeff
I'm performing a query to get a list of users NOT assigned something. Once they're assigned to a particular team, I want to return to the page listing users NOT assigned to a team. I want to make sure, that if you appeared on the output, and were assigned a team previously, that when I come back

automatically DL excel file with CF

2004-01-04 Thread Won Lee
Hello CFers, I want to automate some information gathering. Nasdaq.com has a list of downloadable ticker symbols. The address is www.nasdaq.com//asp/symbols.asp?exchange=Qstart0 and www.nasdaq.com//asp/symbols.asp?exchange=Nstart0 I want my application to go there DL the new file into the same

RE: Dynamic Array or Structure

2004-01-04 Thread Philip Arnold
What's the other option to Evaluate()? Square bracket notation, as described in my earlier email [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:cfm won't work in combination of other isapi.dll

2004-01-04 Thread Willy Otto
Hi, It's an isapi.dll directly called in the browser. With COM it communicates with database-driven software on the server. I don't think it has something to do with CGI. Unfortunately it isn't possible to access the databse directly either it's a weird Paradox DB. With CFHTTP it's not possible

Re:Adding remote datasource dynamically

2004-01-04 Thread Don
Jochem van Dieten wrote: I just got an email from Rafael Quinones confirming that JavaCast() should work: cfset DBpassword=mypassword cfscript factory = CreateObject(java, coldfusion.server.ServiceFactory); ds_service = factory.datasourceservice; dsources = ds_service.datasources;

RE: GUI web controls

2004-01-04 Thread Dave Watts
Sorry, I meant to say a set of controls for ColdFusion. There isn't anything inherently specific to .Net that allows such controls to exist, is there? No, there's nothing inherently specific to .NET with regard to these controls. However, you won't find much that's directly analogous to them

RE: cfm won't work in combination of other isapi.dll

2004-01-04 Thread Dave Watts
Now it comes: when I want to work with Coldfusion and I also want the application function to work I have to use the application.dll? topage=- in the urls, but the Coldfusion-functionality isn't working anymore. The webserver recognises the *.cfm extensions but not what is inside. To

Re: cfm won't work in combination of other isapi.dll

2004-01-04 Thread Jeffry Houser
I couldn't tell exactly what was happening by looking at your example (It seemed to mask the specific URLs and there was no verder button). In the example you gave: www.mysite.com/application.dll?topage=mypage.html You are executing a DLL from the browser (so to speak); which is different than

RE: Verity - always Verity...

2004-01-04 Thread Dave Watts
cfsearch collection=teste name=GetContentDB type=SIMPLE criteria=STEM #UserCriteria# language=Spanish Here begin my problem... Returns only if UserCriteria is EQUAL(exactly) any word in collection. Don't works with partial word. When you specify TYPE=SIMPLE, you shouldn't specify

RE: cfm won't work in combination of other isapi.dll

2004-01-04 Thread Dave Watts
You are executing a DLL from the browser (so to speak); which is different than an ISAPI application. I'm still under the impression that if you are loading a DLL in a browser you are not running that DLL as an ISAPI filter. You're right that this DLL wouldn't be an ISAPI filter. However,

to_char in MS Access

2004-01-04 Thread Jim Watkins
Jochem helped me convert the to_date function to work in MS Access and now I have a problem with to_char.When I run the script against an Access DB I get:Undefined function 'to_char' in _expression_. For Oracle SQL=My script is: cfquery name=leavehistory datasource=banner SELECT fromdate1 FROM

Password Logic

2004-01-04 Thread Bob Haroche
I want to enable users of my web app, upon creating their accounts, to be able to select their own login password. When they create their account, I'm comparing their proposed password with all other passwords stored in a db to ensure that the proposed password is unique. If it's not, though, I

RE: Password Logic

2004-01-04 Thread Paul Vernon
Wherever possible we try to use an e-mail address as the username and then generate a password and e-mail it to the user. That way, they are guaranteed to give you a valid address as they can't get in without one... It also covers the uniqueness angle as an e-mail address is unique. Once the user

Re: Password Logic

2004-01-04 Thread walker
Why do you care if the password is unique? Wouldn't your time be better spent making sure the password is mixed case with letters and numbers so it can't be easily guessed? Or perhaps you should write something that would de-activate the account if the user types in the wrong password more

RE: Password Logic

2004-01-04 Thread Cameron Childress
I would not suggest storing your passwords in plain text in the DB.Storing them in this manner leaves them vulnerable to anyone who ends up with access to that database.You may or may not consider the data in your web app important to your user, but most users will attempt to use a password they

Re: Password Logic

2004-01-04 Thread Matt Liotta
I would not suggest storing your passwords in plain text in the DB.  Storing them in this manner leaves them vulnerable to anyone who ends up with access to that database.  You may or may not consider the data in your web app important to your user, but most users will attempt to use a

Re: Password Logic

2004-01-04 Thread Bob Haroche
Cameron Childress wrote: Phew, that was a long answer Yes, and very useful as are the other responses. That's what I was looking for. I already have the random, strong password generation part down. I wasn't going to hash the password because the web app info really isn't terribly private

Re: Password Logic

2004-01-04 Thread walker
That's right, you can't un-hash a stored variable. For best practices-sake, if the user forgets their password, you should only be able to generate a new one and email it out, and let the user change it to something else. -w At 10:46 PM 1/4/2004, you wrote: Cameron Childress wrote: Phew,

RE: Password Logic

2004-01-04 Thread Cameron Childress
Yes, and very useful as are the other responses. That's what I was looking for. Glad I could help. And if I understand it correctly, you can't un-hash a stored variable to read it, but can only compare a hashed Form.Password variable against what's stored in the db. Is that right? Yup.

Did Macromedia publish your password? (was RE: Password Logic)

2004-01-04 Thread Cameron Childress
One of the most frequently seen security vulnerabilities on the internet today is a web application that will email you your password in plaintext. Speaking of...A quick rant here... Went to MAX this year.Got my registration packet and looked as my session summary.As they have done in the

Re: Password Logic

2004-01-04 Thread Doug White
| Certainly storing hashes is better than passwords. However, you can't | reverse hashes, which means that if someone forgets their password you | can't figure it out for them. For some web applications that is a | problem although I think offering to reset the password provides the | same

Re:Password Logic

2004-01-04 Thread Mauricio Giraldo
For best practices-sake, if the user forgets their password, you should only be able to generate a new one and email it out I prefer not to send any password via mail (auto or user-generated. If a user forgets his/her password we do a couple of things: 1- user must type the registered email in