我试图在我的install.php文件中使用Kohana类,该文件位于根目录中,但是当我尝试使用它时,我看到了:
install.php了
require_once ("system/classes/Kohana.php");
$kohana = new Kohana();
// out: Fatal error: Class 'Kohana_Core' not found in \system\classes\Kohana.php on line 3
答案 0 :(得分:0)
我对你为什么要使用这个文件感到困惑?在确认您已按原样设置Kohana后,必须重命名或删除文件install.php。
我不知道是否是导致特定错误的原因,但你仍然应该避免使用install.php。请阅读文档。
答案 1 :(得分:0)
下载后,您是否从正常的Kohana结构中移动了任何文件? install.php文件是否与Kohana版本的/ system /文件夹位于同一位置,或者您的意思是install.php在Kohana根目录之外?
你打算用install.php做什么?您是否为不同的检查添加了自己的代码?