上一页 1 2 3 4 5 6 7 ··· 34 下一页
  2023年8月15日
摘要: maste.sh#!/bin/bash # 设置Git仓库URL和本地目录 repo_url="git@47.120.38.53:yangxiongwei/guyu_admin.git" local_dir="/www/wwwroot/fuzhuangzl/" # 检查本地目录是否存在 if [ - 阅读全文
posted @ 2023-08-15 14:06 kevin_yang123 阅读(10) 评论(0) 推荐(0) 编辑
  2023年8月2日
摘要: ALTER TABLE `lb_luxury` ADD `buy_status` tinyint(1) DEFAULT '0' COMMENT '0未卖出 1已购买 2寄售中', 阅读全文
posted @ 2023-08-02 18:40 kevin_yang123 阅读(6) 评论(0) 推荐(0) 编辑
  2023年7月19日
摘要: https://chat.waixingyun.cn/#/chat/gpt/1002 https://chat.pinkfong.cn/ http://www.tdchat.pro/ https://nav4ai.net/chatgptweb996 https://aixforce.app/app/ 阅读全文
posted @ 2023-07-19 13:32 kevin_yang123 阅读(549) 评论(0) 推荐(0) 编辑
  2023年7月12日
摘要: 阅读全文
posted @ 2023-07-12 11:45 kevin_yang123 阅读(237) 评论(0) 推荐(0) 编辑
摘要: netstat -tuln 然后查看 服务器的开发端口,这个服务值运营商,如用的阿里云或腾讯云,看是否开发对应端口。 安全组中加入开放端口号 开发防火墙 开放防火墙指定端口; firewall-cmd --zone=public --add-port=8888/tcp --permanent # – 阅读全文
posted @ 2023-07-12 10:25 kevin_yang123 阅读(219) 评论(0) 推荐(0) 编辑
摘要: # 至少需要一个 Hyperf 节点,多个配置多行 upstream hyperf_websocket { # 设置负载均衡模式为 IP Hash 算法模式,这样不同的客户端每次请求都会与同一节点进行交互 ip_hash; # Hyperf WebSocket Server 的 IP 及 端口 se 阅读全文
posted @ 2023-07-12 09:56 kevin_yang123 阅读(38) 评论(0) 推荐(0) 编辑
  2023年7月1日
摘要: 1.查看版本号: sudo gitlab-runner --verison 2.降低gitlab-runner版本。卸载gitlab-runner版本,然后安装低版本的gitlab-runner 查看gitlab-runner版本操作命令 gitlab-runner 命令 gitlab-runner 阅读全文
posted @ 2023-07-01 10:18 kevin_yang123 阅读(1049) 评论(0) 推荐(0) 编辑
  2023年6月21日
摘要: 钩子使用的两种方法 监听钩子行为 Hook::listen('钩子名称','参数','是否只有一次有效返回值'); 还有给行为绑定钩子 Hook::add('app_init','app\\index\\behavior\\CheckLang'); 第一种:直接执行行为 // 执行 app\inde 阅读全文
posted @ 2023-06-21 14:37 kevin_yang123 阅读(137) 评论(0) 推荐(0) 编辑
  2023年5月15日
摘要: 详细教程:https://deerchao.cn/tutorials/regex/regex.htm 代码 说明 . 匹配除换行符以外的任意字符 \w 匹配字母或数字或下划线或汉字 \s 匹配任意的空白符 \d 匹配数字 \b 匹配单词的开始或结束 ^ 匹配字符串的开始 $ 匹配字符串的结束 ^\d 阅读全文
posted @ 2023-05-15 14:16 kevin_yang123 阅读(10) 评论(0) 推荐(0) 编辑
  2023年5月8日
摘要: 项目所需的PHP版本与您安装的不同。您可以在composer.json的require部分更改版本,也可以安装PHP8.0。您也可以运行composer install --ignore-platform-reqs来忽略错误。 composer install --ignore-platform-r 阅读全文
posted @ 2023-05-08 15:15 kevin_yang123 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 34 下一页