Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_books/core/controllers/ |
Upload File : |
<?php
class Err extends Controller {
public function index() {
$this->DisplayError(404, 'Page Not Found', 'We\'re sorry, but this page doesn\'t exist.<br />Please check your URL for mistakes and refresh the page.');
}
public function denied() {
$this->DisplayError(403, 'Access Denied', 'You don\'t have permission to view this page. Please log in and try again');
}
public function DisplayError($errnum, $title, $info = 'Please go back, correct the error, and try again') {
global $VARIABLE;
$VARIABLE['default_right'] = '';
$VARIABLE['javascript_include'] .= <<<BLOCK
<style type="text/css">
.dos {
cursor: default;
font-family: monospace,Courier;
font-size: 17px;
}
.alert {
font-weight: bold;
color: #cc0000;
}
.errorContainer {
position: relative;
width: 930px;
margin: 55px auto;
}
.errorContainer div {
float: left;
margin: 0 0 0 40px;
}
.errorContainer div h2 {
font-family: Helvetica, Arial, sans-serif;
font-size: 36px;
font-weight: bold;
color: #cc0000;
text-shadow: none;
}
.errorContainer div h3 {
color: #262626;
margin-top: 5px;
}
.errorContainer div p {
color: #5b5b5b;
margin-top: 15px;
line-height: 25px;
}
</style>
BLOCK;
$body = <<<BLOCK
<div class="errorContainer">
<div>
<h2>$title</h2>
<h3>OOPS! Something went wrong.</h3>
<p>$info</p>
</div>
</div>
BLOCK;
if (isset($_SESSION["{$errnum}.message"])) {
$body .= 'Error Details: ' . $_SESSION["{$errnum}.message"];
}
header("HTTP/1.0 {$errnum} {$title}");
self::DisplayPage("{$errnum} {$title}", $body, 0);
}
}