上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
摘要: 勾上前两个选项就可以了 阅读全文
posted @ 2019-07-12 16:24 奥雷连诺 阅读(1260) 评论(0) 推荐(0) 编辑
摘要: class PController extends Controller{ public function Log() { echo $_SERVER["HTTP_HOST"] . __SELF__; }} 阅读全文
posted @ 2019-05-29 15:00 奥雷连诺 阅读(728) 评论(0) 推荐(0) 编辑
摘要: 如果某个请求url出现这种问题 只能排除法看出问题 1. 使用你的curl http代码请求别的网站试试 2. 相同的代码在别的电脑上,别的服务器上试试 3. ping 一下你请求的url的host, 多ping ping 基本素养别忘。 试了三个小时最后发现是个原因,根本ping不通 阅读全文
posted @ 2019-05-24 22:30 奥雷连诺 阅读(3838) 评论(0) 推荐(0) 编辑
摘要: 如果在请求中返回的内容包含 & 请使用htmlspecialchars_decode 搞一下,去掉。 这个纯粹为自己怕到时又找不到这个方法 阅读全文
posted @ 2019-05-24 18:22 奥雷连诺 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: pm.max_children=500pm.start_servers=280pm.min_spare_servers=50pm.max_spare_servers=500 把max_spare_servers设置为200后,服务器挂了一直502 #,保证空闲进程数最大值,如果空闲进程大于此值,此进 阅读全文
posted @ 2019-03-12 10:52 奥雷连诺 阅读(2348) 评论(0) 推荐(0) 编辑
摘要: create table abc(A int,B int) Select A,count(B) as total from ABC group by A Select A,count(B) as total1 from ABC where B > 30 group by A Select A,cou 阅读全文
posted @ 2019-02-23 22:42 奥雷连诺 阅读(15554) 评论(0) 推荐(0) 编辑
摘要: 首先查看是开启21端口 选择ECS-->安全组-->配置规则 增加21端口配置 配置如下 阅读全文
posted @ 2019-02-01 17:07 奥雷连诺 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: 第一步 第二步,选择更换系统盘 第三步 选择镜像,a56爆大奖在线娱乐选择了自己分享的共享镜像。 你可以选择自己的自定义镜像或者其他。 因为a56爆大奖在线娱乐知道自己镜像的密码,所有不需要重设密码,你选择镜像在不知道密码的时候,最好重设密码,免得镜像导入进去了,不知道密码就尴尬了 阅读全文
posted @ 2019-02-01 15:50 奥雷连诺 阅读(1284) 评论(0) 推荐(0) 编辑
摘要: 使用的是阿里云centOS.74 第一步: 配置urlpath 重启nginx systemctl restart nginx 第二步 Application/Common/Common/Conf/config.php 测试下是否可以,如果还不行 在nginx下的配置文件xxxx.conf里继续增加 阅读全文
posted @ 2019-01-06 15:20 奥雷连诺 阅读(920) 评论(0) 推荐(0) 编辑
摘要: 菜单栏-->站点-->站点管理器 >左边视图FTP >列表命令选择 STAT -L 阅读全文
posted @ 2018-12-17 14:39 奥雷连诺 阅读(589) 评论(0) 推荐(0) 编辑
摘要: $orderTPLMessage = (object)array( 'touser' => '这里填open id', 'template_id' => 'oQDOldy7q6CdaYw2e3J23FOvltiUPodMHviutea5Ze', 'url' => 'http://vx.mayifanx... 阅读全文
posted @ 2018-11-13 17:48 奥雷连诺 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 一开始创建就有一个home模块再创建一个Data模块 定时任务在/Application/Common/Conf/crons.php中,这里不讲怎么创建定时任务。 Data模块的配置文件路径如下/Application/Data/Conf/config.php 定时任务中的逻辑是会调用Data模块的 阅读全文
posted @ 2018-11-12 09:47 奥雷连诺 阅读(491) 评论(0) 推荐(0) 编辑
摘要: //params 是json对象private function HttpPost($url, $params){$data = http_build_query($params); //写成 $data = json_encode($params); 提示返回code是200,但是接收端收不到数据 阅读全文
posted @ 2018-10-27 20:17 奥雷连诺 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: new 一下构造函数就出错了,为什么。。。Uncaught TypeError: Cannot read property 'addEventListener' of nullat r (clipboard.min.js:7)at r (clipboard.min.js:7) 为什么会出现这种事情? 阅读全文
posted @ 2018-10-17 21:32 奥雷连诺 阅读(2849) 评论(0) 推荐(0) 编辑
摘要: 使用jquery $('#obj').offset( {top:300, left: 600}); 如果设置offset之前是隐藏的,那么你设置新的offset之后就不会是指定的位置,而且会越飞越远,很奇怪,一度会怀疑offset是什么意思, 一定要保证对象在设置位置之前是可见的。 阅读全文
posted @ 2018-10-17 21:28 奥雷连诺 阅读(239) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页