Re: [PHP] Password expiration script

2005-04-01 Thread Angelo Zanetti
im sure it cant be that hard to write: when user logs in check the last date their password was set. if 30 days then prompt to connect and dont allow user to do anything else until password has been changed and new expiry date is set (which will now be less than 30 days) use an include for it

[PHP] Password expiration script

2005-03-31 Thread Bosky, Dave
I'm looking for a script that would require a user to change their password every 30 days. Does anyone use a script that has functionality similar to what I'm looking for? Thanks, Dave HTC Disclaimer: The information contained in this message may be privileged and confidential and

Re: [PHP] Password expiration script

2005-03-31 Thread Ryan A
Theres instant2c pro at securecents.com, but that might be like using a tank to kill a fly :-D On 3/31/2005 11:18:31 AM, Bosky, Dave ([EMAIL PROTECTED]) wrote: --_=_NextPart_001_01C53626.6CCF76C0 Content-Type: text/plain I'm looking for a script that would require a user to change

Re: [PHP] Password expiration script

2005-03-31 Thread xfedex
On Thu, 31 Mar 2005 14:18:31 -0500, Bosky, Dave [EMAIL PROTECTED] wrote: I'm looking for a script that would require a user to change their password every 30 days. Does anyone use a script that has functionality similar to what I'm looking for? Thanks, Dave I got do it so using a

RE: [PHP] Password Generator Script

2002-07-27 Thread Naintara Jain
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] t]On Behalf Of Liam MacKenzie Sent: Thursday, July 25, 2002 1:04 PM To: [EMAIL PROTECTED]; Monty Subject: Re: [PHP] Password Generator Script ? $password = substr(ereg_replace([^A-Za-z0-9], , crypt(time())) . ereg_replace

Re: [PHP] Password Generator Script

2002-07-25 Thread Liam MacKenzie
: http://scripts.operationenigma.net/passgen.php Have fun :-) - Original Message - From: Monty [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 25, 2002 2:49 PM Subject: [PHP] Password Generator Script Can anyone recommend where I could find a decent script

[PHP] Password Generator Script

2002-07-24 Thread Monty
Can anyone recommend where I could find a decent script that automatically generates passwords? I don't care if they are readable or just random letters, numbers. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Password Generator Script

2002-07-24 Thread Richard Baskett
nonsense. - Ralph Waldo Emerson From: Monty [EMAIL PROTECTED] Date: Thu, 25 Jul 2002 00:49:17 -0400 To: [EMAIL PROTECTED] Subject: [PHP] Password Generator Script Can anyone recommend where I could find a decent script that automatically generates passwords? I don't care if they are readable

Re: [PHP] Password in script

2002-07-19 Thread Michael Hall
Actually, there is Banother way and you should consider it. Sensitive information like passwords should be kept in a file stored outside the live web content directory (ie, outside DocumentRoot on Apache). This file can then be included in your main file. This way, you can be sure that a

Re: [PHP] Password in script

2002-07-19 Thread Michael Hall
ead your PHP files get the password. -Original Message- From: Tyler Longren [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 23:10 PM To: Sailom Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Password in script It's fine. There's no other way to do it really.

[PHP] Password in script

2002-07-18 Thread Sailom
I am new to PHP and MySQL and never have experience in this area. I am writing a PHP script that connects to MySQL server. I have to put a password of MySQL into the PHP script. I think it may not be secured. What do you think? How can I make it more secure? Thanks. -- PHP General

Re: [PHP] Password in script

2002-07-18 Thread Tyler Longren
It's fine. There's no other way to do it really. Somebody would have to be able to see the source to the php file before they could see the password for mysql. They won't get it just by viewing the webpage that's already been parsed by php. -- Tyler Longren Captain Jack Communications [EMAIL

Re: [PHP] Password in script

2002-07-18 Thread Anas Mughal
Also, allow MySQL connections only from your server. Tyler Longren [EMAIL PROTECTED] wrote: It's fine. There's no other way to do it really. Somebody would have to be able to see the source to the php file before they could see the password for mysql. They won't get it just by viewing the

Re: [PHP] Password in script

2002-07-18 Thread Sailom
THANKS :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Password in script

2002-07-18 Thread Tyler Longren
Yes, good point Anas. Make sure that you have mysql set up right. Make sure the root mysql user has a password set and that people can't connect from %. tyler On Thu, 18 Jul 2002 20:19:05 -0700 (PDT) Anas Mughal [EMAIL PROTECTED] wrote: Also, allow MySQL connections only from your

RE: [PHP] Password in script

2002-07-18 Thread Jonathan Rosenberg
] Password in script It's fine. There's no other way to do it really. Somebody would have to be able to see the source to the php file before they could see the password for mysql. They won't get it just by viewing the webpage that's already been parsed by php. -- Tyler Longren Captain

Re: [PHP] Password in script

2002-07-18 Thread Sailom
Subject: Re: [PHP] Password in script It's fine. There's no other way to do it really. Somebody would have to be able to see the source to the php file before they could see the password for mysql. They won't get it just by viewing the webpage that's already been parse

Re: [PHP] Password in script

2002-07-18 Thread Richard Baskett
to forgive is devoid of the power to love. - Dr. Martin Luther King, Jr. From: Sailom [EMAIL PROTECTED] Date: Fri, 19 Jul 2002 11:33:59 +0700 To: [EMAIL PROTECTED] Subject: Re: [PHP] Password in script I just checked grant and it said something like... GRANT USAGE ON *.* TO 'X