YII PHP Fatal error: Class 'CWebApplication' not found

YII PHP Fatal error: Class 'CWebApplication' not found

PHP Fatal error:  Class 'CWebApplication' not found in /DOMAIN/framework/YiiBase.php on line 125

我可以在我的本地主机上访问相同的内容,但不能在我的服务器上访问。 请点亮。

framework/YiiBase.php

123 public static function createApplication($class,$config=null)
124 {
125  return new $class($config);
126 }

protected/index.php

<?php

// change the following paths if necessary
$yii=dirname(__FILE__).'/../framework/yii.php';
$config=dirname(__FILE__).'/protected/config/main.php';

// remove the following lines when in production mode
defined('YII_DEBUG') or define('YII_DEBUG',true);
// specify how many levels of call stack should be shown in each log message
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);

require_once($yii);
Yii::createWebApplication($config)->run();
?>

需要写

Yii::createApplication('YourWebApplication', $config)->run(); // or standard CWebApplication