Forgot Password
#2
Posted 08 October 2004 - 11:15 AM
It says:
"Go to the ETOMITE_user_attributes table, and set failedlogins and blocked to 0 for your user, and also change the blockeddate to 0. Oh, and change the name of the system from SensibleCMS to Etomite. That'll help too. "
If I find anything of more use I will post it.
#3
Posted 08 October 2004 - 11:39 AM
#5
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); ?>
#6
Posted 08 October 2004 - 01:44 PM
UPDATE phase_user_attributes
SET blocked = 0, failedlogincount = 0, blockeduntil = 0
WHERE id=1
#7
Posted 08 October 2004 - 02:49 PM
luke, on Oct 8 2004, 09:44 AM, said:
The name Phase was replaced by Etomite for trademark dispute reasons. It is the same project, under the same management (Alex), with the same user community. Etomite took over at the 0.6 release, the last version under the Phase name was 5.3 - 0.6 has MANY improvements. You might want to consider upgrading... :D
#8
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); ?>
Where can i find the
manager_user table?
#9
Posted 17 October 2004 - 03:01 PM
Enkil, on Oct 16 2004, 11:24 PM, said:
manager_user table?
For a standard installation this would actually be called etomite_manager_users, and can be accessed using phpMyAdmin or any other MySQL administration software... Or, if you don't have access to a MySQL administration program, which everyone should have as a basic tool, you could create another small script which would make the password change for you... A working example of the script to perform this task would be:
<?
# 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);
?>Once you have regained access to your Etomite Manager, the very first thing you should do is to create an alternate Admin account using a password that you are sure not to forget... By doing this you will insure that you won't be locked out of Etomite Manager again... :eto:
Good Luck... B)
#10
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);
?>Once you have regained access to your Etomite Manager, the very first thing you should do is to create an alternate Admin account using a password that you are sure not to forget... By doing this you will insure that you won't be locked out of Etomite Manager again... :eto:
Good Luck... B)
So,i just go to notepad and paste that script? save and upload?
#12
Posted 30 October 2004 - 07:23 PM
Enkil, on Oct 30 2004, 03:11 PM, said:
Open the Documentation.html file within your phpMyAdmin subdirectory using your browser and follow the installation directions... B)
#13
Posted 25 September 2005 - 11:31 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); ?>[/quote]
I must say, forgetting your password is A B(@$(!
I've scoured these forums, and i cant get seem to get my password reset. Is this the only way to reset your password??
<?php # MD5 Password Creator # Usage: call this script, passing the textual passowrd you desire # Example: md5-password.php?password=new_password # echo md5($password); ?>
[/quote]
or would this work?
<?
# change_etomite_admin_password.php
#
# Created By: Ralph A. Dahlgren - rad14701@yahoo.com
# Purpose: Allows the changing of an admin password without MySQL utility software
# Use: Change the varaibles below to match your Etomite setup, save,
# and point your browser to this script
#
# WARNING!!! Use at your own risk!!!
#
$host = "localhost"; # Name of MySQL host
$user = ""; # MySQL username
$pass = ""; # MySQL password
$db = ""; # Etomite database name
$table = "etomite_manager_users"; # The etomite_manager_users table name with prefix
$username = "" # The username that needs a new password
$admin_password = ""; # The new password for the admin user
# Modifications should not be required below this point
$md5_password = md5($admin_password);
$sql = "UPDATE `$table` SET `password` = '$md5_password' WHERE `username` = '$username' 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 ".$username."...";
mysql_close($conn);
?>If so can i get a more detailed explanation on how this works, cause heh this isn't very NooB friendly.
Is there a place i can find my MYSQL username and password?
I've unblocked myself, but cant rememember my password, but i can only retry 1 time, then it resets back to you have been blocked mode...is there a way to make it stop resetting after 1 try?
Thanks,
Frustrated Mike
This post has been edited by uzz: 25 September 2005 - 11:40 PM
#14
Posted 26 September 2005 - 12:19 AM
Yes, the change_etomite_admin_password.php script should get you going... As for the MD5 encryption for your password, if you attempt to change it within phpMyAdmin you can simply enter your new plain text password and then select MD5 from the function drop-down... Once you save it phpMyAdmin will automatically MD5 encrypt the plain text password...
#15
Posted 26 September 2005 - 01:11 AM
Ralph (rad14701), on Sep 26 2005, 01:19 AM, said:
Yes, the change_etomite_admin_password.php script should get you going... As for the MD5 encryption for your password, if you attempt to change it within phpMyAdmin you can simply enter your new plain text password and then select MD5 from the function drop-down... Once you save it phpMyAdmin will automatically MD5 encrypt the plain text password...
Thanks!...Wish i found this out earlier :rolleyes: phpmyadmin was nice and easy...

Sign In
Register
Help
MultiQuote