-
地震局专家再一次严正公告
-
网页禁止右键和复制
<SCRIPT LANGUAGE=javascript> function click() { alert('Forbidden') } function mdown() { if (event.button==2) {alert('Forbidden') }} function CtrlKeyDown(){ if (event.ctrlKey) {alert('Forbidden') }} document.onkeydown=CtrlKeyDown; document.onselectstart=click; document.onmousedown=mdown; </SCRIPT>
-
睡五分钟等于六钟头的方法(熬夜必看)
-
Nginx 使用 htpasswd 生成密码认证
安装 httpd-tools
yum install -y httpd-tools
htpasswd 命令需要先安装 httpd-tools
修改 nginx.conf
# xxx.cuiliang.com server { listen 80; server_name xxx.cuiliang.com; auth_basic "密码提示语"; auth_basic_user_file /usr/local/nginx/conf/htpasswd.users; location / { //... } }
使用 htpasswd 生成密码
htpasswd -b /usr/local/nginx/conf/htpasswd.users
输入密码,再次确认密码,提示成功,OK!
重启 nginx
/usr/local/nginx/sbin/nginx -s reload
重启生效
-
-
《沁园春 房》二则
-
WordPress 如何控制每页显示的条数
进入 wordpress 后台 设置 > 阅读 > 修改博客页面最多显示几篇文章 Feeds 同步最新几篇文章 在这里修改就可以了!
-
Yii Framework 应用通过 UCenter 整合 discuz 视频教程
这一讲主要讲了 Yii 应用和 discuz 通过 UCenter 实现了双向同步,有些代码写的也不是很严密,我只是给大家起个抛砖引玉的作用,大家如果有什么好的建议,欢迎讨论。提供程序源码及高清视频下载地址:
-
PHP 比较两个数组的值是否相等
function compareArray() { $arr1 = array('a', 'b', 'c', 'd'); $arr2 = array('d', 'c', 'b', 'a'); sort($arr1); sort($arr2); return $arr1 == $arr2; }
-
新的 crontab 文件在 EOF 之前缺少换行符
crontab 启动报错:
new crontab file is missing newline before EOF, can't install. Starting periodic command scheduler: cron.
编辑现有的 crontab 文件:
crontab -e
确保在文件末尾添加一个空行(换行符)。你可以直接在编辑器中将光标移到文件的最后一行,然后按 Enter 键添加一个新的空行。
保存并退出编辑器。
如果你想通过命令行方式添加换行符,可以使用如下命令:
crontab -l | sed -e '$a\' | crontab -
这个命令做了以下几件事:
crontab -l
列出当前的 crontab 条目。sed -e '$a\'
在文件末尾添加一个空行。crontab -
通过标准输入将修改后的内容重新安装到 crontab 中。
完成后,重新启动 cron 服务:
sudo service cron restart # 对于基于 Debian 的系统
或者
sudo systemctl restart crond # 对于基于 RedHat 的系统
这样应该就可以解决问题了。
文章归档
2025 年 01 月
1
2024 年 12 月
1
2024 年 11 月
1
2024 年 10 月
2
2024 年 09 月
2
2024 年 07 月
1
2024 年 06 月
1
2024 年 04 月
1
2024 年 03 月
1
2024 年 01 月
2
文章日历
2025 年 01 月 | ||||||
---|---|---|---|---|---|---|
日 | 一 | 二 | 三 | 四 | 五 | 六 |
28 | 29 | 30 | 01 | 02 | 03 | 04 |
05 | 06 | 07 | 08 | 09 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
27 | 28 | 29 | 30 | 31 | 01 | 02 |
文章标签
- Linux
- Go
- Yii
- 新浪
- CentOS
- PHP
- Git
- WSL
- Composer
- Mac
- 入职
- Bootstrap
- pyenv
- UCenter
- 厦门
- 出差
- 长沙
- 湖南卫视
- 微博
- Tengine
- YUI
- 泰国
- pecl
- 优化
- GitLab
- 迁移
- rootless
- 年会
- 生日
- Tengin
- RedHat
- Sphinx
- cygwin
- Windows
- Tmux
- Zsh
- 升级
- MySQL
- sql_mode
- Shadowsockets
- 面向对象
- HTTP
- 状态码
- grep
- unoconv
- PPT
- Nginx
- htpasswd
- golang