全部博文(107)
发布时间:2016-09-28 11:16:48
网站负责seo的同事要求,设置网站/index.html到/的301跳转(网站默认首页是index.html)。刚开始效仿不带www的域名到带www的域名的301跳转,用rewrite进行设置,会死循环。后来发现,可以用return实现: if ($request_uri = /index.html) { return 301 http://www.domain.com/; }.........【阅读全文】
发布时间:2016-09-27 17:13:28
IIS下某个php站点访问异常,提示require的文件不存在:Warning: require(app/config/constants.php) [function.require]: failed to open stream: No such file or directoryFailed opening required 'app/config/constants.php' (include_path='c:/windows/PHP526/PEAR')但实际上是存在的。此问题有两种解决方案:.........【阅读全文】
发布时间:2016-09-05 15:48:31
编译安装memcache模块时,出现以下报错:memcache.c:34:18: error: zlib.h: No such file or directory字面上的意思是,没有安装zlib。但实际上是有安装的:[root@localhost ~]# rpm -qa|grep zlibzlib-1.2.3-29.el6.x86_64尝试重新configure,并显式指定zlib的路径:./configure --enable-memcache --with-php-con.........【阅读全文】
发布时间:2016-08-12 10:39:46
执行某个php页面,返回错误:mysqli::real_connect(): Headers and client library minor version mismatch. Headers:50162 Library:50524这是由于在安装mysqli模块时,使用的API library版本与API header版本不一致所致。有个简单的解决方案:重新编译安装php,将configure选项中的--with-mysqli,即不显示指定编译使.........【阅读全文】
发布时间:2016-02-23 13:59:31
在封装php源码包时,出现以下错误提示:canonicalization unexpectedly shrank by one character这是rpm的一个BUG。当build一个包含“/”的目录时,便会出现:%build./configure --prefix=/usr/local/php54 --with-config-file-path=/usr/local/php54/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/my.........【阅读全文】