我要把discuz中未登录状态的信息提示:对不起,您还未登录,无法进行操作。
我只找到了my.php中的
if(!$discuz_uid) {
showmessage('not_loggedin', NULL, 'NOPERM');
}
没找到确定和取消按钮。请问下确定按钮在哪个文件中。
我想要找到确定按钮。点击后不进入discuz用户登录界面。
而是跳到别的网站的登录页面。

解决方案 »

  1.   

    你应该找showmessage这个函数
      

  2.   

    还是在login.php 中找,当判断结束后,判定用户名不正确或者密码错误 则 加入一句
    echo "<script>window.location.href=\"http://xxx.xxx.xxx\"</script>";
    转到你需要的页面。
      

  3.   

    找一下showmessage('not_loggedin', NULL, 'NOPERM');
    这个函数的内容
      

  4.   

    showmessage 这个函数应该在 global.func.php 这个文件中。