PHP5.5以上V9会一直报错.。运行后,文件:/caches/error_log.php
里面一直会出现这个提示:
The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead | phpcms\libs\classes\mysql.class.php | 56
error_log.php 文件会快速增加,一般上差不多要增大到几百兆甚至几G几十G。
原因是PHP5.5以上不建议甚至禁止了mysql。需要改用 mysqli。
由于phpcms9.5.9没有对phpsso进行修改。所以需要进行下面的操作:
把phpcms\libs\classes下的
db_mysqli.class.php
db_factory.class.php
复制到 phpsso_server\phpcms\libs\classes
然后修改配置文件
caches\configs\database.php
phpsso_server\caches\configs\database.php
增加port参数。type修改为mysqli
如:
‘type’ => ‘mysqli’,
‘port’ => ‘3306’,
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容