CDbException

CDbCommand failed to execute the SQL statement: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'index.html' in 'where clause'. The SQL statement executed was: SELECT COUNT(*) FROM `products` `t` WHERE status=1 and company_id=index.html

/hermes/bosnaweb15a/b211/ipg.kachhuaorg/arcon5152com/core/db/CDbCommand.php(543)

531         {
532             if($this->_connection->enableProfiling)
533                 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query');
534 
535             $errorInfo=$e instanceof PDOException ? $e->errorInfo : null;
536             $message=$e->getMessage();
537             Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.',
538                 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
539 
540             if(YII_DEBUG)
541                 $message.='. The SQL statement executed was: '.$this->getText().$par;
542 
543             throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}',
544                 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo);
545         }
546     }
547 
548     /**
549      * Builds a SQL SELECT statement from the given query specification.
550      * @param array $query the query specification in name-value pairs. The following
551      * query options are supported: {@link select}, {@link distinct}, {@link from},
552      * {@link where}, {@link join}, {@link group}, {@link having}, {@link order},
553      * {@link limit}, {@link offset} and {@link union}.
554      * @throws CDbException if "from" key is not present in given query parameter
555      * @return string the SQL statement

Stack Trace

#10
+
 /hermes/bosnaweb15a/b211/ipg.kachhuaorg/arcon5152com/protected/modules/catalog/views/products/index.php(39): CBaseController->widget("zii.widgets.CListView", array("dataProvider" => CActiveDataProvider, "itemView" => "_view"))
34          <style>.pager{    clear: both;}</style>
35      <?php
36      
37        $this->widget('zii.widgets.CListView', array(
38      'dataProvider'=>$dataProvider,
39   'itemView'=>'_view', )); 
40   
41         ?>
42         
43         </div>        
44         </div>        
#15
+
 /hermes/bosnaweb15a/b211/ipg.kachhuaorg/arcon5152com/protected/modules/catalog/controllers/ProductsController.php(193): CController->render("index", array("dataProvider" => CActiveDataProvider))
188         if((isset($_GET['category'])) and (!$_GET['category']==null)){
189                 $dataProvider=new CActiveDataProvider('Products',array('criteria'=>array(
190                 'condition'=>'status=1 and company_id='.$_GET['category'])));
191                 $this->render('index',array(
192                     'dataProvider'=>$dataProvider,
193                 ));
194         }else{
195                 $dataProvider=new CActiveDataProvider('Products',array('criteria'=>array(
196                 'condition'=>'status=1')));
197                 $this->render('index',array(
198                     'dataProvider'=>$dataProvider,
#28
+
 /hermes/bosnaweb15a/b211/ipg.kachhuaorg/arcon5152com/index.php(13): CApplication->run()
08 defined('YII_DEBUG') or define('YII_DEBUG',true);
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 
12 require_once($yii);
13 Yii::createWebApplication($config)->run();
2019-01-19 02:59:27 Apache/2 Yii Framework/1.1.14