-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.php
106 lines (59 loc) · 1.94 KB
/
index.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
<html>
<head>
<title>PHP Configuration</title>
<meta name="theme-color" content="#ffffff">
<link rel="apple-touch-icon" sizes="180x180" href="/public/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/public/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/public/img/favicon/favicon-16x16.png">
<link rel="manifest" href="/public/manifest.json">
<link rel="mask-icon" href="/public/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="/public/style/lightTheme.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="screen and (max-width: 719px)" type="text/css" href="/public/style/style.css">
<link rel="stylesheet" media="screen and (max-width: 719px)" type="text/css" href="/public/style/mobilestyle.css">
<link rel="stylesheet" media="screen and (min-width: 720px)" type="text/css" href="/public/style/style.css">
</head>
<body>
<style>
li {
padding-left:1em;
}
</style>
<div id="wrapper" class=''>
<table id="container">
<tr>
<th>
Web Server Configuration Issue
</th>
</tr>
<tr>
<td>
<br/>
Please correct these errors to begin installation<br/><br/>
<ol>
<li>The root directory is not set to <pre style="display:inline">/public</pre></li>
<?php if (explode(".",phpversion())[0]<7){;?>
<li>Update PHP to version 7 or later</li>
<?php
}
?>
</ol>
</td>
</tr>
<tr>
<td>
<button type="button" onclick="location.reload();">
Recheck
</button>
</td>
</tr>
</table>
<!--
Site Written By: Chris Jacobsen
With Credit to Codiad and IceCoder
Creation: September-October 2017
Updated: October 2019
-->
</body>
</html>