-
Notifications
You must be signed in to change notification settings - Fork 0
/
verification.php
144 lines (129 loc) · 4.93 KB
/
verification.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
// System : HrmGo Saas
// System Version : 4.0
function getPhpVersionInfo()
{
$currentVersionFull = PHP_VERSION;
preg_match("#^\d+(\.\d+)*#", $currentVersionFull, $filtered);
$currentVersion = $filtered[0];
return [
'full' => $currentVersionFull,
'version' => $currentVersion,
];
}
$minPhpVersion = '7.2';
$arrPermissions = [];
$arrPermissions['storage/framework/'] = __DIR__ . "/storage/framework/";
$arrPermissions['storage/framework/cache/'] = __DIR__ . "/storage/framework/cache/";
$arrPermissions['storage/framework/sessions/'] = __DIR__ . "/storage/framework/sessions/";
$arrPermissions['storage/framework/views/'] = __DIR__ . "/storage/framework/views/";
$arrPermissions['storage/logs/'] = __DIR__ . "/storage/logs/";
$arrPermissions['bootstrap/cache/'] = __DIR__ . "/bootstrap/cache/";
$arrPermissions['resources/lang/'] = __DIR__ . "/resources/lang/";
$arrPermissions['.env'] = __DIR__ . "/.env";
$arrPer = [];
$err = 0;
foreach($arrPermissions as $key => $value)
{
$permission = ltrim(substr(sprintf('%o', fileperms($value)), -4), 0);
$arrPer[$key] = ltrim($permission, 0);
if($permission < '777')
{
$err = 1;
}
}
// Check PHP Version
$allowed_version = version_compare(getPhpVersionInfo()['version'], $minPhpVersion, ">=");
if(!$allowed_version)
{
$err = 1;
}
// If all directory has and .env file has permission then redirect to main File
if($err != 1)
{
require_once __DIR__ . '/public/index.php';
die;
}
// end
?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Permissions | Installer</title>
<link rel="icon" type="image/png" href="public/installer/img/favicon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="public/installer/img/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="public/installer/img/favicon/favicon-96x96.png" sizes="96x96">
<link href="public/installer/css/style.min.css" rel="stylesheet">
</head>
<body data-gr-c-s-loaded="true">
<div class="master">
<div class="box" style="width: 550px">
<div class="header">
<h1 class="header__title"><i class="fa fa-key fa-fw" aria-hidden="true"></i>
Permissions
</h1>
</div>
<div class="main">
<p>Please set below directory and file permission to <b>777</b> and reload page.</p>
<ul class="list">
<li class="list__item list__title <?php if($allowed_version)
{
echo 'success';
}
else
{
echo 'error';
} ?>">
<strong>Php
<small>(version <?php echo $minPhpVersion; ?> required)</small>
</strong>
<span class="float-right">
<?php if($allowed_version) { ?>
<i class="fa fa-fw fa-check-circle-o"></i><strong> <?php echo getPhpVersionInfo()['version']; ?></strong>
<?php } else { ?>
<i class="fa fa-fw fa-exclamation-circle"></i><strong> <?php echo getPhpVersionInfo()['version']; ?></strong>
<?php } ?>
</span>
</li>
<?php
foreach($arrPer as $key => $val)
{ ?>
<li class="list__item list__item--permissions <?php if($val == '777')
{
echo 'success';
}
else
{
echo 'error';
} ?>">
<?php echo $key ?>
<?php if($val < '777')
{
echo "<small>(Required Permission is 777)</small>";
} ?>
<span>
<?php if($val == '777') { ?>
<i class="fa fa-fw fa-check-circle-o"></i>
<?php } else { ?>
<i class="fa fa-fw fa-exclamation-circle"></i>
<?php } ?>
<?php echo $val; ?>
</span>
</li>
<?php } ?>
</ul>
<?php if($err != 1) { ?>
<div class="buttons">
<a href="." class="button">
Install
<i class="fa fa-angle-right fa-fw" aria-hidden="true"></i>
</a>
</div>
<?php } ?>
</div>
</div>
</div>
</body>
</html>