创建下面的php文件
<?php
$ucfounderpw = '123123'; $ucsalt = rand(100000,999999); $ucfounderpw = md5(md5($ucfounderpw).$ucsalt); echo $ucfounderpw.'<br />'.$ucsalt;生成的ucfounderpw和ucsalt
替换
bbs\uc_server\data\config.inc.php
文件里的参数
本文共 262 字,大约阅读时间需要 1 分钟。
创建下面的php文件
<?php
$ucfounderpw = '123123'; $ucsalt = rand(100000,999999); $ucfounderpw = md5(md5($ucfounderpw).$ucsalt); echo $ucfounderpw.'<br />'.$ucsalt;生成的ucfounderpw和ucsalt
替换
bbs\uc_server\data\config.inc.php
文件里的参数
转载于:https://blog.51cto.com/asuper/973784