我正在尝试安装 codeigniter 篝火。单击创建用户名屏幕上的安装按钮后,需要一些时间,然后加载此页面。我看了一些关于如何安装 bonfire 的教程,所以我知道这不是我应该看到的。
无论如何,我将 RewriteBase 更新为 /bonfire/ 如它所说..现在当我尝试转到 localhost/bonfire/index.php 时出现此错误
解析错误:语法错误,意外的“产量”(T_YIELD),在第 305 行的 /opt/lampp/htdocs/bonfire/bonfire/application/libraries/template.php 中需要标识符(T_STRING)
这是第 305 行的代码
public static function yield()
{
$output = '';
if (self::$debug) { echo 'Current View = '. self::$current_view; }
self::load_view(self::$current_view, NULL, self::$ci->router->class .'/'. self::$ci->router->method, FALSE, $output);
Events::trigger('after_page_render', $output);
return $output;
}//end yield()
我在篝火论坛上找到了这个链接,解释了这个错误。 篝火论坛链接
它说要使用 PHP 5.4,这就是我正在使用的。我的操作系统是 Linux Zorin,我使用的是 Lampp,所以我不确定这是否是权限问题。
提前谢谢,如果您需要更多信息,请告诉我。