去除宝塔后台面板强制登陆绑定账号

/ 1评 / 3

最近发现搞了台vps安装宝塔时发现宝塔把绑定页面改了
但是去除办法还是一样的

rm -rf /www/server/panel/data/bind.pl

下面的也还是要做一次 ~

链接SSH:

一键去除

sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js

一键还原

sed -i "s|if (bind_user == 'REMOVED') {|if (bind_user == 'True') {|g" /www/server/panel/BTPanel/static/js/index.js

手动修改

/www/server/panel/BTPanel/static/js/index.js

找到这个文件,搜索

bind_user

if (bind_user == 'True') {
    show_force_bind();
}

修改成

if (bind_user == 'REMOVED') {
    show_force_bind();
}

 

  1. 大雄说道:

    这个确实很恶心.

发表评论

邮箱地址不会被公开。 必填项已用*标注