当前位置: 首页 > 工具软件 > StartBBS > 使用案例 >

安装StartBBS 遇到的问题

狄冠宇
2023-12-01

(1)Call to undefined function mb_detect_encoding() 错误

打开 php.ini 文件,将下面的分号 ; 去掉,重新启动apache

  ;extension=php_mbstring.dll 

(2)Only variable references should be returned by reference

找到bbs/system/core/Common.php 文件并打开,定位到 257 行,将

return $_config[0] =& $config;

改成

$_config[0] =& $config;
return $_config[0];



 类似资料: