- FICHEIRO: /home/sopequeninos/library/Zend/Db/Statement/Pdo.php
- LINHA: 235
- MENSAGEM: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'goweb.pt' in 'where clause', query was: SELECT id AS id, marca_id, modelo_id FROM catalogo_produto_pt WHERE (categoria_id=goweb.pt OR categoria_id_2=goweb.pt OR categoria_id_3=goweb.pt OR categoria_id_4=goweb.pt) AND cor_id=13 AND activo=1
- 231. }
- 232. } catch (PDOException $e) {
- 233. require_once 'Zend/Db/Statement/Exception.php';
- 234. $message = sprintf('%s, query was: %s', $e->getMessage(), $this->_stmt->queryString);
- 235. throw new Zend_Db_Statement_Exception($message, (int) $e->getCode(), $e);
- 236. }
- 237. }
- 238.
- 239. /**
- 240. * Fetches a row from the result set.
- FICHEIRO: /home/sopequeninos/library/Zend/Db/Statement.php
- LINHA: 303
- 299. /*
- 300. * Simple case - no query profiler to manage.
- 301. */
- 302. if ($this->_queryId === null) {
- 303. return $this->_execute($params);
- 304. }
- 305.
- 306. /*
- 307. * Do the same thing, but with query profiler
- 308. * management before and after the execute.
- FICHEIRO: /home/sopequeninos/library/Zend/Db/Adapter/Abstract.php
- LINHA: 480
- 476. }
- 477.
- 478. // prepare and execute the statement with profiling
- 479. $stmt = $this->prepare($sql);
- 480. $stmt->execute($bind);
- 481.
- 482. // return the results embedded in the prepared statement object
- 483. $stmt->setFetchMode($this->_fetchMode);
- 484. return $stmt;
- 485. }
- FICHEIRO: /home/sopequeninos/library/Zend/Db/Adapter/Pdo/Abstract.php
- LINHA: 238
- 234. }
- 235. }
- 236.
- 237. try {
- 238. return parent::query($sql, $bind);
- 239. } catch (PDOException $e) {
- 240. /**
- 241. * @see Zend_Db_Statement_Exception
- 242. */
- 243. require_once 'Zend/Db/Statement/Exception.php';
- FICHEIRO: /home/sopequeninos/library/Zend/Db/Adapter/Abstract.php
- LINHA: 737
- 733. {
- 734. if ($fetchMode === null) {
- 735. $fetchMode = $this->_fetchMode;
- 736. }
- 737. $stmt = $this->query($sql, $bind);
- 738. $result = $stmt->fetchAll($fetchMode);
- 739. return $result;
- 740. }
- 741.
- 742. /**
- FICHEIRO: /home/sopequeninos/application/Catalogo/Controller.php
- LINHA: 236
- 232. } else {
- 233. $sql = "SELECT max(id) AS id, marca_id, modelo_id FROM ".$this->_produtoModel->getTableName()." WHERE (categoria_id=".$categoriaId." OR categoria_id_2=".$categoriaId." OR categoria_id_3=".$categoriaId." OR categoria_id_4=".$categoriaId.") AND principal=1 AND activo=1 GROUP BY modelo_id";
- 234. }
- 235.
- 236. $rels = $db->fetchAll($sql);
- 237.
- 238. //goweb::dump($rels); die;
- 239.
- 240. if(!$rels){
- 241. $sql = "SELECT max(id) AS id, marca_id, modelo_id FROM ".$this->_produtoModel->getTableName()." WHERE (categoria_id=".$categoriaId." OR categoria_id_2=".$categoriaId." OR categoria_id_3=".$categoriaId." OR categoria_id_4=".$categoriaId.") AND activo=1 GROUP BY modelo_id";
- FICHEIRO: /home/sopequeninos/application/Catalogo/Controller.php
- LINHA: 795
- 791. $this->_categoriaModel->where($this->_categoriaModel->getTableName() . '.activo = 1');
- 792. $this->_resultCategorias = $this->_categoriaModel->count();
- 793. if ($this->_resultCategorias > 0) {
- 794. //return $this->listCategoriasAction($categoriaId);
- 795. return $this->listProdutosAction();
- 796. } else {
- 797. return $this->listProdutosAction();
- 798. }
- 799. } else {
- 800. return $this->listProdutosAction();
- FICHEIRO: /home/sopequeninos/library/Goweb/Controller/Action.php
- LINHA: 276
- 272. */
- 273. /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
- 274. trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
- 275. }*/
- 276. $this->$action();
- 277. } else {
- 278. $this->__call($action, array());
- 279. }
- 280. $this->postDispatch();
- 281. }
- FICHEIRO: /home/sopequeninos/library/Zend/Controller/Dispatcher/Standard.php
- LINHA: 308
- 304. ob_start();
- 305. }
- 306.
- 307. try {
- 308. $controller->dispatch($action);
- 309. } catch (Exception $e) {
- 310. // Clean output buffer on error
- 311. $curObLevel = ob_get_level();
- 312. if ($curObLevel > $obLevel) {
- 313. do {
- FICHEIRO: /home/sopequeninos/library/Zend/Controller/Front.php
- LINHA: 954
- 950. /**
- 951. * Dispatch request
- 952. */
- 953. try {
- 954. $dispatcher->dispatch($this->_request, $this->_response);
- 955. } catch (Exception $e) {
- 956. if ($this->throwExceptions()) {
- 957. throw $e;
- 958. }
- 959. $this->_response->setException($e);
- FICHEIRO: /home/sopequeninos/library/Goweb/Application.php
- LINHA: 449
- 445. }
- 446.
- 447. public function runApp(){
- 448. $frontController = Zend_Controller_Front::getInstance();
- 449. $frontController->dispatch();
- 450. }
- 451. }
- FICHEIRO: /home/sopequeninos/public_html/index.php
- LINHA: 54
- 50. $application->initPainel();
- 51. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
- 52. $application->initLanguage($lang, true, false);
- 53. $application->initLanguageAdmin($lang, true, true);
- 54. $application->runApp();
- 55.
- 56.
- 57. /**
- 58. * Efectua a traducao de uma string.
- 59. */