|
kaktus Owner
Joined: 22 May 2004 Posts: 1576 Location: CheapestAdultScripts.com
|
|
|
|
|
|
|
Posted: Mon Jan 26, 2009 9:57 pm Post subject: Resetting Admin Password |
|
|
|
|
|
|
|
|
|
|
In case you forget or loose the password you use to access the script admin, there is no way to retrieve it. You can only reset it by creating new password.
To do so, follow this guide.
Make a tmp.php file with contents:
Code: | <?php
require_once 'soinfo.inc.php';
$pass=md5('newpass');
mysql_query("UPDATE sosettings set password='$pass'");
echo '<center><b>DONE</b></center>';
?>
|
Upload the tmp.php file to your SO install directory, and run it in your browser like http://www.domain.com/so/tmp.php
Once that is done, login to the admin panel with password: newpass
After successfully resetting the password, delete the tmp.php
Finally, go to the script settings screen and put new password you will remember, don't leave the script with the newpass password! _________________
|
|
|
|
|
|
|