管理员的version里创建个版本才可以用好吧= =
Project settings里的version加个版本即可[……]
Make sure that you run ‘/usr/local/php/bin/phpize’ in the top level source directory of the module 解决办法
这报错我是编译安装php-openssl的openssl.so的时候出现的,解决办法很简单,在目录里执行:
cp ./config0.m4 ./config.m4然后再继续编译模块即可。
方法整理自:https://www.cnblogs.com/ttiandeng/p/581900[……]
那些有用的日常用品
Linux Shell Bash判断文件或文件夹是否存在
以下代码完整转自:shell bash判断文件或文件夹是否存在
#shell判断文件夹是否存在
#如果文件夹不存在,创建文件夹
if [ ! -d "/myfolder" ]; then mkdir /myfolderfi#shell判断文件,目录是否存在或者具有权限fo[......]如何升级rpm包
SourceTree Mac OS do not remember password solution
Red Hat 5.5 Apache 2.2.19 PHP-FPM 5.2.17 RPM安装
解压后,上传全部rpm文件到随便什么目录,命令行root账户进入该目录,然后顺序执行压缩包里的command.txt里的指令。
之后即可安装成功Apache 2.2.19 PHP-FPM 5.2.17。
其中php的驱动包含:
bz2
calendarctypecurldatedbased[......]Red Hat 5.5 Apache 2.2.19编译安装
tar zxvf httpd-2.2.19.tar.gz
cd httpd-2.2.19
./configure --prefix=/usr/local/apachemakemake install/usr/local/apache/bin/apachectl -v[......]理解Go语言的nil
以下内容摘录自:https://www.jianshu.com/p/dd80f6be7969
if err != nil {
// do something....
}当出现不等于nil的时候,说明出现某些错误了,需要我们对这个错误进行一些处理,而如果等于nil说明运行正常。那什[……]
Linux core dump文件开关
ulimit -c0说明core dump关闭。 unlimited说明core dump已打开。
ulimit -c unlimited开启core dump。
ulimit -c 0关闭core dump[……]