Use getBaseUrl() instead of detectBaseUrl()
[zf2.biz/galerie.git] / module / Application / views / error / 404.phtml
1 <h1>A 404 error occurred</h1>
2 <h2><?php echo $this->message ?></h2>
3
4 <?php if (isset($this->display_exceptions) && $this->display_exceptions): ?>
5
6 <?php if(isset($this->exception) && $this->exception instanceof Exception): ?>
7
8 <h3>Exception information:</h3>
9 <p>
10     <h4>Message:</h4>
11     <pre><?php echo $this->exception->getMessage() ?></pre>
12     <h4>Stack trace:</h4>
13     <pre><?php echo $this->exception->getTraceAsString() ?></pre>
14 </p>
15
16 <?php else: ?>
17
18 <h3>No Exception available</h3>
19
20 <?php endif ?>
21
22 <?php endif ?>