电脑技术学习

phpwind 整合出现SQL错误提示:SELECT command denied to user ''@'localhost' for table 'pw_members'

dn001

帝国cms系统整合PHPwind以后,在我注册的时候,跳到Phpwind 注册,注册完毕,出现错误提示:

SELECT command denied to user ''@'localhost' for table 'pw_members'

原因是帝国CMS,不支持mysqli,解决方法是:

修改phpwind配置文件:data/sql_config.php
将$database = 'mysqli';修改为$database = 'mysql';

;