forked from viglesiasce/testlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsysinfo.php
More file actions
executable file
·264 lines (209 loc) · 7.05 KB
/
sysinfo.php
File metadata and controls
executable file
·264 lines (209 loc) · 7.05 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* @filesource $RCSfile: sysinfo.php,v $
* @version $Revision: 1.4 $
* @modified $Date: 2009/04/16 11:11:59 $ by $Author: havlat $
*
* @author Martin Havlat
*
* Report about system and background services
*
* @todo check if custom_config, config_db are writable and remove/rewrite commented part of code
* @todo test database (if installed only)
*
*/
require_once('config.inc.php');
$root = dirname(__FILE__);
define('ROOT_PATH', $root);
function check_php_version2($sys_php_version = '') {
$sys_php_version = empty($sys_php_version) ? constant('PHP_VERSION') : $sys_php_version;
// versions below $min_considered_php_version considered invalid by default,
// versions equal to or above this ver will be considered depending
// on the rules that follow
$min_considered_php_version = '5.2.0';
// only the supported versions,
// should be mutually exclusive with $invalid_php_versions
$supported_php_versions = array (
'5.0.1', '5.0.2', '5.0.3', '5.0.4',
'5.1.0', '5.1.1', '5.1.2', '5.1.3',
'5.1.4', '5.1.5', '5.1.6', '5.1.7',
'5.2.0', '5.2.1', '5.2.2'
);
sort($supported_php_versions);
// invalid versions above the $min_considered_php_version,
// should be mutually exclusive with $supported_php_versions
$invalid_php_versions = array('5.0.0', '5.0.5');
// default unsupported
$retval = 0;
// versions below $min_considered_php_version are invalid
if(1 == version_compare($sys_php_version, $min_considered_php_version, '<')) {
$retval = -1;
}
// supported version check overrides default unsupported
foreach($supported_php_versions as $ver) {
if(1 == version_compare($sys_php_version, $ver, 'eq')) {
$retval = 1;
break;
}
}
if (($retval != 1) && (1 == version_compare($sys_php_version, $ver, '>'))) {
$retval = 1;
}
// invalid version check overrides default unsupported
foreach($invalid_php_versions as $ver) {
if(1 == version_compare($sys_php_version, $ver, 'eq')) {
$retval = -1;
break;
}
}
return $retval;
}
function chk_memory($limit=9, $recommended=16) {
$msg = '';
$type = '';
$max_memory = ini_get('memory_limit');
if ($max_memory == "") {
$msg = "OK (No Limit)";
$type = "done";
} else if ($max_memory === "-1") {
$msg = "OK (Unlimited)";
$type = "done";
} else {
$max_memory = rtrim($max_memory, "M");
$max_memory_int = (int) $max_memory;
if ($max_memory_int < $limit) {
$msg = "Warning at least $limit M required ($max_memory M available, Recommended $recommended M)";
$type = "error";
} elseif ($max_memory_int < $recommended) {
$msg = "OK (Recommended $recommended M)";
$type = "pending";
} else {
$msg = "OK";
$type = "done";
}
}
$msg = "<b class='$type'>".$msg."</b>";
return $msg;
}
$ohrmVersion = "2.4.1";
if (@include_once ROOT_PATH."/lib/confs/Conf.php-distribution") {
$conf = new Conf();
$ohrmVersion = $conf->version;
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>TestLink - System Information</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="gui/themes/default/images/favicon.ico" rel="icon" type="image/gif"/>
<link href="gui/themes/default/css/testlink.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function reload() {
window.location.reload(true);
}
</script>
</head>
<body>
<div style="width: 800px; margin-left: auto; margin-right: auto;">
<h1>TestLink - System & services checking</h1>
<p>Installation status:
<?php
$bInstallDone = checkInstallStatus();
if ($bInstallDone)
echo "Installed.";
else
echo "Not installed.";
?>
</p>
<div>
<input type="button" name="Re-check" value="Re-check" onClick="reload();" tabindex="1">
</div>
<!---
<h2>Web server Check</h2>
<div id="content">
<table cellpadding="0" cellspacing="0" border="0" class="table">
<tr>
<th align="left" class="th">Component</th>
<th class="th" style="text-align: right;">Status</th>
</tr>
<tr>
<td class="tdComponent">PHP version</td>
<td align="right" class="tdValues"><strong>
<?php
$error_found = false;
$php_version = constant('PHP_VERSION');
$check_php_version_result = check_php_version2($php_version);
switch($check_php_version_result)
{
case -1:
echo "<b><font color='red'>Invalid version, ($php_version) Installed</font></b>";
$error_found = true;
break;
case 0:
echo "<b><font color='red'>Unsupported (ver $php_version)</font></b>";
break;
case 1:
echo "<b><font color='green'>OK (ver $php_version)</font></b>";
break;
}
?>
</strong></td>
</tr>
<tr>
<td class="tdComponent">MySQL Client</td>
<td align="right" class="tdValues"><strong>
<?php
$mysqlClient = mysql_get_client_info();
if(function_exists('mysql_connect')) {
if(intval(substr($mysqlClient,0,1)) < 4 || substr($mysqlClient,0,3) == '4.0') {
echo "<b><font color='#C4C781'>ver 4.1.x or later recommended (reported ver " .$mysqlClient. ')</font></b>';
} else echo "<b><font color='green'>OK (ver " .$mysqlClient. ')</font></b>';
} else {
echo "<b><font color='red'>Not Available</font></b>";
$error_found = true;
}
?>
</strong></td>
</tr>
<tr>
<td class="tdComponent">Configuration File Writable</td>
<td align="right" class="tdValues"><strong>
<?php
if(is_writable(TL_ABS_PATH . 'custom_config.inc.php')) {
echo "<b><font color='green'>OK</font></b>";
} else {
echo "<b><font color='red'>Not Writeable</font></b>";
$error_found = true;
}
?>
</strong></td>
</tr>
<tr>
<td class="tdComponent">Memory allocated for PHP script</td>
<td align="right" class="tdValues"><?php echo chk_memory(9, 16)?></td>
</tr>
</table>
<br />
</div>
-->
<div>
<?php
$errors = 0;
reportCheckingSystem($errors);
reportCheckingWeb($errors);
reportCheckingPermissions($errors);
reportCheckingDatabase($errors);
reportCheckingBrowser($errors);
echo '<p>Error counter = '.$errors.'</p>';
?>
<hr /></div>
<div id="footer">
<p><a href="http://www.teamst.org" target="_blank" tabindex="99">TestLink</a> System check is finished. </p>
</div>
</div>
</body>
</html>