随风下载地址:http://www.shuipfcms.com/download.shtml
碰到问题:
一、mb_strlen 函数不支持
到php.ini 开启
;extension=php_mbstring.dll
改成
extension=php_mbstring.dll
二、函数 curl_init 不支持
1、修改php.ini,将 ;extension=php_curl.dll前面的分号去掉
2、拷贝 libeay32.dll、ssleay32.dll (例 C:\AppServ\php5\)两个文件到 C:\windows\system32 目录
(Win7 64位系统)
如上面,配置重启Apache后,不支持curl_init()函数,则执行:
1. 拷贝php安装目录下,libeay32.dll、ssleay32.dll 到SysWOW64目录(例 C:\Windows.old.000\Windows),而不是 C:\windows\system32 目录。
2. 拷贝php/ext目录下, php_curl.dll 到 SysWOW64 目录;
在LoadModule之后添加LoadFile配置
##begin fixed curl LoadFile "c:/web/php/ssleay32.dll" LoadFile "c:/web/php/libeay32.dll" ##end fixed
3. 重启 Apache
问题没有解决
三、php Warning: phpinfo(): It is not safe to rely on the system‘s timezone settings.
php.int 设置
[Date] ; Defines the default timezone used by the date functions ; http://php.net/date.timezone date.timezone = PRC
原文:http://www.cnblogs.com/wuling129/p/4904661.html