Feb
3
今天在测试网站的某个功能时,明明使用了php_admin_value限制了函数的使用。通过phpinfo和ini_get得到的值已经变成我配置的值了。可是限制的函数还是可以用。
php_admin_value disable_functions ini_alert
结果发现这是php留给大家的一个坑:“看到的不一定是真实的”。
答案在这里:http://php.net/manual/zh/configuration.changes.php
原来php_admin_value只能修改 PHP_INI_ALL 或 PHP_INI_PERDIR 类型的配置变量。
刚好 disbale_functions 不属性这两个类型,而且只能在php.ini里修改。
详细查看http://www.php.net/manual/zh/ini.list.php
php_admin_value disable_functions ini_alert
结果发现这是php留给大家的一个坑:“看到的不一定是真实的”。
答案在这里:http://php.net/manual/zh/configuration.changes.php
原来php_admin_value只能修改 PHP_INI_ALL 或 PHP_INI_PERDIR 类型的配置变量。
刚好 disbale_functions 不属性这两个类型,而且只能在php.ini里修改。
详细查看http://www.php.net/manual/zh/ini.list.php
Dec
22
1、查看防火墙状态
[root@localhost ~]# service iptables status<回车>
2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口
终端上输入 vim /etc/sysconfig/iptables
可能 /etc/sysconfig/iptables 会不存在.自己创建也可以
[root@localhost ~]# service iptables status<回车>
2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口
终端上输入 vim /etc/sysconfig/iptables
可能 /etc/sysconfig/iptables 会不存在.自己创建也可以
Aug
3
有些时候提交了内容后,对于备注感觉不是写得太好.需要修改备注.但系Svn 的服务默认没有开启该功能.如果使用TortoiseSVN 尝试修改备注(在show log的备注栏中右键就可以看到编辑的功能)可能会出现以下错误:
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
解决的方法如下:
在Unix/Linux平台上,在库的hooks目录下,复制pre-revprop-change.tmpl成pre-revprop-change。
cp pre-revprop-change.tmpl pre-revprop-change
Repository has not been enabled to accept revision propchanges;
ask the administrator to create a pre-revprop-change hook
解决的方法如下:
在Unix/Linux平台上,在库的hooks目录下,复制pre-revprop-change.tmpl成pre-revprop-change。
cp pre-revprop-change.tmpl pre-revprop-change
Mar
23
sphinx的搜索效率和结果都让人觉得很满意.所以我推荐做站内搜索的朋友可以使用sphinx来作为后台的搜索服务.
下载安装文件可以到http://sphinxsearch.com/downloads.html选择你合适版本的安装文件.下面使用源码安装.
wget http://sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz
tar zxvf ./sphinx-0.9.9.tar.gz
cd /sphinx-0.9.9/
./configure --prefix=/usr/local/sphinx/
make
make install
下载安装文件可以到http://sphinxsearch.com/downloads.html选择你合适版本的安装文件.下面使用源码安装.
wget http://sphinxsearch.com/downloads/sphinx-0.9.9.tar.gz
tar zxvf ./sphinx-0.9.9.tar.gz
cd /sphinx-0.9.9/
./configure --prefix=/usr/local/sphinx/
make
make install