technazi
technazi

Reputation: 958

YII PHP Fatal error: Class 'CWebApplication' not found

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

I could access the same on my localhost but cannot access in my server. Please throw some light.

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

Upvotes: 0

Views: 1357

Answers (1)

studxxx
studxxx

Reputation: 61

need write

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

Upvotes: 1

Related Questions