-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathe500.php
More file actions
108 lines (100 loc) · 5.08 KB
/
e500.php
File metadata and controls
108 lines (100 loc) · 5.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?php
/**
* EXHIBIT A. Common Public Attribution License Version 1.0
* The contents of this file are subject to the Common Public Attribution License Version 1.0 (the “License”);
* you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://www.oxwall.org/license. The License is based on the Mozilla Public License Version 1.1
* but Sections 14 and 15 have been added to cover use of software over a computer network and provide for
* limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent
* with Exhibit B. Software distributed under the License is distributed on an “AS IS” basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language
* governing rights and limitations under the License. The Original Code is Oxwall software.
* The Initial Developer of the Original Code is Oxwall Foundation (http://www.oxwall.org/foundation).
* All portions of the code written by Oxwall Foundation are Copyright (c) 2011. All Rights Reserved.
* EXHIBIT B. Attribution Information
* Attribution Copyright Notice: Copyright 2011 Oxwall Foundation. All rights reserved.
* Attribution Phrase (not exceeding 10 words): Powered by Oxwall community software
* Attribution URL: http://www.oxwall.org/
* Graphic Image as provided in the Covered Code.
* Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work
* which combines Covered Code or portions thereof with code not governed by the terms of the CPAL.
*/
define('_OW_', true);
define('DS', DIRECTORY_SEPARATOR);
define('OW_DIR_ROOT', dirname(__FILE__) . DS);
require_once(OW_DIR_ROOT . 'ow_includes' . DS . 'init.php');
$session = OW_Session::getInstance();
$session->start();
if (!$session->isKeySet('errorData')) {
header('Location: /');
exit;
}
$errorData = unserialize($session->get('errorData'), ['allowed_classes' => false]) ?>
<!DOCTYPE html>
<html>
<head>
<title>Something Went Wrong</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="robots" content="noindex,nofollow" />
</head>
<body style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 18px">
<div style="display: inline-block; padding-right: 16px; border-bottom: 1px solid #666; padding-bottom: 6px; margin-bottom: 8px;">
<h1 style="margin:0">Error 500</h1>
<h2 style="margin:0">Internal Server Error.</h2>
</div>
<br />
<div style="margin-bottom: 4px">
If you are the site admin, <a href="#" id="show_err_details_link">click here for details (+)</a>
</div>
<div style="display: none" id="hiddenNode">
<div style="margin-top: 30px;">
<b style="line-height: 24px">Something went wrong</b>!<br />
To get the error details follow these steps:
<ol>
<li>
Open <i>ow_includes/config.php</i> file and set
<span style="font-weight:bold">DEBUG_MODE</span> to
<span style="font-weight:bold">true</span>
</li>
<li>Reproduce your last action.</li>
</ol>
</div>
<?php if (!empty($errorData)): ?>
<div style="margin-top: 30px;">
<b>Error details</b>:
<table style="font-size: 13px;">
<tbody>
<tr>
<td class="lbl">Type:</td>
<td class="cnt"><?php echo $errorData['type'] ?></td>
</tr>
<tr>
<td class="lbl">Message:</td>
<td class="cnt"><?php echo $errorData['message'] ?></td>
</tr>
<tr>
<td class="lbl">File:</td>
<td class="cnt"><?php echo $errorData['file'] ?></td>
</tr>
<tr>
<td class="lbl">Line:</td>
<td class="cnt"><?php echo $errorData['line'] ?></td>
</tr>
<?php if (!empty($errorData['trace'])): ?>
<tr>
<td class="lbl">Trace:</td>
<td class="cnt"><?php echo $errorData['trace'] ?></td>
</tr>
<?php endif ?>
</tbody>
</table>
</div>
<?php endif ?>
</div>
<script>
document.getElementById('show_err_details_link').addEventListener('click', function() {
document.getElementById('hiddenNode').style.display = 'block';
});
</script>
</body>
</html>