当我使用FuelPhp框架时,我遇到了这个问题。该项目最初并非由我开发。 这是代码:
foreach (array(
'reset.css',
'jquery-ui-1.8.15.custom.css',
'imgareaselect-default.css',
'select2.css',
'colorpick.css',
'master.css'
) as $c) { Casset::css($c); }
错误日志
ErrorException [Error]:找不到类'Casset' APPPATH / classesPKGPATH / controllerPKGPATH / base.php @ line 238
回溯
警告:include(\ casset \ bootstrap.php)[function.include]:无法打开流:COREPATH / classesPKGPATH / fuel.php @ line 403中没有这样的文件或目录 警告:include()[function.include]:无法在COREPATH / classesPKGPATH / fuel.php @ line 403中打开'\ casset \ bootstrap.php'以包含(include_path ='。; C:\ php \ pear')
提前谢谢!
答案 0 :(得分:1)
阅读您的错误似乎您的应用程序无法找到 APPPATH 和 PKGPATH 。它们应该在 /public/index.php 文件中定义。
这是我的配置:
/**
* Website document root
*/
define('DOCROOT', __DIR__.DIRECTORY_SEPARATOR);
/**
* Path to the application directory.
*/
define('APPPATH', realpath(__DIR__.'/../fuel/app/').DIRECTORY_SEPARATOR);
/**
* Path to the default packages directory.
*/
define('PKGPATH', realpath(__DIR__.'/../fuel/packages/').DIRECTORY_SEPARATOR);