Hướng dẫn :
Hướng dẫn thêm password cho forum
1. Download file fpass.php
2. Mở file fpass.php
- Tìm đến $pass="your_forum_pass"; thay your_forum_pass bằng password bạn muốn đặt cho forum. Save lại
- Upload file fpass.php này lên server và dùng trình duyệt chạy file fpass.php này
- Sau khi chạy file thành công hãy xóa file fpass.php này ngay để an toàn
3. Mở file admin.php
-Tìm đến :
if ( empty($IN['password']) )
{
do_login("You must enter a password before proceeding");
}
-----> Thêm vào ngay bên dưới :
if ( empty($IN['spassword']) )
{
do_login("You must enter a security password before proceeding");
}
- Tìm đến :
$DB->query("SELECT name, password, id, mgroup FROM ibmembers WHERE LOWER(name)='".strtolower($IN['username'])."'");
$mem = $DB->fetch_row();
------> Thêm vào ngay bên dưới :
$DB->query("SELECT spassword FROM ibf_forumpass");
$forumpass = $DB->fetch_row();
- Tìm đến :
$pass = md5( $IN['password'] );
if ($pass != $mem['password'])
{
do_login("The password entered did not match the one in our records");
}
------> Thêm vào ngay bên dưới :
$spass = md5(md5( $IN['spassword'] ));
if ($spass != $forumpass['spassword'])
{
do_login("The password entered did not match the one in our records");
}
- Tìm đến :
$ADMIN->html .= $SKIN->add_td_row( array( "Your Forums Password:",
"<input type='password' style='width:100%' name='password' value=''>",
) );
------> Thêm vào ngay bên dưới :
$ADMIN->html .= $SKIN->add_td_row( array( "Security Password:",
"<input type='password' style='width:100%' name='spassword' value=''>",
) );
- Save file admin.php lại.
DONE !
code by Tsura
Download file fpas.php bạn vào đây down nha:
http://www.blackmoont.com/forum/index.php?act=ST&f=22&t=16026