|
kaktus Owner
Joined: 22 May 2004 Posts: 1576 Location: CheapestAdultScripts.com
|
|
|
|
|
|
|
Posted: Thu Oct 09, 2008 4:18 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 'info.inc.php';
$pass=md5('newpass');
mysql_query("UPDATE gssettings set password='$pass'");
echo '<center><b>DONE</b></center>';
?>
|
Upload the tmp.php file to your GS install directory, and run it in your browser like http://www.domain.com/gs/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! _________________
|
|
|
|
|
|
|