/*------------------------------------------------------ */
//-- 登陆界面
/*------------------------------------------------------ */
if ($_REQUEST['act'] == 'login')
{
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
if ((intval($_CFG['captcha']) & CAPTCHA_ADMIN) && gd_version() > 0)
{
$smarty->assign('gd_version', gd_version());
$smarty->assign('random', mt_rand());
}
if(!empty($_REQUEST['qq']) && $_REQUEST['qq']=='www'){
$smarty->display('login.htm');
}else{
header( "Location:../");
exit;
}
}
以上代码摘自 ecshop /admin/privilege.php
if(!empty($_REQUEST['qq']) && $_REQUEST['qq']=='www')
关键是这句话。要怎么解决才能正确登录呢? 有偿!