YII PHP致命错误:找不到类'CWebApplication'

时间:2015-02-22 10:23:33

标签: php yii

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

我可以在我的本地主机上访问相同但无法访问我的服务器。 请稍微说清楚。

框架/ YiiBase.php

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

保护/ 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();
?>

1 个答案:

答案 0 :(得分:1)

需要写

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