一 30 2010
ucenter创始人密码忘记解决方法
以下内容保存为 ucenterpass.php 传到你空间并访问
<?php
$ucfounderpw = ‘zoubin’;
$ucsalt = rand(100000,999999);
$ucfounderpw = md5(md5($ucfounderpw).$ucsalt);
echo $ucfounderpw.’<br />’.$ucsalt;
?>
$ucfounderpw = ‘zoubin’;
$ucsalt = rand(100000,999999);
$ucfounderpw = md5(md5($ucfounderpw).$ucsalt);
echo $ucfounderpw.’<br />’.$ucsalt;
?>
之后会显示2行
打开uc下面/data/config.inc.php文件
里面有
define(‘UC_FOUNDERPW’, ‘显示出来的第一行写到这里’);
define(‘UC_FOUNDERSALT’, ‘显示出来的第二行写到这里’);