-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
104 lines (91 loc) · 2.86 KB
/
error.php
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
<?php
error_reporting("E_NOTICE");
include "system/conexion.php";
include "system/procesos/detalles-foro.php";
?>
<!DOCTYPE html>
<html>
<head>
<title>ERROR</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link rel="shortcut icon" href="imagenes/<?php echo $icono_foro; ?>" type="image/x-icon">
<meta name="title" content="">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="language" content="spanish">
<meta name="robot" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/datepicker/css/datepicker.css" rel="stylesheet">
<link href="bootstrap/themes/<?php echo $theme_foro; ?>/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<script src="bootstrap/js/jquery-1.10.1.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<style type="text/css">
/* Sticky footer styles
-------------------------------------------------- */
html,
body {
height: 100%;
/* The html and body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by it's height */
margin: 0 auto -60px;
}
/* Set the fixed height of the footer here */
#push,
#footer {
height: 60px;
}
#footer {
background-color: #f5f5f5;
}
/* Lastly, apply responsive CSS fixes as necessary */
@media (max-width: 767px) {
#footer {
margin-left: -20px;
margin-right: -20px;
padding-left: 20px;
padding-right: 20px;
}
}
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
.container {
width: auto;
max-width: 680px;
}
.container .credit {
margin: 20px 0;
}
</style>
</head>
<body>
<!-- Part 1: Wrap all page content here -->
<div id="wrap">
<!-- Begin page content -->
<div class="container">
<div class="page-header">
<h1>ERROR</h1>
</div>
<p class="lead">An error occurred Page not found.</p>
<p>Registered error in the <a href="http://whois.arin.net/rest/ip/<?php echo $_SERVER["REMOTE_ADDR"]; ?>" target="_blank"> ip</a> <?php echo $_SERVER["REMOTE_ADDR"]; ?>.</p>
</div>
<div id="push"></div>
</div>
<footer>
<div class="text-center">
<strong>
<a href="index.php">BACK TO FORUM</a>
</strong>
</div>
<br><br>
</footer>
</body>
</html>