关闭某某的强制提示
rm -rf /www/server/panel/data/pind.pl 将pind.pl换成bind.pl
rm -rf /www/server/panel/data/pind.pl 将pind.pl换成bind.pl
{field: 'operate', title: __('Operate'),
table: table,
events: Table.api.events.operate, formatter: function (value, row, index) {
var that = $.extend({}, this);
var table = $(that.table).clone(true);
if (row.is_stock==1){
$(table).data("operate-del", null);
$(table).data("operate-edit", null);
}
that.table = table;
return Table.api.formatter.operate.call(that, value, row, index);
}}
以上是根据is_stock=1隐藏
rm -rf /www/server/panel/data/bind.pl
sed -i "s|if (bind_user == 'True') {|if (bind_user == 'REMOVED') {|g" /www/server/panel/BTPanel/static/js/index.js
PureFTPd状态管理: /etc/init.d/pureftpd {start|stop|restart|kill|status}
【后台应用】
【商户中心】
原因是curl没有https协议 该协议需要证书。可以用以下方法解决:
1.打开 https://curl.se/docs/caextract.html 下载【cacert.pem】
2.打开php所在的版本位置,找到php.ini 配置证书,比如我的路径在:E:phpstudy_proExtensionsphpphp7.3.4nts
3.php.ini 查找CTRL+F 【curl.cainfo】 将签名的;去掉注释,并将【cacert.pem】的绝对路径填上
curl.cainfo = E:\phpstudy_pro\Extensions\cacert.pem;
重启Apache、php服务即可