Blame view

src/Template/Error/error500.default.ctp 1.13 KB
771aa727   Alexandre   Version: 2.3.2.0
1
2
3
4
5
6
<?php
use Cake\Core\Configure;
use Cake\Error\Debugger;

$this->layout = 'error';

63c3cb16   epallier   Nombreux petits b...
7
if (Configure::read('debug')) :
771aa727   Alexandre   Version: 2.3.2.0
8
    $this->layout = 'dev_error';
63c3cb16   epallier   Nombreux petits b...
9
    
771aa727   Alexandre   Version: 2.3.2.0
10
11
    $this->assign('title', $message);
    $this->assign('templateName', 'error500.ctp');
63c3cb16   epallier   Nombreux petits b...
12
    
771aa727   Alexandre   Version: 2.3.2.0
13
    $this->start('file');
63c3cb16   epallier   Nombreux petits b...
14
    ?>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
15
<?php if (!empty($error->getQueryString)) : ?>
63c3cb16   epallier   Nombreux petits b...
16
17
<p class="notice">
	<strong>SQL Query: </strong>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
18
        <?= h($error->getQueryString) ?>
771aa727   Alexandre   Version: 2.3.2.0
19
20
    </p>
<?php endif; ?>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
21
<?php if (!empty($error->getAttribute('params'))) : ?>
63c3cb16   epallier   Nombreux petits b...
22
23
<strong>SQL Query Params: </strong>
<?php Debugger::dump($error->getAttribute('params')) ?>
771aa727   Alexandre   Version: 2.3.2.0
24
25
<?php endif; ?>
<?php if ($error instanceof Error) : ?>
63c3cb16   epallier   Nombreux petits b...
26
27
<strong>Error in: </strong>
<?= sprintf('%s, line %s', str_replace(ROOT, 'ROOT', $error->getFile()), $error->getLine()) ?>
771aa727   Alexandre   Version: 2.3.2.0
28
29
30
<?php endif; ?>
<?php
    echo $this->element('auto_table_warning');
63c3cb16   epallier   Nombreux petits b...
31
32
    
    if (extension_loaded('xdebug')) :
771aa727   Alexandre   Version: 2.3.2.0
33
34
        xdebug_print_function_stack();
    endif;
63c3cb16   epallier   Nombreux petits b...
35
    
771aa727   Alexandre   Version: 2.3.2.0
36
37
    $this->end();
endif;
63c3cb16   epallier   Nombreux petits b...
38

771aa727   Alexandre   Version: 2.3.2.0
39
40
41
?>
<h2><?= __d('cake', 'An Internal Error Has Occurred') ?></h2>
<p class="error">
63c3cb16   epallier   Nombreux petits b...
42
	<strong><?= __d('cake', 'Error') ?>: </strong>
771aa727   Alexandre   Version: 2.3.2.0
43
44
45
    <?php error_log('test '.$error); ?>
    <?= h($message) ?>
</p>