a) How long for
Thanks
Posted 08 October 2004 - 06:18 AM
Posted 08 October 2004 - 11:15 AM
Posted 08 October 2004 - 11:39 AM
Posted 08 October 2004 - 11:43 AM
Posted 08 October 2004 - 01:06 PM
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # echo md5($password); ?>
Posted 08 October 2004 - 01:44 PM
Posted 08 October 2004 - 02:49 PM
luke, on Oct 8 2004, 09:44 AM, said:
Posted 17 October 2004 - 03:24 AM
rad14701, on Oct 8 2004, 02:06 PM, said:
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # echo md5($password); ?>
manager_user table?
Posted 17 October 2004 - 03:01 PM
Enkil, on Oct 16 2004, 11:24 PM, said:
manager_user table?
<?
# MD5 admin password changer for Etomite
$host = "localhost"; # Name of MySQL host
$user = "user"; # MySQL username
$pass = "password"; # MySQL password
$db = "etomite"; # Etomite database name
$table = "etomite_manager_users"; # The etomite_manager_users table name with prefix
$admin_password = "your_new_password"; # The new password for the admin user
$md5_password = md5($admin_password);
$sql = "UPDATE `$table` SET `password` = '$md5_password' WHERE `username` = 'admin' LIMIT 1;";
if (!$conn = mysql_connect($host, $user, $pass)) die('Could not connect: ' . mysql_error());
if (!mysql_select_db($db)) die('Database select failed: ' . mysql_error());
if (!mysql_query($sql)) die('Update failed: ' . mysql_error());
else echo "Password successfully changed for admin...";
mysql_close($conn);
?>
Posted 30 October 2004 - 06:24 PM
rad14701, on Oct 17 2004, 04:01 PM, said:
<?
# MD5 admin password changer for Etomite
$host = "localhost"; # Name of MySQL host
$user = "user"; # MySQL username
$pass = "password"; # MySQL password
$db = "etomite"; # Etomite database name
$table = "etomite_manager_users"; # The etomite_manager_users table name with prefix
$admin_password = "your_new_password"; # The new password for the admin user
$md5_password = md5($admin_password);
$sql = "UPDATE `$table` SET `password` = '$md5_password' WHERE `username` = 'admin' LIMIT 1;";
if (!$conn = mysql_connect($host, $user, $pass)) die('Could not connect: ' . mysql_error());
if (!mysql_select_db($db)) die('Database select failed: ' . mysql_error());
if (!mysql_query($sql)) die('Update failed: ' . mysql_error());
else echo "Password successfully changed for admin...";
mysql_close($conn);
?>
Posted 30 October 2004 - 07:11 PM
Enkil, on Oct 30 2004, 07:24 PM, said:
Posted 30 October 2004 - 07:23 PM
Enkil, on Oct 30 2004, 03:11 PM, said:
Posted 25 September 2005 - 11:31 PM
Edited by uzz, 25 September 2005 - 11:40 PM.
Posted 26 September 2005 - 12:19 AM
Posted 26 September 2005 - 01:11 AM
Ralph (rad14701), on Sep 26 2005, 01:19 AM, said:
Posted 29 March 2007 - 07:53 PM
Ralph (rad14701), on Oct 8 2004, 01:06 PM, said:
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # echo md5($password); ?>
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # $password=$_GET['password']; echo md5($password); ?>
Posted 29 March 2007 - 09:39 PM
stefan333, on Mar 29 2007, 03:53 PM, said:
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # $password=$_GET['password']; echo md5($password); ?>
Posted 18 February 2009 - 08:52 PM
Posted 18 February 2009 - 11:25 PM
Edited by justPeachy, 18 February 2009 - 11:29 PM.
Posted 18 February 2009 - 11:43 PM
Edited by PaulD, 18 February 2009 - 11:47 PM.
0 members, 1 guests, 0 anonymous users