Re: How to query encrypted password

2010-01-05 Thread Barney Boisvert
What you need to do is take the input password and encrypt it in the same way that the database password was originally encrypted. Then do a string compare on the two of them. Typically when you store passwords you don't encrypt them, you hash them. Encryption is symmetric; encrypted things can

Re: How to query encrypted password

2010-01-05 Thread Kevin Pepperman
> I need to query an Oracle user table where username and encrypted > password are stored. I need to compare the user input password with the > encrypted password in the table. Can the CF Decrypt function do the > work? Can someone give me a pointer? Usually a password in encrypted with a irrever

Re: How to query encrypted password

2010-01-05 Thread Dave Watts
> I need to query an Oracle user table where username and encrypted > password are stored. I need to compare the user input password with the > encrypted password in the table. Can the CF Decrypt function do the > work? Can someone give me a pointer? How was the password encrypted in the first pl

How to query encrypted password

2010-01-05 Thread Nathan Chen
All: I need to query an Oracle user table where username and encrypted password are stored. I need to compare the user input password with the encrypted password in the table. Can the CF Decrypt function do the work? Can someone give me a pointer? Nathan ~~~

Re: CF5 download

2010-01-05 Thread Kevin Pepperman
I think I have what I need now. Thanks for the help everyone. What a great group! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.hous

Re: CF5 download

2010-01-05 Thread Kevin Pepperman
> > Have tried contacting Adobe? Since you have the License Key, they may > be able to provide you a link for downloading it. -scott Yes, I sent them and email 2 days ago but have not heard back from them yet. I don't know if they are still readable, I can have a look. What > version, Pro or E

Re: CF5 download

2010-01-05 Thread Kym Kovan
Kevin Pepperman wrote: > The company I work for has a CF5 license and had several non mission > critical applications running on it on a Linux server. > > All attempts at finding the original install discs have failed, so all I > have is the license key. > > Does anyone on this list have a c

Re: CF5 download

2010-01-05 Thread Scott Brady
Have tried contacting Adobe? Since you have the License Key, they may be able to provide you a link for downloading it. Scott On Tue, Jan 5, 2010 at 7:42 PM, Kevin Pepperman wrote: > > The company I work for has a CF5 license and had several non mission > critical applications running on it on

Re: CF5 download

2010-01-05 Thread Kevin Pepperman
I think I found one on Corfield's site. I had seen the link before but it was the dev version and I needed the full. http://corfield.org/index.cfm?fuseaction=blog.archive&month=2002_10#000131 http://download.macromedia.com/pub/coldfusion/esd/coldfusion-50-win-us_devrel.exe

CF5 download

2010-01-05 Thread Kevin Pepperman
The company I work for has a CF5 license and had several non mission critical applications running on it on a Linux server. They are tightening their belt and have shut down the server/host with the apps and want to move the apps to a local windows server. I have all the code and the data (MySql

Re: Invitation to connect on LinkedIn

2010-01-05 Thread Kevin Pepperman
You know what is happening. Linkedin has their automated feature-- that selects all your contacts that you want to be notified by default and sends them to that email. I de-selected all those contacts and this still was sent, so something must be amiss in their application somehow. Gee, this mu

Re: Invitation to connect on LinkedIn

2010-01-05 Thread James Holmes
What's most annoying is that when I read the previous one, I missed that it went to the ct-talk list, so I actually bothered to look at the request. Damn having the second most popular name in the western world. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 20

Re: Invitation to connect on LinkedIn

2010-01-05 Thread denstar
James sure is popular today. =) -- Everything is arranged so that it be this way, this is what is called culture. Jacques Derrida On Tue, Jan 5, 2010 at 4:51 PM, Kevin Pepperman wrote: > > LinkedIn > > > Kevin Pepperman requested to add you as a connection on LinkedIn: > -

Invitation to connect on LinkedIn

2010-01-05 Thread Kevin Pepperman
LinkedIn Kevin Pepperman requested to add you as a connection on LinkedIn: -- James, I'd like to add you to my professional network on LinkedIn. - Kevin Accept invitation from Kevin Pepperman http://www.linkedin.com/e/kf_f_G1APNKUmMHaBOJgkT

Re: Invitation to connect on LinkedIn

2010-01-05 Thread Michael Dinowitz
Please do not post invitations to ANY social network to the list. This is considered just one level above spam. Thanks -- Michael On Tue, Jan 5, 2010 at 7:16 AM, Daniel Farmer wrote: > > LinkedIn > > > Daniel Farmer requested to add you as a connection on LinkedIn: > --

Re: Invitation to connect on LinkedIn

2010-01-05 Thread Gerald Guido
All of us? G! On Tue, Jan 5, 2010 at 7:16 AM, Daniel Farmer wrote: > > LinkedIn > > > Daniel Farmer requested to add you as a connection on LinkedIn: > -- > > James, > > I'd like to add you to my professional network on LinkedIn. > > - Danie

Re: CF 8 and Access 2007

2010-01-05 Thread gary gilbert
In the coldfusion administrator choose datasources, in the dropdown list of datatypes choose microsoft access, add a datasource name click next, on the next screen browse to the mdb file and click finish. Gary Gilbert http://www.garyrgilbert.com/blog On Sun, Dec 20, 2009 at 3:03 PM, Terry Troxe

Re: Date format question

2010-01-05 Thread gary gilbert
I would say that the client who is using your api is not using the datetime.parse method in .net which allows you to add a "culture" specific format when a string date is parsed. the .NET parse method is an overloaded .NET method that can either take the following forms. Parse(String)

Re: Date format question

2010-01-05 Thread John M Bliss
Perhaps suggest ParseExact to him: http://www.codeproject.com/KB/cs/String2DateTime.aspx On Tue, Jan 5, 2010 at 4:14 AM, Stefan Richter wrote: > > My CF app stores dates in a MySQL database which I often submit simply > using NOW() in my SQL statement. The resulting database entry has this > for

Invitation to connect on LinkedIn

2010-01-05 Thread Daniel Farmer
LinkedIn Daniel Farmer requested to add you as a connection on LinkedIn: -- James, I'd like to add you to my professional network on LinkedIn. - Daniel Accept invitation from Daniel Farmer http://www.linkedin.com/e/kf_f_G1APNKUmMHaBOJgkT0vU

Date format question

2010-01-05 Thread Stefan Richter
My CF app stores dates in a MySQL database which I often submit simply using NOW() in my SQL statement. The resulting database entry has this format: 2008-01-29 11:08:40 Other times I am using a default MYSQL value of CURRENT_TIMESTAMP in a timestamp field, which results in the same format. I