上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: python使用正则表达式之前需要先倒入re模块 import re 可选标志位 re.A ASCII,使得 \w,\W,\b,\B,\s 和 \S 只匹配 ASCII 字符,而不匹配完整的 Unicode 字符。这个标志仅对 Unicode 模式有意义,并忽略字节模式。 re.I IGNORECA 阅读全文
posted @ 2019-08-12 16:58 ForLivetoLearn 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: python使用代理的方法有两种 1. 2. 示例代码: 阅读全文
posted @ 2019-08-06 14:35 ForLivetoLearn 阅读(10480) 评论(0) 推荐(0) 编辑
摘要: 添加头部信息有两种方法 1.通过添加urllib.request.Request中的headers参数 2.通过urllib.request.Request的add_header方法添加 360翻译示例代码: 阅读全文
posted @ 2019-08-06 11:35 ForLivetoLearn 阅读(8740) 评论(0) 推荐(0) 编辑
摘要: 老男孩的https://www.jianshu.com/p/2f93bb771469 Redis配置文件 #masterauth aaaa #slave连上master时用的密码 #requirepass aaaa #连上数据库后,使用auth认证密码后才能使用 bind 192.168.1.236 阅读全文
posted @ 2019-04-18 16:54 ForLivetoLearn 阅读(184) 评论(0) 推荐(0) 编辑
摘要: docker安装 1.安装docker所需的软件 yum install -y yum-utils device-mapper-persistent-data lvm2 2.添加docker源 yum-config-manager --add-repo http://mirrors.aliyun.c 阅读全文
posted @ 2019-02-14 21:07 ForLivetoLearn 阅读(239) 评论(0) 推荐(0) 编辑
摘要: LVS调度算法参考 RR:轮询 WRR :加权轮询 DH :目标地址哈希 SH:源地址hash LC:最少连接 WLC:加权最少连接,默认 SED:最少期望延迟 NQ:从不排队调度方法 LBLC:基于本地的最少连接 LBLCR:带复制的基于本地的最少连接 ipvsadm命令参考 ipvsadm -A 阅读全文
posted @ 2018-11-22 22:04 ForLivetoLearn 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 修改主目录wordpress下的wp-config.php文件,在最结尾加上 更改wp-content的权限为777 阅读全文
posted @ 2018-11-08 14:48 ForLivetoLearn 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: 首先在wordpress内添加SMTP协议的插件,我这里用的是WP Mail SMTP 配置如下 配置完成之后测试一下,一定要测试能否发邮件 阅读全文
posted @ 2018-11-06 10:42 ForLivetoLearn 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 在网上找了好多个博客,一个比一个不要脸,要更改的是两个文件,最后都抄成一个文件了。 原文链接https://www.cnblogs.com/liudecai/p/6474611.html 我是按照这个修改成功的。 新注册用户 重置密码 阅读全文
posted @ 2018-11-06 10:22 ForLivetoLearn 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 可能是google字体的原因 1.找到wordpress目录下wp-includes/script-loader.php这个文件 2.查找open_sans_font_url这个字段,把后面的fonts.google.com改成fonts.useso.com 阅读全文
posted @ 2018-11-05 17:03 ForLivetoLearn 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页