• FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Db/Statement.php
  • LINHA:    300
  • MENSAGEM: SQLSTATE[HY000]: General error: 20018 Invalid column name 'st_u_pv6iva'. [20018] (severity 5) [(null)]
  •  296.         /*
  •  297.          * Simple case - no query profiler to manage.
  •  298.          */
  •  299.         if ($this->_queryId === null) {
  •  300.             return $this->_execute($params);
  •  301.         }
  •  302.
  •  303.         /*
  •  304.          * Do the same thing, but with query profiler
  •  305.          * management before and after the execute.

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Db/Adapter/Abstract.php
  • LINHA:    468
  •  464.         }
  •  465.
  •  466.         // prepare and execute the statement with profiling
  •  467.         $stmt = $this->prepare($sql);
  •  468.         $stmt->execute($bind);
  •  469.
  •  470.         // return the results embedded in the prepared statement object
  •  471.         $stmt->setFetchMode($this->_fetchMode);
  •  472.         return $stmt;
  •  473.     }

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/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: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Db/Adapter/Abstract.php
  • LINHA:    706
  •  702.     {
  •  703.         if ($fetchMode === null) {
  •  704.             $fetchMode = $this->_fetchMode;
  •  705.         }
  •  706.         $stmt = $this->query($sql, $bind);
  •  707.         $result = $stmt->fetchAll($fetchMode);
  •  708.         return $result;
  •  709.     }
  •  710.
  •  711.     /**

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/Db/Model.php
  • LINHA:    1106
  •  1102.                 $result = $this->_db->fetchAll($this->_select);
  •  1103.                 $cache->save($result, $this->_table . '_' . md5($this->_select->__toString()), $tags);
  •  1104.             }
  •  1105.         } else {
  •  1106.             $result = $this->_db->fetchAll($this->_select);
  •  1107.         }
  •  1108.
  •  1109.         // guarda as colunas extras submetidas
  •  1110.         //        $extraCols = $this->_select->getExtraCols();
  •  1111.

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/application/Catalogo/Controller.php
  • LINHA:    367
  •  363.         
  •  364.            // titulo (nome de categoria)
  •  365.         $titulo = translate("Produtos entre ") . $maiorque . " € e " . $menorque . " €" ; //str_replace('|', '/',str_replace($no_xss,'',urldecode($this->_getParam('sf'))));
  •  366.
  •  367.         $this->view->produtos = $this->_produtoModel->fetchAll();
  •  368.         $this->view->setViewsPath(VIEWS_PATH . DIRECTORY_SEPARATOR . 'Catalogo');
  •  369.         $this->view->loja = $this->_moduleConfig->loja->activa;
  •  370.         $this->view->detail_url = '/catalogo/detail/id/';
  •  371.
  •  372.         if ($this->_directRequest) { // significa que foi chamado directamente.

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/Controller/Action.php
  • LINHA:    275
  •  271.                  */
  •  272.                 /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
  •  273.                     trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
  •  274.                 }*/
  •  275.                 $this->$action();
  •  276.             } else {
  •  277.                 $this->__call($action, array());
  •  278.             }
  •  279.             $this->postDispatch();
  •  280.         }

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Controller/Dispatcher/Standard.php
  • LINHA:    289
  •  285.             ob_start();
  •  286.         }
  •  287.
  •  288.         try {
  •  289.             $controller->dispatch($action);
  •  290.         } catch (Exception $e) {
  •  291.             // Clean output buffer on error
  •  292.             $curObLevel = ob_get_level();
  •  293.             if ($curObLevel > $obLevel) {
  •  294.                 do {

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/View/Helper/Action.php
  • LINHA:    131
  •  127.                       ->setControllerName($controller)
  •  128.                       ->setActionName($action)
  •  129.                       ->setDispatched(true);
  •  130.
  •  131.         $this->dispatcher->dispatch($this->request, $this->response);
  •  132.
  •  133.         // reset the viewRenderer object to it's original state
  •  134.         Zend_Controller_Action_HelperBroker::addHelper($viewRendererObj);
  •  135.
  •  136.

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/View/Helper/Component.php
  • LINHA:    56
  •  52.         $params['directRequest'] = false;
  •  53.
  •  54.         //$controllerName = $this->_formatControllerName($controller);
  •  55.         //$actionName = $this->_formatActionName($action);
  •  56.         $return = $this->action($action, $controller, null, $params);
  •  57.         //goweb::dump($return);
  •  58.         //exit();
  •  59.         return $return;
  •  60.     }
  •  61. }

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/View/Abstract.php
  • LINHA:    340
  •  336.         // call the helper method
  •  337.         return call_user_func_array(
  •  338.             array($helper, $name),
  •  339.             $args
  •  340.         );
  •  341.     }
  •  342.
  •  343.     /**
  •  344.      * Given a base path, sets the script, helper, and filter paths relative to it
  •  345.      *

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/cache/cms/cms_47_en.tpl
  • LINHA:    1
  •  1. <?php echo $this->component('/catalogo/listbetween/maior/100/menor/99999/categoria_id//'); ?>

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/cache/cms/cms_47_en.tpl
  • LINHA:    1
  •  1. <?php echo $this->component('/catalogo/listbetween/maior/100/menor/99999/categoria_id//'); ?>

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/View.php
  • LINHA:    49
  •  45.         extract(get_object_vars($this));
  •  46.         if ($this->_useViewStream && $this->useStreamWrapper()) {
  •  47.             include 'zend.view://' . func_get_arg(0);
  •  48.         } else {
  •  49.             include func_get_arg(0);
  •  50.         }
  •  51.     }
  •  52.
  •  53.     /**
  •  54.      * Escapes a value for output in a view script.

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/View/Abstract.php
  • LINHA:    831
  •  827.         $this->_file = $this->_script($name);
  •  828.         unset($name); // remove $name from local scope
  •  829.
  •  830.         ob_start();
  •  831.         $this->_run($this->_file);
  •  832.
  •  833.         return $this->_filter(ob_get_clean()); // filter output
  •  834.     }
  •  835.
  •  836.     /**

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/application/Cms/GenericController.php
  • LINHA:    198
  •  194.
  •  195.         $this->_session->lastId = $this->_model->id;
  •  196.
  •  197.         if ($canal) {
  •  198.             $this->view->output = $this->view->render($filename);
  •  199.             $this->view->setViewsPath(VIEWS_PATH);
  •  200.             $this->_helper->viewRenderer->setNoController(true);
  •  201.             $this->_helper->viewRenderer->setRender(str_replace('.' . $this->_helper->viewRenderer->getViewSuffix(), '', $canal));
  •  202.         } else {
  •  203.             $this->_helper->viewRenderer->setNoController(true);

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/application/Cms/GenericController.php
  • LINHA:    96
  •  92.         if ($pathInfo && ($this->_model->findBy('url', $pathInfo) || $this->_model->findBy('url', substr($pathInfo, 1)))){
  •  93.             
  •  94.             if (!$this->_model->homepage){
  •  95.                 #goweb::dump($pathInfo);exit();
  •  96.                 return $this->viewAction($this->_model->id);
  •  97.             }
  •  98.         }
  •  99.         
  •  100.         #goweb::dump($pathInfo);exit();
  •  101.         

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/Controller/Action.php
  • LINHA:    275
  •  271.                  */
  •  272.                 /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
  •  273.                     trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
  •  274.                 }*/
  •  275.                 $this->$action();
  •  276.             } else {
  •  277.                 $this->__call($action, array());
  •  278.             }
  •  279.             $this->postDispatch();
  •  280.         }

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Controller/Dispatcher/Standard.php
  • LINHA:    289
  •  285.             ob_start();
  •  286.         }
  •  287.
  •  288.         try {
  •  289.             $controller->dispatch($action);
  •  290.         } catch (Exception $e) {
  •  291.             // Clean output buffer on error
  •  292.             $curObLevel = ob_get_level();
  •  293.             if ($curObLevel > $obLevel) {
  •  294.                 do {

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Zend/Controller/Front.php
  • LINHA:    946
  •  942.                 /**
  •  943.                  * Dispatch request
  •  944.                  */
  •  945.                 try {
  •  946.                     $dispatcher->dispatch($this->_request, $this->_response);
  •  947.                 } catch (Exception $e) {
  •  948.                     if ($this->throwExceptions()) {
  •  949.                         throw $e;
  •  950.                     }
  •  951.                     $this->_response->setException($e);

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/library/Goweb/Application.php
  • LINHA:    428
  •  424.     }
  •  425.
  •  426.     public function runApp(){
  •  427.         $frontController = Zend_Controller_Front::getInstance();
  •  428.         $frontController->dispatch();
  •  429.     }
  •  430. }

  • FICHEIRO: /chroot/home/estadoli/estadoliquido.pt/html/index.php
  • LINHA:    53
  •  49. $application->initSession('_FRONT', true);
  •  50. $application->initPainel();
  •  51. $application->initLanguage(isset($_GET['lang']) ? $_GET['lang'] : null, true, false);
  •  52. $application->initLanguageAdmin(isset($_GET['lang']) ? $_GET['lang'] : null, true, true);
  •  53. $application->runApp();
  •  54.
  •  55.
  •  56. /**
  •  57.  * Efectua a traducao de uma string.
  •  58.  */