CDbException

CDbConnection failed to open the DB connection: SQLSTATE[HY000] [1044] Access denied for user 'mirash32_krc'@'localhost' to database 'mirash32_krc_2016'

/home/mirash32/public_html/KRC/framework/db/CDbConnection.php(382)

370                 throw new CDbException('CDbConnection.connectionString cannot be empty.');
371             try
372             {
373                 Yii::trace('Opening DB connection','system.db.CDbConnection');
374                 $this->_pdo=$this->createPdoInstance();
375                 $this->initConnection($this->_pdo);
376                 $this->_active=true;
377             }
378             catch(PDOException $e)
379             {
380                 if(YII_DEBUG)
381                 {
382                     throw new CDbException('CDbConnection failed to open the DB connection: '.
383                         $e->getMessage(),(int)$e->getCode(),$e->errorInfo);
384                 }
385                 else
386                 {
387                     Yii::log($e->getMessage(),CLogger::LEVEL_ERROR,'exception.CDbException');
388                     throw new CDbException('CDbConnection failed to open the DB connection.',(int)$e->getCode(),$e->errorInfo);
389                 }
390             }
391         }
392     }
393 
394     /**

Stack Trace

#7
+
 /home/mirash32/public_html/KRC/protected/models/Subbanner.php(106): CActiveRecord->findAll(array("condition" => "isActive = "Y""))
101     {
102         return parent::model($className);
103     }
104         public static function getAllSubBanners() {
105         $condition = 'isActive =  "Y"';
106         $model = self::model()->findAll(array('condition' => $condition));
107         foreach ($model as $row) {
108             $array[] = $row['image'];
109         }
110                 return $array;
111     }
#8
+
 /home/mirash32/public_html/KRC/protected/controllers/front/SiteController.php(12): Subbanner::getAllSubBanners()
07      */
08     public function actionIndex() {
09         //   $model = MenuPage::model()->find('menu_id=:ID', array(':ID' =>1));
10         //    $services = MenuPage::model()->find('menu_id=:ID', array(':ID' =>2));
11         //  $this->render('index', array('model' => $model,'services'=>$services));
12         $arr_images =  Subbanner::getAllSubBanners();
13        $this->render('index',array('arr_images'=>$arr_images));
14     }
15   /*  public function actioncontactUs()
16     {
17      $this->render('contactus');
#16
+
 /home/mirash32/public_html/KRC/protected/components/WebApplicationEndBehavior.php(25): CApplication->run()
20         // Attach the changeModulePaths event handler
21         // and raise it.
22         $this->onModuleCreate = array($this, 'changeModulePaths');
23         $this->onModuleCreate(new CEvent($this->owner));
24 
25         $this->owner->run(); // Run application.
26     }
27 
28     // This event should be raised when CWebApplication
29     // or CWebModule instances are being initialized.
30     public function onModuleCreate($event)
2024-03-28 13:34:46 Apache Yii Framework/1.1.14