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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
<?php
/**
* $Horde: horde/test.php,v 1.122.6.31 2009/05/05 15:27:28 selsky Exp $
*
* Copyright 1999-2009 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Brent J. Nordquist <bjn@horde.org>
* @author Chuck Hagenbuch <chuck@horde.org>
*/
/* Register a session. */
session_start();
if (!isset($_SESSION['horde_test_count'])) {
$_SESSION['horde_test_count'] = 0;
}
/* Include Horde's core.php file. */
include_once 'lib/core.php';
/* We should have loaded the String class, from the Horde_Util package, in
* core.php. If String:: isn't defined, then we're not finding some critical
* libraries. */
if (!class_exists('String')) {
echo '<br /><h2 style="color:red">The Horde_Util package was not found. If PHP\'s error_reporting setting is high enough and display_errors is on, there should be error messages printed above that may help you in debugging the problem. If you are simply missing these files, then you need to get the <a href="http://cvs.horde.org/cvs.php/framework">framework</a> module from <a href="http://www.horde.org/source/">Horde CVS</a>, and install the packages in it with the install-packages.php script.</h2>';
exit;
}
/* Initialize the Horde_Test:: class. */
if (!include_once 'lib/Test.php') {
/* Try and provide enough information to debug the missing file. */
echo '<br /><h2 style="color:red">Unable to find horde/lib/Test.php. Your Horde installation may be missing critical files, or PHP may not have sufficient permissions to include files. There may be error messages printed above this message that will help you in debugging the problem.</h2>';
exit;
}
/* If we've gotten this far, we should have found enough of Horde to run
* tests. Create the testing object. */
$horde_test = new Horde_Test();
/* Horde definitions. */
$module = 'Horde';
require_once './lib/version.php';
$module_version = HORDE_VERSION;
/* PHP module capabilities. */
$module_list = array(
'ctype' => array(
'descrip' => 'Ctype Support',
'error' => 'The ctype functions are required by the help system, the weather portal blocks, and a few Horde applications.'),
(version_compare(PHP_VERSION, '5') < 0 ? 'domxml' : 'dom') => array(
'descrip' => 'DOM XML Support',
'error' => 'DOM support is required for the configuration frontend and Kolab support.'),
'ftp' => array(
'descrip' => 'FTP Support',
'error' => 'FTP support is only required if you want to authenticate against an FTP server, upload your configuration files with FTP, or use an FTP server for file storage.'),
'gd' => array(
'descrip' => 'GD Support',
'error' => 'Horde will use the GD extension to perform manipulations on image data. You can also use the ImageMagick software to do these manipulations instead.'),
'gettext' => array(
'descrip' => 'Gettext Support',
'error' => 'Horde will not run without gettext support. Compile PHP with <code>--with-gettext</code> before continuing.',
'fatal' => true),
'geoip' => array(
'descrip' => 'GeoIP Support (via PECL extension)',
'error' => 'Horde can optionally use the GeoIP extension to provide faster country name lookups.'),
'iconv' => array(
'descrip' => 'Iconv Support',
'error' => 'If you want to take full advantage of Horde\'s localization features and character set support, you will need the iconv extension.'
),
'iconv_libiconv' => array(
'descrip' => 'GNU Iconv Support',
'error' => 'For best results make sure the iconv extension is linked against GNU libiconv.',
'function' => '_check_iconv_implementation'),
'imap' => array(
'descrip' => 'IMAP Support',
'error' => 'The IMAP extension is required if you want to authenticate against an IMAP server.'),
'imagick' => array(
'descrip' => 'Imagick Library',
'required' => false,
'error' => 'Horde can make use of the Imagick Library, if it is installed on your system. It is highly recommended to use either ImageMagick\'s convert utility or the Imagick php library for faster results.'
),
'json' => array(
'descrip' => 'JSON Support',
'error' => 'Horde can optionally use the JSON extension to provide faster Javascript generation for rich GUI applications.'),
'ldap' => array(
'descrip' => 'LDAP Support',
'error' => 'LDAP support is only required if you want to use an LDAP server for anything like authentication, address books, or preference storage.'),
'lzf' => array(
'descrip' => 'LZF Compression Support',
'error' => 'If the lzf PECL module is available, Horde can compress some cached data in your session to make your session size smaller.'),
'mbstring' => array(
'descrip' => 'Mbstring Support',
'error' => 'If you want to take full advantage of Horde\'s localization features and character set support, you will need the mbstring extension.'),
'pcre' => array(
'descrip' => 'PCRE Support',
'error' => 'Horde will not run without PCRE support. Compile PHP with <code>--with-pcre</code> before continuing.',
'fatal' => true),
'pcre_utf8' => array(
'descrip' => 'PCRE UTF-8 Support',
'error' => 'If you want to take full advantage of Horde\'s localization features and character set support, you will need PCRE with UTF-8 support.',
'function' => '_check_pcre_utf8'),
'mcrypt' => array(
'descrip' => 'Mcrypt Support',
'error' => 'Mcrypt is a general-purpose cryptography library which is broader and significantly more efficient (FASTER!) than PHP\'s own cryptographic code and will provider faster logins.'),
'memcache' => array(
'descrip' => 'memcached Support (memcache)',
'error' => 'The memcache PECL module is only needed if you are using a memcached server for caching or sessions. See horde/docs/INSTALL for information on how to install PECL/PHP extensions.'),
'fileinfo' => array(
'descrip' => 'MIME Magic Support (fileinfo)',
'error' => 'The fileinfo PECL module or the mime_magic PHP extension (see below) will most likely provide faster MIME Magic lookups than the built-in Horde PHP magic code. See horde/docs/INSTALL for information on how to install PECL/PHP extensions.'),
'mime_magic' => array(
'descrip' => 'MIME Magic Support (mime_magic)',
'error' => 'The fileinfo PECL module (see above) or the mime_magic PHP extension will most likely provide faster MIME Magic lookups than the built-in Horde PHP magic code. See horde/docs/INSTALL for information on how to install PECL/PHP extensions.'),
'mysql' => array(
'descrip' => 'MySQL Support',
'error' => 'The MySQL extension is only required if you want to use a MySQL database server for data storage.'),
'openssl' => array(
'descrip' => 'OpenSSL Support',
'error' => 'The OpenSSL extension is required for any kind of S/MIME support.'),
'pgsql' => array(
'descrip' => 'PostgreSQL Support',
'error' => 'The PostgreSQL extension is only required if you want to use a PostgreSQL database server for data storage.'),
'session' => array(
'descrip' => 'Session Support',
'fatal' => true),
'xml' => array(
'descrip' => 'XML Support',
'error' => 'XML support is required for the help system.'),
'zlib' => array(
'descrip' => 'Zlib Support',
'error' => 'The zlib module is highly recommended for use with Horde. It allows page compression and handling of ZIP and GZ data. Compile PHP with <code>--with-zlib</code> to activate.'),
);
/**
* Additional check for PCRE UTF-8 support.
*/
function _check_pcre_utf8()
{
return (extension_loaded('pcre') && @preg_match('/.*/u', 'test') !== false);
}
/**
* Additional check for iconv module implementation.
*/
function _check_iconv_implementation()
{
return extension_loaded('iconv') && in_array(ICONV_IMPL, array('libiconv', 'glibc'));
}
/* PHP Settings. */
$setting_list = array(
'magic_quotes_runtime' => array(
'setting' => false,
'error' => 'magic_quotes_runtime may cause problems with database inserts, etc. Turn it off.'
),
'memory_limit' => array(
'setting' => 'value',
'error' => 'If PHP\'s internal memory limit is not set high enough Horde will not be able to handle large data items (e.g. large mail attachments in IMP). You should set the value of memory_limit in php.ini to a sufficiently high value - at least 64M is recommended.'
),
'safe_mode' => array(
'setting' => false,
'error' => 'If safe_mode is enabled, Horde cannot set enviroment variables, which means Horde will be unable to translate the user interface into different languages.'
),
'session.use_trans_sid' => array(
'setting' => false,
'error' => 'Horde will work with session.use_trans_sid turned on, but you may see double session-ids in your URLs, and if the session name in php.ini differs from the session name configured in Horde, you may get two session ids and see other odd behavior. The URL-rewriting that use_trans_sid does also tends to break XHTML compliance. In short, you should really disable this.'
),
'session.auto_start' => array(
'setting' => false,
'error' => 'Horde won\'t work with automatically started sessions, because it explicitly creates new session when necessary to protect against session fixations.'
),
'zlib.output_compression' => array(
'setting' => false,
'error' => 'You should not enable output compression unconditionally because some browsers and scripts don\'t work well with output compression. Enable compression in Horde\'s configuration instead, so that we have full control over the conditions where to enable and disable it.'
),
'zend_accelerator.compress_all' => array(
'setting' => false,
'error' => 'You should not enable output compression unconditionally because some browsers and scripts don\'t work well with output compression. Enable compression in Horde\'s configuration instead, so that we have full control over the conditions where to enable and disable it.'
),
);
/* PEAR */
$pear_list = array(
'Mail' => array(
'path' => 'Mail/RFC822.php',
'error' => 'You do not have the Mail package installed on your system. See the INSTALL file for instructions on how to install the package.'
),
'Mail_Mime' => array(
'path' => 'Mail/mime.php',
'error' => 'You do not have the Mail_Mime package installed on your system. See the INSTALL file for instructions on how to install the package.',
'required' => true
),
'Mail_mimeDecode' => array(
'path' => 'Mail/mimeDecode.php',
'error' => 'You do not have the Mail_mimeDecode package installed on your system. See the INSTALL file for instructions on how to install the package.',
'required' => true
),
'Log' => array(
'path' => 'Log.php',
'error' => 'Make sure you are using a version of PEAR which includes the Log classes, or that you have installed the Log package seperately. See the INSTALL file for instructions on installing Log.',
'required' => true,
'function' => '_check_pear_log_version'
),
'DB' => array(
'path' => 'DB.php',
'error' => 'You will need DB if you are using SQL drivers for preferences, contacts (Turba), etc.',
'function' => '_check_pear_db_version'
),
'MDB2' => array(
'path' => 'MDB2.php',
'error' => 'You will need MDB2 if you are using the SQL driver for Shares.',
),
'Net_Socket' => array(
'path' => 'Net/Socket.php',
'error' => 'Make sure you are using a version of PEAR which includes the Net_Socket class, or that you have installed the Net_Socket package seperately. See the INSTALL file for instructions on installing Net_Socket.'
),
'Date' => array(
'path' => 'Date/Calc.php',
'error' => 'Horde requires the Date_Calc class for Kronolith to calculate dates.'
),
'Auth_SASL' => array(
'path' => 'Auth/SASL.php',
'error' => 'Horde will work without the Auth_SASL class, but if you use Access Control Lists in IMP you should be aware that without this class passwords will be sent to the IMAP server in plain text when retrieving ACLs.'
),
'HTTP_Request' => array(
'path' => 'HTTP/Request.php',
'error' => 'Parts of Horde (HTML composition in IMP, Jonah, the XML-RPC client/server) use the HTTP_Request library to retrieve URLs and do other HTTP requests.'
),
'HTTP_WebDAV_Server' => array(
'path' => 'HTTP/WebDAV/Server.php',
'error' => 'The HTTP_WebDAV_Server is required, if you want to use the WebDAV interface of Horde, e.g. to access calendars or tasklists with external clients.'
),
'Net_SMTP' => array(
'path' => 'Net/SMTP.php',
'error' => 'Make sure you are using the Net_SMTP module if you want "smtp" to work as a mailer option.'
),
'Services_Weather' => array(
'path' => 'Services/Weather.php',
'error' => 'Services_Weather is used by the weather applet/block on the portal page.'
),
'Cache' => array(
'path' => 'Cache.php',
'error' => 'Cache is used by the Services_Weather module on the weather applet/block on the portal page.'
),
'XML_Serializer' => array(
'path' => 'XML/Serializer.php',
'error' => 'XML_Serializer is used by the Services_Weather module on the weather applet/block on the portal page.'
),
'Net_DNS' => array(
'path' => 'Net/DNS.php',
'error' => 'Net_DNS can speed up hostname lookups against broken DNS servers.'
)
);
/* Additional check for PEAR Log module for its version. */
function _check_pear_log_version()
{
if (!defined('PEAR_LOG_INFO')) {
return 'Your version of Log is not recent enough.';
}
}
/* Additional check for PEAR DB module for its version. */
function _check_pear_db_version()
{
if (!defined('DB_PORTABILITY_LOWERCASE')) {
return 'Your version of DB is not recent enough.';
}
}
/* Required configuration files. */
$file_list = array(
'config/conf.php' => null,
'config/mime_drivers.php' => null,
'config/nls.php' => null,
'config/prefs.php' => null,
'config/registry.php' => null
);
/* Get the status output now. */
$module_output = $horde_test->phpModuleCheck($module_list);
$setting_output = $horde_test->phpSettingCheck($setting_list);
$pear_output = $horde_test->PEARModuleCheck($pear_list);
$config_output = $horde_test->requiredFileCheck($file_list);
/* Handle special modes. */
if (!empty($_GET['mode'])) {
$url = !empty($_GET['url']) ? $_GET['url'] : 'test.php';
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">';
switch ($_GET['mode']) {
case 'extensions':
require TEST_TEMPLATES . 'extensions.inc';
exit;
case 'phpinfo':
echo '<a href="' . htmlspecialchars($url) . '?mode=test"><< Back to test.php</a>';
phpinfo();
exit;
case 'unregister':
unset($_SESSION['horde_test_count']);
?>
<html>
<body>
The test session has been unregistered.<br />
<a href="test.php">Go back</a> to the test.php page.<br />
</body>
</html>
<?php
exit;
}
}
$test_app = 'horde';
require TEST_TEMPLATES . 'header.inc';
require TEST_TEMPLATES . 'version.inc';
?>
<h1>Horde Applications</h1>
<ul>
<?php
/* Get Horde module version information. */
$modules = $horde_test->applicationList();
foreach ($modules as $app => $val) {
$app = ucfirst($app);
echo '<li>' . $app . ': ' . $val->version;
if (isset($val->test)) {
echo ' (<a href="' . $val->test . '">run ' . $app . ' tests</a>)';
}
echo "</li>\n";
}
?>
</ul>
<?php
/* Display PHP Version information. */
$php_info = $horde_test->getPhpVersionInformation();
require TEST_TEMPLATES . 'php_version.inc';
?>
<h1>PHP Module Capabilities</h1>
<ul>
<?php echo $module_output ?>
</ul>
<h1>Miscellaneous PHP Settings</h1>
<ul>
<?php echo $setting_output ?>
</ul>
<h1>File Uploads</h1>
<ul>
<?php echo $horde_test->phpSettingCheck(array('file_uploads' => array('setting' => true, 'error' => 'file_uploads must be enabled for some features like sending emails with IMP.' ))) ?>
<?php if ($dir = ini_get('upload_tmp_dir')): ?>
<li>upload_tmp_dir: <strong style="color:"<?php echo is_writable($dir) ? 'green' : 'red' ?>"><?php echo $dir ?></strong></li>
<?php endif; ?>
<li>upload_max_filesize: <?php echo ini_get('upload_max_filesize') ?></li>
<li>post_max_size: <?php echo ini_get('post_max_size') ?><br />
This value should be several times the expect largest upload size (notwithstanding any upload limits present in an application). Any upload that exceeds this size will cause any state information sent along with the uploaded data to be lost. This is a PHP limitation and can not be worked around.</li>
</ul>
<h1>Required Horde Configuration Files</h1>
<ul>
<?php echo $config_output ?>
</ul>
<h1>PHP Sessions</h1>
<?php $_SESSION['horde_test_count']++; ?>
<ul>
<li>Session counter: <?php echo $_SESSION['horde_test_count']; ?></li>
<li>To unregister the session: <a href="test.php?mode=unregister">click here</a></li>
</ul>
<h1>PEAR</h1>
<ul>
<?php echo $pear_output ?>
</ul>
<?php
require TEST_TEMPLATES . 'footer.inc';
|