-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
65 lines (63 loc) · 1.78 KB
/
error.php
File metadata and controls
65 lines (63 loc) · 1.78 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
<?php
function errorpage($errorcode, $scriptfile, $extra){
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Error</title>
<style type="text/css">
body,td,th {
font-family: Courier New, Courier, monospace;
font-size: 12px;
color: #000000;
}
body {
background-color: #FFF;
/*background: #FFF url("../theme/img/errorbg.png") repeat-x;*/
margin: 40px auto;
}
.errorbox{border:#CC3333 5px solid;width:800px;margin: 40px auto;}
.header{color:#FFFFFF; background-color:#CC3333; font-size:16px; font-weight:bold; padding-left:5px; padding-bottom:5px;}
.explaination{color:inherit;background-color:#FFF;padding:5px; border-bottom:#000000 1px dashed;}
.solution{color:inherit;background-color:#FFF;padding:5px;}
</style>
</head>
<body>
<?php if ($errorcode == 1001){ ?>
<div class="errorbox">
<div class="header">Error: Missing file. Inside: <?php echo $scriptfile ?>.</div>
<div class="explaination">Could not find "<?php echo $extra ?>"</div>
<div class="solution">
Troubleshooting:
<ul>
<li>Have you installed Maker CMS correctly?</li>
</ul>
</div>
</div>
<?php } else if ($errorcode == 1002){ ?>
<div class="errorbox">
<div class="header">Error code: 1002. Inside: <?php echo $scriptfile ?>.</div>
<div class="explaination">exp</div>
<div class="solution">
Troubleshooting:
<ul>
<li>thing?</li>
</ul>
</div>
</div>
<?php } else { ?>
<div class="errorbox">
<div class="header">Unexpected Error Inside: <?php echo $scriptfile ?>.</div>
<div class="explaination">Unexpected Error</div>
<div class="solution">
Troubleshooting:
<ul>
<li>Contanct xxx</li>
</ul>
</div>
</div>
<?php }?>
</body>
</html>
<?php }?>