Created
June 26, 2012 05:34
-
-
Save jamesshannon/2993547 to your computer and use it in GitHub Desktop.
Concrete5 Password Reset Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This script will reset your admin password to "password" | |
* It should be named site_post.php and placed at [your web root]/config/site_post.php | |
* After it's been copied, load your website, and your admin password will be reset | |
* **** REMEMBER TO DELETE THIS FILE AFTERWARDS, OR YOUR PASSWORD WILL BE CONSTANTLY RESET ***** | |
* Enjoy. [email protected] | |
*/ | |
$ui = UserInfo::getByID(USER_SUPER_ID); | |
$ui->changePassword('password'); | |
echo "Your admin password was updated. Remove the file located at config/site_post.php and log in with the following credentials:<br />"; | |
if (USER_REGISTRATION_WITH_EMAIL_ADDRESS) { | |
echo "Email Address: " . $ui->getUserEmail(); | |
} else { | |
echo "Username: " . $ui->getUserName(); | |
} | |
echo "<br />Password: password"; | |
die; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @kumanac. Sorry for the delay. I don't think github sends emails when comments are left.
Um... this script will show you the thing you need to log in with, whether it's the username (which may or may not be admin), or the email address -- depending on how this particular c5 instance is configured.