随笔分类 - PHP
window+Apache+php+mysql注意事项
摘要:如果要再windows下搭建php环境需要到以下网址 http://windows.php.net/download/ 下载php安装软件,VC6 是由Visual Studio 6 编译,vc9版本是visual c++ 2008编译的版本,但目前apache.org发布的在window上运行的版本都是由visual studio 6编译的所以如果需要使用高版本的apache就需要到ttp://...
阅读全文
安装Ecshop首页出现报错:Only variables should be passed by referen
摘要:出现下面这就话:Strict Standards: Only variables should be passed by reference in E:\Tools\ECShop_V2.7.3_UTF8_release1106\upload\includes\cls_template.phpon line 418第418行:$tag_sel = array_shift(explode(' ', $tag));解决办法 15.3以上版本的问题,应该也和配置有关 只要418行把这一句拆成两句就没有问题了 $tag_sel = array_shift(explode('
阅读全文
IIS7 配置 PHP 5.x(cgi方式)
摘要:1、确定iis7应用程序开发功能中的CGI功能开启,如图1 2、安装PHP Manager模块 IIS 7.5 新增了PHP 扩展模块,下载地址:http://phpmanager.codeplex.com/releases/view/69115。选择相应的系统版本,本人电脑是x64,所以下载: PHP Manager 1.2 for IIS 7 – x64,如图2 3、安装PHPMana...
阅读全文