Re: Change Password Script
Nice release nofxpunkerbrian
Re: Change Password Script
how to make check with email?
require_once("DB.php");
where is DB.php?
Re: Change Password Script
It would be nice too, or ask a stove password sent to your email account?
Thanks for sharing the script.
---------- Post added at 05:52 PM ---------- Previous post was at 05:50 PM ----------
And if the guy lost password? How to recover?
Re: Change Password Script
Quote:
Originally Posted by
vixio_dv
how to make check with email?
require_once("DB.php");
where is DB.php?
DB.php is a call you use when using Pear Php coding.
Re: Change Password Script
we still need to know where it is?
Warning: require_once(DB.php) [function.require-once]: failed to open stream: No such file or directory in C:\Program Files\wamp\www\checkinfo.php on line 18
Fatal error: require_once() [function.require]: Failed opening required 'DB.php' (include_path='.;C:\php5\pear') in C:\Program Files\wamp\www\checkinfo.php on line 18
Re: Change Password Script
Re: Change Password Script
yeah just a bit necro but not too much :laugh:
Re: Change Password Script
Re: Change Password Script
Look up Pear PHP and see the requirements
Re: Change Password Script
I still don't get why Pear is used, while all of it can be done without it. Even the passwd conversion can be done without the var_bin... function with stuff that Php brings in anyways. Check http://php.net/manual/en/function.bin2hex.php and mysqli
Re: Change Password Script
Personal preference in the end.
Re: Change Password Script
to where the file db.php?
Re: Change Password Script
db.php is a requirement when using Pear PHP Scripting. Just change the connections and the Pear Context to whatever your preference is.
Re: Change Password Script
db.php = connector.php ? :blink:
Re: Change Password Script
I have added V2 of the script, it has been integrated to be used in anyones web scripts and I have removed the Pear functions and added just genuine PHP lines. Its a lot smarter and error checks better as well.
---------- Post added at 11:08 PM ---------- Previous post was at 11:07 PM ----------
Remember to change this part:
PHP Code:
$host = "";
$username = "";
$password = "";
$db_name = "";
Re: Change Password Script