2 $this->redirectLinks = false;
5 <h1><?php echo $this->translate('An error occurred')?></h1>
7 $code = Zend_Controller_Front::getInstance()->getResponse()->getHttpResponseCode();
8 printf('%d: %s', $code, Zend_Http_Response::responseCodeAsText($code));
12 <?php if (isset ($this->message)) {
13 echo '<p>' . $this->message . '</p>';
16 <?php if (isset($this->exception)): ?>
18 <h3>Exception information:</h3>
20 <b>Message:</b> <?php echo $this->exception->getMessage() ?>
24 <pre><?php echo $this->exception->getTraceAsString() ?>
27 <h3>Request Parameters:</h3>
28 <pre><?php echo $this->escape(var_export($this->request->getParams(), true)) ?>
34 if ($this->isServerError) {
35 echo $this->translate('Please try again later');
37 echo $this->anchor($this->baseUrl(), $this->translate('go to main page'));