
xampp启动apache时弹出PHP Startup
查看php_error_log提示是PHP Warning: PHP Startup: in Unknown on line 0
通过搜索大概得知此问题主要是php引用扩展文件丢失导致的。
我这里报错的主要原因是系统升级等操作造成redis扩展不可以,修复它即可。
可以通过2种方式解决:
1、通过修改php.ini注释掉失败的dll引用
;extension=php_igbinary.dll
;extension=php_redis.dll
2、下载丢失的dll文件拷贝至php扩展目录中ext中
windows下php安装redis扩展可参考此文章:Redis安装及php扩展redis(windows平台)

bbPress 2.5.12简体中文语言包下载
.mo:http://bbpress.org.cn/wp-content/languages/plugins/bbpress-zh_CN.mo
.po:http://bbpress.org.cn/wp-content/languages/plugins/bbpress-zh_CN.po
BuddyPress 2.7.4 简体中文语言包下载
.mo:http://buddypress.org.cn/wp-content/languages/plugins/buddypress-zh_CN.mo
.po:http://buddypress.org.cn/wp-content/languages/plugins/buddypress-zh_CN.po

Monit是一个跨平台的用来监控Unix/linux系统(比如Linux、BSD、OSX、Solaris)的工具。
官网:https://mmonit.com/monit
文档:https://mmonit.com/monit/documentation/monit.html
注意:Monit是一个开源工具,但M/Monit是收费的。
安装
yum install monit
当然也可以下载源码安装。
当前使用版本:
# monit -V
This is Monit version 5.17.1
Built with ssl, with pam and with large files
Copyright (C) 2001-2016 Tildeslash Ltd. All Rights Reserved.
常用命令
monit -t # 配置文件检测
monit # 启动monit daemon
monit......

一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记住60~100个命令。
下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。
Workspace:工作区
Index / Stage:暂存区
Repository:仓库区(或本地仓库)
Remote:远程仓库
一、新建代码库
# 在当前目录新建一个Git代码库
$ git init
# 新建一个目录,将其初始化为Git代码库
$ git init [project-name]
# 下载一个项目和它的整个代码历史
$ git clone [url]
二、配置
Git的设置文件为.gitconfig,它可以在用户主目录下(全局配置......