当前位置: 首页 >> Tag标签为 'php'

Zimbra LDAP为其他应用提供验证服务之PHP版本

代码从php手册直接拿出来使用的,只是关于BaseDN和个别参数的设置稍作修改而已:

Read the rest of this entry »

如何快速将CentOS5 PHP版本升级至5.2

升级软件,最好是可以直接yum,实在不行有RPM包也可以,在不行就编译源代码了,幸好在CentOS的测试仓库里面有5.2版本的php,所以增加/etc/yum.repos.d/CentOS-Testing.repo文件,内容为:

 Read the rest of this entry »

几个PHP关于URL和eMail分析方面的类

http://www.phpclasses.org/browse/package/3169.html

http://www.phpclasses.org/browse/package/4865.html

http://www.phpclasses.org/browse/package/2816.html

http://phpclasses.controloye.com/browse/package/2352.html

http://phpclasses.controloye.com/browse/package/3169.html

http://phpclasses.controloye.com/browse/package/347.html

解决:Can’t open file ‘/root/.subversion/servers’: Permission denied错误

This problem occurs as an effect of apache beeing run as root.
Though commands are still issued by the apache 'http' user, the home
directory are for some reason still '/root'.
 Read the rest of this entry »

Nginx中PHP+FastCGI配置技巧

Nginx中通过FastCGI运行php的配置

location ~ .php$ {
fastcgi_pass   127.0.0.1:8888;
fastcgi_index  index.php;
root /var/www/html;
include fastcgi.conf;
}

Read the rest of this entry »