/home1/hg4mob86/public_html/extranet/yii/db/CDbConnection.php(381)
369 throw new CDbException('CDbConnection.connectionString cannot be empty.'); 370 try 371 { 372 Yii::trace('Opening DB connection','system.db.CDbConnection'); 373 $this->_pdo=$this->createPdoInstance(); 374 $this->initConnection($this->_pdo); 375 $this->_active=true; 376 } 377 catch(PDOException $e) 378 { 379 if(YII_DEBUG) 380 { 381 throw new CDbException('CDbConnection failed to open the DB connection: '. 382 $e->getMessage(),(int)$e->getCode(),$e->errorInfo); 383 } 384 else 385 { 386 Yii::log($e->getMessage(),CLogger::LEVEL_ERROR,'exception.CDbException'); 387 throw new CDbException('CDbConnection failed to open the DB connection.',(int)$e->getCode(),$e->errorInfo); 388 } 389 } 390 } 391 } 392 393 /**
| #0 |
+
–
/home1/hg4mob86/public_html/extranet/yii/db/CDbConnection.php(330): CDbConnection->open() 325 public function setActive($value) 326 { 327 if($value!=$this->_active) 328 { 329 if($value) 330 $this->open(); 331 else 332 $this->close(); 333 } 334 } 335 |
| #1 |
+
–
/home1/hg4mob86/public_html/extranet/yii/db/CDbConnection.php(308): CDbConnection->setActive(true) 303 */ 304 public function init() 305 { 306 parent::init(); 307 if($this->autoConnect) 308 $this->setActive(true); 309 } 310 311 /** 312 * Returns whether the DB connection is established. 313 * @return boolean whether the DB connection is established |
| #2 |
+
–
/home1/hg4mob86/public_html/extranet/yii/base/CModule.php(387): CDbConnection->init() 382 if(!isset($config['enabled']) || $config['enabled']) 383 { 384 Yii::trace("Loading \"$id\" application component",'system.CModule'); 385 unset($config['enabled']); 386 $component=Yii::createComponent($config); 387 $component->init(); 388 return $this->_components[$id]=$component; 389 } 390 } 391 } 392 |
| #3 |
+
–
/home1/hg4mob86/public_html/extranet/yii/base/CApplication.php(438): CModule->getComponent("db") 433 * Returns the database connection component. 434 * @return CDbConnection the database connection 435 */ 436 public function getDb() 437 { 438 return $this->getComponent('db'); 439 } 440 441 /** 442 * Returns the error handler component. 443 * @return CErrorHandler the error handler application component. |
| #4 |
+
–
/home1/hg4mob86/public_html/extranet/yii/db/ar/CActiveRecord.php(623): CApplication->getDb() 618 { 619 if(self::$db!==null) 620 return self::$db; 621 else 622 { 623 self::$db=Yii::app()->getDb(); 624 if(self::$db instanceof CDbConnection) 625 return self::$db; 626 else 627 throw new CDbException(Yii::t('yii','Active Record requires a "db" CDbConnection application component.')); 628 } |
| #5 |
+
–
/home1/hg4mob86/public_html/extranet/yii/db/ar/CActiveRecord.php(2311): CActiveRecord->getDbConnection() 2306 public function __construct($model) 2307 { 2308 $this->_model=$model; 2309 2310 $tableName=$model->tableName(); 2311 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null) 2312 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.', 2313 array('{class}'=>get_class($model),'{table}'=>$tableName))); 2314 if($table->primaryKey===null) 2315 { 2316 $table->primaryKey=$model->primaryKey(); |
| #6 |
+
–
/home1/hg4mob86/public_html/extranet/yii/db/ar/CActiveRecord.php(387): CActiveRecordMetaData->__construct(Servico) 382 if(isset(self::$_models[$className])) 383 return self::$_models[$className]; 384 else 385 { 386 $model=self::$_models[$className]=new $className(null); 387 $model->_md=new CActiveRecordMetaData($model); 388 $model->attachBehaviors($model->behaviors()); 389 return $model; 390 } 391 } 392 |
| #7 |
+
–
/home1/hg4mob86/public_html/extranet/protected/extensions/giix-components/GxActiveRecord.php(26): CActiveRecord::model("Servico") 21 * composite pk table. Usually a character. 22 */ 23 public static $pkSeparator = '-'; 24 25 public static function model($className=__CLASS__) { 26 return parent::model($className); 27 } 28 29 /** 30 * This method should be overridden to declare related pivot models for each MANY_MANY relationship. 31 * The pivot model is used by {@link saveWithRelated}. |
| #8 |
+
–
/home1/hg4mob86/public_html/extranet/protected/models/_base/BaseServico.php(29): GxActiveRecord::model("Servico") 24 abstract class BaseServico extends GxActiveRecord { 25 26 27 28 public static function model($className=__CLASS__) { 29 return parent::model($className); 30 } 31 32 public function tableName() { 33 return 'servico'; 34 } |
| #9 |
+
–
/home1/hg4mob86/public_html/extranet/protected/models/Servico.php(8): BaseServico::model("Servico") 03 Yii::import('application.models._base.BaseServico'); 04 05 class Servico extends BaseServico 06 { 07 public static function model($className=__CLASS__) { 08 return parent::model($className); 09 } 10 11 12 public function init(){ 13 |
| #10 |
+
–
/home1/hg4mob86/public_html/inicial.php(29): Servico::model() 24 <div class="servicos"> 25 <?php 26 $criteria = new CDbCriteria(); 27 $criteria->order = 'ordem asc'; 28 $criteria->addCondition( "ativo = 1" ); 29 $servicos = Servico::model()->findAll( $criteria ); 30 foreach ( $servicos as $servico ) { 31 ?> 32 <div><h2 class="serv_lista"> 33 <a href="solucao/<?=$servico->idservico?>/<?=Util::removerAcentos($servico->titulo)?>"> 34 <span class="icone"><img src="extranet/uploads/Servico/<?=$servico->icone?>" alt="<?=$servico->titulo?>"/></span> |
| #11 |
+
–
/home1/hg4mob86/public_html/RequestManager.php(121): require_once("/home1/hg4mob86/public_html/inicial.php") 116 117 $this->setRoutes($routes); 118 $return = $this->defineRoute(); 119 120 if($return['status']){ 121 require_once($return['file']); 122 exit; 123 } 124 header('location: '.$this->getBaseUrl().DIRECTORY_SEPARATOR.$this->default_route); 125 exit; 126 } |
| #12 |
+
–
/home1/hg4mob86/public_html/index.php(26): RequestManager->run(array("/solucoes" => "solucoes_page.php", "/solucao/(?P<solucao>\S+)/(?P<titulo>\S+)" => "solucoes_mostra.php", "/clientes" => "clientes_page.php", "/cases" => "cases_page.php", ...)) 21 '/index'=>'inicial.php', 22 '/inicial'=>'inicial.php', 23 '/(?P<url>\S+)'=>'inicial.php', 24 ); 25 $request_manager = new RequestManager(); 26 $request_manager->run($rotas); 27 exit; |