摘要: $(document).on('change','#c-is_scan',function () { if($(this).val()==0){ $('#c-scan_num').parents('.form-group').hide(); }else if($(this).val()==1){ $ 阅读全文
posted @ 2019-12-16 11:39 hwzzbe 阅读(211) 评论(0) 推荐(0)
摘要: $('#el').find("#custom-radio input[name='paymentBank']:checked").val() 阅读全文
posted @ 2019-12-13 13:52 hwzzbe 阅读(185) 评论(0) 推荐(0)
摘要: 1 server 2 { 3 listen 80; 4 listen 443 ssl http2; 5 server_name ; 6 index index.php index.html index.htm default.php default.htm default.html; 7 root 阅读全文
posted @ 2019-12-12 10:15 hwzzbe 阅读(223) 评论(0) 推荐(0)
摘要: //检测后台进程是否存在ps -ef |grep redis //检测6379端口是否在监听netstat -lntp | grep 6379 LNMP状态管理命令: LNMP 1.2+状态管理: lnmp {start|stop|reload|restart|kill|status}LNMP 1. 阅读全文
posted @ 2019-12-12 10:11 hwzzbe 阅读(143) 评论(0) 推荐(0)
摘要: sudo su # 切换为root用户模式,省的接下来操作的时候出现权限问题 mysql -u root -p # 进入mysql命令行模式,需要输入mysql root账号的密码 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '** 阅读全文
posted @ 2019-12-12 10:10 hwzzbe 阅读(238) 评论(0) 推荐(0)
摘要: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $linkUrl); curl_setopt($ch, CURLOPT_VERBOSE, 1); curl_setopt($ch, CURLOPT_FAILONERROR, false); curl_s 阅读全文
posted @ 2019-12-02 11:30 hwzzbe 阅读(2271) 评论(0) 推荐(0)