CDbException

CDbConnection failed to open the DB connection: SQLSTATE[HY000] [1045] Access denied for user 'ua2_helm'@'91.206.200.37' (using password: YES)

/home/ua2/makesocial.net/www/demo/protected/components/WebApplication.php(42)

30 
31     /**
32      * Inits the webapplication
33      *
34      * Also start interceptor to add event support
35      */
36     protected function init()
37     {
38 
39         parent::init();
40 
41         $this->interceptor->start();
42         $this->moduleManager->start();
43 
44         $this->interceptor->intercept($this);
45 
46         if ($this->hasEventHandler('onInit'))
47             $this->onInit(new CEvent($this));
48     }
49 
50     /**
51      * This event is raised after the init is executed.
52      * @param CEvent $event the event parameter
53      */
54     public function onInit($event)

Stack Trace

#7
+
 /home/ua2/makesocial.net/www/demo/protected/components/ModuleManager.php(64): CActiveRecord->findAll()
59             $cacheId = "enabledModules";
60             $cacheValue = Yii::app()->cache->get($cacheId);
61 
62             if ($cacheValue === false || !is_array($cacheValue)) {
63 
64                 foreach (ModuleEnabled::model()->findAll() as $em) {
65                     $this->enabledModules[] = $em->module_id;
66                 }
67 
68                 Yii::app()->cache->set($cacheId, $this->enabledModules, HSetting::Get('expireTime', 'cache'));
69             } else {
#10
+
 /home/ua2/makesocial.net/www/demo/protected/components/WebApplication.php(42): CModule->__get("moduleManager")
37     {
38 
39         parent::init();
40 
41         $this->interceptor->start();
42         $this->moduleManager->start();
43 
44         $this->interceptor->intercept($this);
45 
46         if ($this->hasEventHandler('onInit'))
47             $this->onInit(new CEvent($this));
#13
+
 /home/ua2/makesocial.net/www/demo/index.php(32): YiiBase::createApplication("WebApplication", "/home/ua2/makesocial.net/www/demo/protected/config/main.php")
27 ini_set('error_reporting', E_ALL);
28 
29 require_once($yii);
30 require_once($appClass);
31 
32 $app = Yii::createApplication('WebApplication', $config);
33 
34 Yii::import('application.vendors.*');
35 EZendAutoloader::$prefixes = array('Zend', 'Custom');
36 Yii::import("ext.yiiext.components.zendAutoloader.EZendAutoloader", true);
37 Yii::registerAutoloader(array("EZendAutoloader", "loadClass"), true);
2024-03-28 20:26:24 Apache Yii Framework/1.1.15