win7 ShuipFCMS 配置 及问题

随风下载地址: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:AppServphp5)两个文件到 C:windowssystem32 目录

(Win7 64位系统)

如上面,配置重启Apache后,不支持curl_init()函数,则执行:

1.  拷贝php安装目录下,libeay32.dll、ssleay32.dll 到SysWOW64目录(例 C:Windows.old.000Windows),而不是 C:windowssystem32 目录。

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

 四、exception 'PDOException' with message 'could not find driver'

需要给你的PHP加一个PDO扩展
打开PHP.INI 把 extension=php_pdo_mysql.dll  前面的分号去掉 重启APACHE 

原文地址:https://www.cnblogs.com/wuling129/p/4904661.html