2-27 9,872 views
阅读全文 0
github : https://github.com/barryvdh/laravel-debugbar
v3的注意事项:现在通过要求包启用Debugbar,但默认情况下仍需要APP_DEBUG = true!
对于Laravel <5.5,请使用2.4分支!
这是一个将PHP Debug Bar与Laravel 5 集成的软件包。它...
2-27 3,949 views
github : https://github.com/barryvdh/laravel-debugbar
v3的注意事项:现在通过要求包启用Debugbar,但默认情况下仍需要APP_DEBUG...
python paramiko SFTP文档地址: http://docs.paramiko.org/en/2.4/api/sftp.html
import paramiko
host = "THEHOST.com" #hard-coded
port = 22
transport = paramiko.Transport((host, port))
password = "THEPASSWORD"...
11-30 3,222 views
python paramiko SFTP文档地址: http://docs.paramiko.org/en/2.4/api/sftp.html
import paramiko
host = "THEHOST.com" #...
1.首先检查 你的网站根目录的权限是不是 775, 还有所有者必须是root:root,子目录的权限所有者是ftp用户
2.出现此种情况的一般是当你上传一个很大的文件突然中断引起的,你可以尝试重启SFTP
命令
~ sudo systemctl stop sshd
~ sudo /usr/sbin/sshd -d
~ ctrl + c
~...
11-27 3,556 views
阅读全文 0
jenkins
重启:sudo systemctl restart jenkins
查看状态:sudo systemctl statusjenkins
关闭:sudo systemctl stop jenkins
启用不同的端口启动jenkins :sudo java -jar /usr/lib/jenkins/jenkins.war –httpPort=8081
jenkins 安装时注意事项
启动jenkin...
11-26 2,860 views
jenkins
重启:sudo systemctl restart jenkins
查看状态:sudo systemctl statusjenkins
关闭:sudo systemctl stop jenkins
启用不同的端口启动jenkins ...
对于新手来说,linux的selinux困扰了一大批学员,开启后,导致文件权限修改不了等问题,下面就是关闭设置setlinux的方法
查看SELinux状态:
1、/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态
SELinux status: enabled
...
11-11 2,452 views
阅读全文 0
https链接在微信下打开白屏,在IOS下打开正常,最近碰到这个奇葩的问题。此问题是缺少证书链导致的。
解决方法
登陆网站:https://myssl.com
输入自己的网址,点击检测。
修复文档地址:https://blog.myssl.com/faq-miss-ca-certificate/
按照文档的操作步骤,顺...
11-02 4,127 views
阅读全文 0
连接方法参考 : Linux环境PHP5.5以上连接SqlServer2008【全网最经典无错版】
地址:https://blog.csdn.net/21aspnet/article/details/47451253
经测试,可行!
php pdo 方式连接数据库 查询 数据
地址:http://www.youhutong.com/index.php/article/index/144.ht...
10-23 2,382 views
连接方法参考 : Linux环境PHP5.5以上连接SqlServer2008【全网最经典无错版】
地址:https://blog.csdn.net/21aspnet/article/details/47451253
经测试,可...
Ningx 80 端口 配置文件
server {
#监听端口
listen 80;
#域名
server_name www.abc.com abc.com;
#首页默认index.html文件
index index.html index.htm index.php;
#项目路径
root /apps/www/html;
#访问不带www的,...
10-18 2,441 views
Ningx 80 端口 配置文件
server {
#监听端口
listen 80;
#域名
server_name www.abc.com abc.com;
#首页默认index.html文件
...