摘要: html{ -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%); 阅读全文
posted @ 2022-12-01 10:18 pengcx 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 2. 直接mysqldump 一.MYSQL的命令行模式的设置:桌面->我的电脑->属性->环境变量->新建->PATH=“;path\mysql\bin;”其中path为MYSQL的安装路径。二.简单的介绍一下命令行进入MYSQL的方法:1.C:\>mysql -h hostname -u use 阅读全文
posted @ 2022-11-21 17:05 pengcx 阅读(94) 评论(0) 推荐(0) 编辑
摘要: scp命令 来源:https://www.runoob.com/linux/linux-comm-scp.html 阅读全文
posted @ 2022-08-02 17:54 pengcx 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 在外部访问CentOS中部署应用时,需要通过防火墙管理软件,开端口,或者直接关闭防火墙进行解决(不建议)常用命令:systemctl start firewalld #启动systemctl stop firewalld #停止systemctl status firewalld #查看状态syst 阅读全文
posted @ 2022-08-02 10:36 pengcx 阅读(6739) 评论(0) 推荐(0) 编辑
摘要: 来源:https://blog.csdn.net/kelinfeng16/article/details/82632796 阅读全文
posted @ 2022-05-13 14:40 pengcx 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 在 server中加入一下代码 #跨域处理 add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With,Content-Type,language; add_he 阅读全文
posted @ 2022-04-29 11:28 pengcx 阅读(847) 评论(0) 推荐(1) 编辑
摘要: database.php 配置 'fields_strict' => false, 阅读全文
posted @ 2022-04-07 20:11 pengcx 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 1、查看nginx进程 ps -ef | grep nginx 2、yum erase nginx 3、yum install -y epel-release 4、再次安装 yum install -y nginx 5、nginx -v 6、systemctl enable nginx.servic 阅读全文
posted @ 2022-03-16 15:43 pengcx 阅读(88) 评论(0) 推荐(0) 编辑
摘要: location = / { return 404; } 阅读全文
posted @ 2022-03-09 16:59 pengcx 阅读(36) 评论(0) 推荐(0) 编辑