-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
220 changed files
with
41,769 additions
and
25,131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
echo "\nERROR: ", | ||
$heading, | ||
"\n\n", | ||
$message, | ||
"\n\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
echo "\nDatabase error: ", | ||
$heading, | ||
"\n\n", | ||
$message, | ||
"\n\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> | ||
|
||
An uncaught Exception was encountered | ||
|
||
Type: <?php echo get_class($exception), "\n"; ?> | ||
Message: <?php echo $message, "\n"; ?> | ||
Filename: <?php echo $exception->getFile(), "\n"; ?> | ||
Line Number: <?php echo $exception->getLine(); ?> | ||
|
||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?> | ||
|
||
Backtrace: | ||
<?php foreach ($exception->getTrace() as $error): ?> | ||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?> | ||
File: <?php echo $error['file'], "\n"; ?> | ||
Line: <?php echo $error['line'], "\n"; ?> | ||
Function: <?php echo $error['function'], "\n\n"; ?> | ||
<?php endif ?> | ||
<?php endforeach ?> | ||
|
||
<?php endif ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
echo "\nERROR: ", | ||
$heading, | ||
"\n\n", | ||
$message, | ||
"\n\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> | ||
|
||
A PHP Error was encountered | ||
|
||
Severity: <?php echo $severity, "\n"; ?> | ||
Message: <?php echo $message, "\n"; ?> | ||
Filename: <?php echo $filepath, "\n"; ?> | ||
Line Number: <?php echo $line; ?> | ||
|
||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?> | ||
|
||
Backtrace: | ||
<?php foreach (debug_backtrace() as $error): ?> | ||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?> | ||
File: <?php echo $error['file'], "\n"; ?> | ||
Line: <?php echo $error['line'], "\n"; ?> | ||
Function: <?php echo $error['function'], "\n\n"; ?> | ||
<?php endif ?> | ||
<?php endforeach ?> | ||
|
||
<?php endif ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>403 Forbidden</title> | ||
</head> | ||
<body> | ||
|
||
<p>Directory access is forbidden.</p> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
?><!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>404 Page Not Found</title> | ||
<style type="text/css"> | ||
|
||
::selection { background-color: #E13300; color: white; } | ||
::-moz-selection { background-color: #E13300; color: white; } | ||
|
||
body { | ||
background-color: #fff; | ||
margin: 40px; | ||
font: 13px/20px normal Helvetica, Arial, sans-serif; | ||
color: #4F5155; | ||
} | ||
|
||
a { | ||
color: #003399; | ||
background-color: transparent; | ||
font-weight: normal; | ||
} | ||
|
||
h1 { | ||
color: #444; | ||
background-color: transparent; | ||
border-bottom: 1px solid #D0D0D0; | ||
font-size: 19px; | ||
font-weight: normal; | ||
margin: 0 0 14px 0; | ||
padding: 14px 15px 10px 15px; | ||
} | ||
|
||
code { | ||
font-family: Consolas, Monaco, Courier New, Courier, monospace; | ||
font-size: 12px; | ||
background-color: #f9f9f9; | ||
border: 1px solid #D0D0D0; | ||
color: #002166; | ||
display: block; | ||
margin: 14px 0 14px 0; | ||
padding: 12px 10px 12px 10px; | ||
} | ||
|
||
#container { | ||
margin: 10px; | ||
border: 1px solid #D0D0D0; | ||
box-shadow: 0 0 8px #D0D0D0; | ||
} | ||
|
||
p { | ||
margin: 12px 15px 12px 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<h1><?php echo $heading; ?></h1> | ||
<?php echo $message; ?> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
?><!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Database Error</title> | ||
<style type="text/css"> | ||
|
||
::selection { background-color: #E13300; color: white; } | ||
::-moz-selection { background-color: #E13300; color: white; } | ||
|
||
body { | ||
background-color: #fff; | ||
margin: 40px; | ||
font: 13px/20px normal Helvetica, Arial, sans-serif; | ||
color: #4F5155; | ||
} | ||
|
||
a { | ||
color: #003399; | ||
background-color: transparent; | ||
font-weight: normal; | ||
} | ||
|
||
h1 { | ||
color: #444; | ||
background-color: transparent; | ||
border-bottom: 1px solid #D0D0D0; | ||
font-size: 19px; | ||
font-weight: normal; | ||
margin: 0 0 14px 0; | ||
padding: 14px 15px 10px 15px; | ||
} | ||
|
||
code { | ||
font-family: Consolas, Monaco, Courier New, Courier, monospace; | ||
font-size: 12px; | ||
background-color: #f9f9f9; | ||
border: 1px solid #D0D0D0; | ||
color: #002166; | ||
display: block; | ||
margin: 14px 0 14px 0; | ||
padding: 12px 10px 12px 10px; | ||
} | ||
|
||
#container { | ||
margin: 10px; | ||
border: 1px solid #D0D0D0; | ||
box-shadow: 0 0 8px #D0D0D0; | ||
} | ||
|
||
p { | ||
margin: 12px 15px 12px 15px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<h1><?php echo $heading; ?></h1> | ||
<?php echo $message; ?> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
?> | ||
|
||
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;"> | ||
|
||
<h4>An uncaught Exception was encountered</h4> | ||
|
||
<p>Type: <?php echo get_class($exception); ?></p> | ||
<p>Message: <?php echo $message; ?></p> | ||
<p>Filename: <?php echo $exception->getFile(); ?></p> | ||
<p>Line Number: <?php echo $exception->getLine(); ?></p> | ||
|
||
<?php if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?> | ||
|
||
<p>Backtrace:</p> | ||
<?php foreach ($exception->getTrace() as $error): ?> | ||
|
||
<?php if (isset($error['file']) && strpos($error['file'], realpath(BASEPATH)) !== 0): ?> | ||
|
||
<p style="margin-left:10px"> | ||
File: <?php echo $error['file']; ?><br /> | ||
Line: <?php echo $error['line']; ?><br /> | ||
Function: <?php echo $error['function']; ?> | ||
</p> | ||
<?php endif ?> | ||
|
||
<?php endforeach ?> | ||
|
||
<?php endif ?> | ||
|
||
</div> |
Oops, something went wrong.