/usr/share/pnp4nagios/html/install.php is in pnp4nagios-web 0.6.16-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php defined('SYSPATH') OR die('No direct access allowed.');?>
<?php require('application/lib/jsonwrapper.php');?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Installation</title>
<style type="text/css">
body { width: 42em; margin: 0 auto; font-family: sans-serif; font-size: 90%; }
#tests table { border-collapse: collapse; width: 100%; }
#tests table th,
#tests table td { padding: 0.2em 0.4em; text-align: left; vertical-align: top; }
#tests table th { width: 12em; font-weight: normal; font-size: 1.2em; }
#tests table tr:nth-child(odd) { background: #eee; }
#tests table td.pass { color: #191; }
#tests table td.fail { color: #911; }
#tests table td.warn { background: #ff3; }
#tests #results { color: #fff; }
#tests #results p { padding: 0.8em 0.4em; }
#tests #results p.pass { background: #191; }
#tests #results p.fail { background: #911; }
#tests #results p.warn { background: #ff3; }
</style>
</head>
<body>
<?php $failed = 0 ?>
<h1>PNP4Nagios Environment Tests</h1>
<p>The following options are determined by "configure". If any of the tests have failed, consult the <a href="http://docs.pnp4nagios.org/pnp-0.6/installer">documentation</a> for more information on how to correct the problem.</p>
<div id="tests">
<table cellspacing="0">
<tr>
<th>PNP4Nagios Version</th>
<td class="pass">pnp4nagios-0.6.16</td>
</tr>
<tr>
<th>Prefix</th>
<td class="pass">/</td>
</tr>
<tr>
<th>Configure Arguments</th>
<td class="pass">./configure '--build' 'i686-linux-gnu' '--with-layout=debian' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--without-kohana' '--with-kohana_system=/usr/share/php/kohana2/system' '--with-httpd-conf=/etc/apache2/conf.d' 'CFLAGS=' 'build_alias=i686-linux-gnu'</td>
</tr>
<tr>
<th>RRD Storage</th>
<?php if (is_readable('/var/lib/pnp4nagios/perfdata')): ?>
<td class="pass">/var/lib/pnp4nagios/perfdata is readable.</td>
<?php else: $failed++ ?>
<td class="fail">/var/lib/pnp4nagios/perfdata is not readable.</td>
<?php endif ?>
</tr>
<tr>
<th>RRDtool Binary</th>
<?php if (is_executable('/usr/bin/rrdtool') ): ?>
<td class="pass">/usr/bin/rrdtool is executable by PHP</td>
<?php else: $failed++ ?>
<td class="fail">/usr/bin/rrdtool is <a href="http://docs.pnp4nagios.org/faq/i8">not executable</a> by PHP</td>
<?php endif ?>
</tr>
<tr>
<th>PHP GD extension</th>
<?php if (function_exists('imagecreatefrompng')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">PHP GD extension not available</td>
<?php endif ?>
</tr>
<tr>
<th>PHP function proc_open()</th>
<?php if (function_exists('proc_open')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">PHP function <a href="http://docs.pnp4nagios.org/faq/i10">proc_open</a> not available/enabled</td>
<?php endif ?>
</tr>
<tr>
<th>PHP zlib extension</th>
<?php if (function_exists('gzfile')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">PHP zlib extension not available</td>
<?php endif ?>
</tr>
<tr>
<th>PHP session extension</th>
<?php if (function_exists('session_start')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">PHP session extension not available</td>
<?php endif ?>
</tr>
<tr>
<th>PHP JSON extension</th>
<?php if (function_exists('json_encode')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail"><a href="http://docs.pnp4nagios.org/faq/i10">PHP JSON extension</a> not available</td>
<?php endif ?>
</tr>
<th>PHP magic_quotes_gpc</th>
<?php if (get_magic_quotes_gpc() == FALSE): ?>
<td class="pass">Off</td>
<?php else: $failed++ ?>
<td class="fail">PHP <a href="http://docs.pnp4nagios.org/faq/i7">magic_quotes_gpc</a> is deprecated</td>
<?php endif ?></tr>
<?php if(function_exists('apache_get_modules')) : ?>
<th>PHP socket extension</th>
<?php if (function_exists('socket_create')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail"><a href="http://docs.pnp4nagios.org/faq/i11">PHP socket extension</a> not available</td>
<?php endif ?>
</tr>
<th>Apache Rewrite Module</th>
<?php if(in_array('mod_rewrite', apache_get_modules())) : ?>
<td class="pass">Pass</td>
<?php else: ?>
<td class="warn"><a href="http://docs.pnp4nagios.org/faq/i9">Apache mod_rewrite</a> is not enabled</td>
<?php endif ?></tr>
<?php else: ?>
<th>Apache Rewrite Module</th>
<td class="pass">Not running within Apache mod_php</td>
<?php endif ?></tr>
</table>
</div>
<h1>Kohana Environment Tests</h1>
<p>The following tests have been run to determine if Kohana will work in your environment. If any of the tests have failed, consult the <a href="http://docs.pnp4nagios.org/pnp-0.6/installer">documentation</a> for more information on how to correct the problem.</p>
<div id="tests">
<table cellspacing="0">
<tr>
<th>PHP Version</th>
<?php if (version_compare(PHP_VERSION, '5.1', '>=')): ?>
<td class="pass"><?php echo PHP_VERSION ?></td>
<?php else: $failed++ ?>
<td class="fail">Kohana requires PHP 5.1 or newer, this version is <?php echo PHP_VERSION ?>.</td>
<?php endif ?>
</tr>
<tr>
<th>System Directory</th>
<?php if (is_dir(SYSPATH) AND is_file(SYSPATH.'core/Bootstrap'.EXT)): ?>
<td class="pass"><?php echo SYSPATH ?></td>
<?php else: $failed++ ?>
<td class="fail">The configured system directory <br>('<?php echo SYSPATH ?>') <br>does not exist or does not contain required files.</td>
<?php endif ?>
</tr>
<tr>
<th>Application Directory</th>
<?php if (is_dir(APPPATH) AND is_file(APPPATH.'config/config'.EXT)): ?>
<td class="pass"><?php echo APPPATH ?></td>
<?php else: $failed++ ?>
<td class="fail">The configured application directory<br>('<?php echo APPPATH ?>')<br> does not exist or does not contain required files.</td>
<?php endif ?>
</tr>
<tr>
<th>Reflection Enabled</th>
<?php if (class_exists('ReflectionClass')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">PHP <a href="http://docs.pnp4nagios.org/faq/i3">reflection</a> is either not loaded or not compiled in.</td>
<?php endif ?>
</tr>
<tr>
<th>Iconv Extension Loaded</th>
<?php if (extension_loaded('iconv')): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">The <a href="http://docs.pnp4nagios.org/faq/i5">iconv</a> extension is not loaded.</td>
<?php endif ?>
<tr>
<?php if (extension_loaded('mbstring')): ?>
<th>Mbstring Not Overloaded</th>
<?php if (ini_get('mbstring.func_overload') & MB_OVERLOAD_STRING): $failed++ ?>
<td class="fail">The <a href="http://docs.pnp4nagios.org/faq/i6">mbstring</a> extension is overloading PHP's native string functions.</td>
<?php else: ?>
<td class="pass">Pass</td>
<?php endif ?>
</tr>
<?php endif ?>
</tr>
<tr>
<th>URI Determination</th>
<?php if (isset($_SERVER['REQUEST_URI']) OR isset($_SERVER['PHP_SELF'])): ?>
<td class="pass">Pass</td>
<?php else: $failed++ ?>
<td class="fail">Neither <code>$_SERVER['REQUEST_URI']</code> or <code>$_SERVER['PHP_SELF']</code> is available.</td>
<?php endif ?>
</tr>
</table>
<div id="results">
<?php if ($failed > 0): ?>
<p class="fail">pnp4nagios may not work correctly with your environment. Remove or rename the <code><?php echo __FILE__ ?></code> file on your own risk.</p>
<?php else: ?>
<p class="pass">Your environment passed all requirements. Remove or rename the <code><?php echo __FILE__ ?></code> file now.</p>
<?php endif ?>
</div>
</div>
</body>
</html>
|