* @category Horde
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
/* If gettext is not loaded, define a dummy _() function so that
* including any file with gettext strings won't cause a fatal error,
* causing test.php to return a blank page. */
if (!function_exists('_')) {
function _($s) { return $s; }
}
class Horde_Test
{
/**
* The PHP version of the system.
*
* @var array
*/
protected $_phpver;
/**
* Supported versions of PHP.
*
* @var array
*/
protected $_supported = array(
'5.3',
'5.4',
'5.5',
'5.6',
);
/**
* The module list
*
* KEY: extension name
* VALUE: Either the description or an array with the following entries:
* descrip: (string) Module description
* error: (string) Error message
* fatal: (boolean) Is missing extension fatal?
* function: (string) Reference to function to run. If function
* returns boolean false, error message will be output.
* If function returns a string, this error message
* will be used.
* phpver: (string) The PHP version above which to do the test
*
*
* @var array
*/
protected $_moduleList = array(
'ctype' => array(
'descrip' => 'Ctype Support',
'error' => 'The ctype functions are required by various Horde libraries. Don\t compile PHP with --disable-all/--disable-ctype
.',
'fatal' => true
),
'dom' => array(
'descrip' => 'DOM XML Support',
'error' => 'Horde will not run without the dom extension. Don\'t compile PHP with --disable-all/--disable-dom
.',
'fatal' => true
),
'fileinfo' => array(
'descrip' => 'MIME Magic Support (fileinfo)',
'error' => 'The fileinfo extension is used to provide MIME Magic scanning on unknown data. Don\'t compile PHP with --disable-all/--disable-fileinfo
.'
),
'fileinfo_check' => array(
'descrip' => 'MIME Magic Support (fileinfo) - Configuration',
'error' => 'The fileinfo extension could not open the default MIME Magic database location. You will need to manually specify the MIME Magic database location in the config file.',
'function' => '_checkFileinfo'
),
'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. Compile PHP with --enable-ftp
to ensure the extension is active on your server.'
),
'gd' => array(
'descrip' => 'GD Support',
'error' => 'Horde will use the GD extension to perform manipulations on image data (compile PHP with --with-gd
). It is recommended to use the PECL imagick library instead over this extension.'
),
'gettext' => array(
'descrip' => 'Gettext Support',
'error' => 'Horde will not run without gettext support. Compile PHP with --with-gettext
.',
'fatal' => true
),
'geoip' => array(
'descrip' => 'GeoIP Support (PECL extension)',
'error' => 'Horde can optionally use the GeoIP extension to provide faster country name lookups.'
),
'hash' => array(
'descrip' => 'Hash Support',
'error' => 'Horde will not run without the hash extension. Don\'t compile PHP with --disable-all/--disable-hash
.',
'fatal' => true
),
'horde_lz4/lzf' => array(
'descrip' => 'LZ4/LZF Compression Support (PECL extension)',
'error' => 'If the horde_lz4 or lzf PECL extensions are available, Horde can perform real-time compression on cached data to optimize storage resources. It is recommended to use horde_lz4, as its compression speed is twice as fast as the lzf extension\'s.',
'function' => '_checkLzCompression'
),
'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. Don\t compile PHP with --disable-all/--disable-iconv
.'
),
'iconv_libiconv' => array(
'descrip' => 'GNU Iconv Support',
'error' => 'For best results make sure the iconv extension is linked against GNU libiconv.',
'function' => '_checkIconvImplementation'
),
'intl' => array(
'descrip' => 'Internationalization Support',
'error' => 'Horde requires the intl extension to handle Internationalized Domain Names. Compile PHP with --enable-intl
.'
),
'imagick' => array(
'descrip' => 'Imagick (PECL extension)',
'error' => 'Horde can make use of the Imagick library to manipulate images. It is highly recommended to use the PECL extension (although, alternatively, Horde can be configured to use the convert command line utility instead).'
),
'json' => array(
'descrip' => 'JSON Support',
'error' => 'Horde will not run without the json extension. Don\'t compile PHP with --disable-all/--disable-json
.',
'fatal' => true
),
'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. Compile PHP with --with-ldap
to activate the extension.'
),
'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. Compile PHP with --enable-mbstring
to activate the extension.'
),
'memcached' => array(
'descrip' => 'Memcached Support (PECL extension)',
'error' => 'The memcache(d) PECL extension 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.',
'function' => '_checkMemcache'
),
'mongodb' => array(
'descrip' => 'MongoDB support (PECL extension)',
'error' => 'If you want to use the MongoDB NoSQL database backend, you must install the mongo(db) extension.',
'function' => '_checkMongo'
),
'mysql' => array(
'descrip' => 'MySQL Support',
'error' => 'The MySQL extensions are only required if you want to use a MySQL database server for data storage. See the PHP documentation on how to enable MySQL support when compiling PHP.',
'function' => '_checkMysql'
),
'openssl' => array(
'descrip' => 'OpenSSL Support',
'error' => 'The OpenSSL extension is required for various cryptographic actions (highly recommended). Compile PHP with --with-openssl
to activate the extension.'
),
'pam' => array(
'descrip' => 'PAM Support (PECL extension)',
'error' => 'The PAM PECL extension is required to allow PAM authentication to be used.',
'function' => '_checkPam'
),
'pdo' => array(
'descrip' => 'PDO',
'error' => 'The PDO extension is required if you plan on using a database backend other than mysql or mysqli with Horde_Db.',
),
'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',
'error' => 'Session support is required to use Horde. Don\'t compile PHP with --disable-all/--disable-session
.',
'fatal' => true
),
'SimpleXML' => array(
'descrip' => 'SimpleXML support',
'error' => 'Horde will not run without the SimpleXML extension. Don\'t compile PHP with --disable-all/--disable-simplexml
.',
'fatal' => true
),
'tidy' => array(
'descrip' => 'Tidy support',
'error' => 'The tidy PHP extension is used to sanitize HTML data. Compile PHP with --with-tidy
to activate the extension.'
),
'xml' => array(
'descrip' => 'XML Parser support',
'error' => 'Horde will not run without the xml extension. Don\'t compile PHP with --disable-all/--without-xml
.',
'fatal' => true,
'function' => '_checkLibxmlVersion'
),
'zlib' => array(
'descrip' => 'Zlib Support',
'error' => 'The zlib extension is highly recommended for use with Horde. It allows page compression and handling of ZIP and GZ data. Compile PHP with --with-zlib
to activate.'
)
);
/**
* PHP settings list.
*
* KEY: setting name
* VALUE: An array with the following entries:
* error: (string) Error message.
* function: (string) Reference to function to run. If function
* returns non-empty value, error message will be output.
* setting: (mixed) Either a boolean (whether setting should be
* on or off) or 'value', which will simply output the
* value of the setting.
*
*
* @var array
*/
protected $_settingsList = array(
'allow_url_include' => array(
'setting' => false,
'error' => 'This is a security hazard. Horde will attempt to disable automatically, but it is best to manually disable also.'
),
'magic_quotes_runtime' => array(
'setting' => false,
'error' => 'magic_quotes_runtime may cause problems with database inserts, etc. Horde will attempt to disable automatically, but it is best to manually disable also. This setting is deprecated in PHP 5.3.'
),
'magic_quotes_sybase' => array(
'setting' => false,
'error' => 'magic_quotes_sybase may cause problems with database inserts, etc. Horde will attempt to disable automatically, but it is best to manually disable also. This setting is deprecated in PHP 5.3.'
),
'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. It is recommended to set the value of memory_limit in php.ini to at least 64M.',
'function' => '_checkMemoryLimit'
),
'register_globals' => array(
'setting' => false,
'error' => 'Horde will fatally exit if register_globals is set. Turn it off. This setting is deprecated in PHP 5.3.'
),
'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. This setting is deprecated in PHP 5.3.'
),
'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.'
),
'session.gc_divisor' => array(
'setting' => 'value',
'error' => 'PHP automatically garbage collects old session information, as long as this setting (and session.gc_probability) are set to non-zero. It is recommended that this value be "10000" or higher (see docs/INSTALL).',
'function' => '_checkGcDivisor'
),
'session.gc_probability' => array(
'setting' => 'value',
'error' => 'PHP automatically garbage collects old session information, as long as this setting (and session.gc_divisor) are set to non-zero. It is recommended that this value be "1". Some distributions may implement the garbage collection externally through a cronjob though.',
'function' => '_checkGcProbability'
),
'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.'
),
'tidy.clean_output' => array(
'setting' => false,
'error' => 'This will break output of any dynamically created, non-HTML content. Horde will attempt to disable automatically, but it is best to manually disable also.'
),
'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.'
)
);
/**
* PEAR modules list.
*
* KEY: PEAR class name
* VALUE: An array with the following entries:
* depends: (?) This module depends on another module.
* error: (string) Error message.
* function: (string) Reference to function to run if module is
* found.
* path: (string) The path to the PEAR module. Only needed if
* KEY is not autoloadable.
* required: (boolean) Is this PEAR module required?
*
*
* @var array
*/
protected $_pearList = array(
'File_Fstab' => array(
'error' => 'Horde requires the File_Fstab package if using the localhost driver for the Accounts block.'
),
'Net_DNS2' => array(
'error' => 'Net_DNS2 can speed up hostname lookups against broken DNS servers.'
),
'Services_Weather' => array(
'error' => 'Services_Weather is used by the METAR weather applet/block on the portal page.'
),
'Predis\\Client' => array(
'error' => 'The Predis library is only needed if you are using a Redis server as a hash table backend for caching or sessions. This library is provided by the pear.nrk.io PEAR channel.',
),
);
/**
* Required configuration files.
*
* KEY: file path
* VALUE: The error message to use (null to use default message)
*
*
* @var array
*/
protected $_fileList = array(
'config/conf.php' => 'You need to login to Horde as an administrator and create the configuration file.'
);
/**
* Inter-Horde application dependencies.
*
* KEY: app name
* VALUE: An array with the following entries:
* error: (string) Error message.
* version: (string) Minimum version required of the app.
*
*
* @var array
*/
protected $_appList = array();
/**
* Constructor.
*/
public function __construct()
{
/* Store the PHP version information. */
$this->_phpver = $this->_splitPhpVersion(PHP_VERSION);
/* We want to be as verbose as possible here. */
error_reporting(E_ALL);
/* Set character encoding. */
header('Content-type: text/html; charset=UTF-8');
header('Vary: Accept-Language');
}
/**
* Parse PHP version.
*
* @param string $version A PHP-style version string (X.X.X).
*
* @param array The parsed string.
* Keys: 'major', 'minor', 'subminor', 'class'
*/
protected function _splitPhpVersion($version)
{
/* First pick off major version, and lower-case the rest. */
if ((strlen($version) >= 3) && ($version[1] == '.')) {
$phpver['major'] = substr($version, 0, 3);
$version = substr(strtolower($version), 3);
} else {
$phpver['major'] = $version;
$phpver['class'] = 'unknown';
return $phpver;
}
if ($version[0] == '.') {
$version = substr($version, 1);
}
/* Next, determine if this is 4.0b or 4.0rc; if so, there is no
minor, the rest is the subminor, and class is set to beta. */
$s = strspn($version, '0123456789');
if ($s == 0) {
$phpver['subminor'] = $version;
$phpver['class'] = 'beta';
return $phpver;
}
/* Otherwise, this is non-beta; the numeric part is the minor,
the rest is either a classification (dev, cvs) or a subminor
version (rc, pl). */
$phpver['minor'] = substr($version, 0, $s);
if ((strlen($version) > $s) &&
(($version[$s] == '.') || ($version[$s] == '-'))) {
++$s;
}
$phpver['subminor'] = substr($version, $s);
if (($phpver['subminor'] == 'cvs') ||
($phpver['subminor'] == 'dev') ||
(substr($phpver['subminor'], 0, 2) == 'rc')) {
unset($phpver['subminor']);
$phpver['class'] = 'dev';
} else {
if (!$phpver['subminor']) {
unset($phpver['subminor']);
}
$phpver['class'] = 'release';
}
return $phpver;
}
/**
* Check the list of PHP modules.
*
* @return string The HTML output.
*/
public function phpModuleCheck()
{
$output = '';
foreach ($this->_moduleList as $key => $val) {
$error_msg = $mod_test = $status_out = $fatal = null;
$test_function = null;
$entry = array();
if (is_array($val)) {
$descrip = $val['descrip'];
$fatal = !empty($val['fatal']);
if (isset($val['phpver']) &&
(version_compare(PHP_VERSION, $val['phpver']) == -1)) {
$mod_test = true;
$status_out = 'N/A';
}
if (isset($val['error'])) {
$error_msg = $val['error'];
}
if (isset($val['function'])) {
$test_function = $val['function'];
}
} else {
$descrip = $val;
}
if (is_null($status_out)) {
if (is_null($test_function)) {
$mod_test = extension_loaded($key);
} else {
$mod_test = call_user_func(array($this, $test_function));
if (is_string($mod_test)) {
$error_msg = $mod_test;
$mod_test = false;
}
}
$status_out = $this->_status($mod_test, $fatal);
}
$entry[] = $descrip;
$entry[] = $status_out;
if (!is_null($error_msg) && !$mod_test) {
$entry[] = $error_msg;
if (!$fatal) {
$entry[] = 1;
}
}
$output .= $this->_outputLine($entry);
if ($fatal && !$mod_test) {
echo $output;
exit;
}
}
return $output;
}
/**
* Check for either horde_lz4 or lzf.
*
* @return boolean False on error.
*/
protected function _checkLzCompression()
{
return extension_loaded('horde_lz4') || extension_loaded('lzf');
}
/**
* Additional check for iconv module implementation.
*
* @return boolean False on error.
*/
protected function _checkIconvImplementation()
{
return extension_loaded('iconv') &&
in_array(ICONV_IMPL, array('libiconv', 'glibc'));
}
/**
* Additional check for libxml version.
*
* @return boolean False on error.
*/
protected function _checkLibxmlVersion()
{
if (!extension_loaded('xml')) {
return false;
}
if (LIBXML_VERSION < 20700) {
return 'The libxml version is too old. libxml 2.7 or later is required.';
}
return true;
}
/**
* Additional check for fileinfo module.
*
* @return boolean False on error.
*/
protected function _checkFileinfo()
{
if (extension_loaded('fileinfo') &&
($res = @finfo_open())) {
finfo_close($res);
return true;
}
return false;
}
/**
*/
protected function _checkPam()
{
if (extension_loaded('pam')) {
return true;
}
if (extension_loaded('pam_auth')) {
return 'The PAM extension is required to allow PAM authentication to be used. You have an improper PAM extension loaded. Some installations (e.g. Debian, Ubuntu) ship with an altered version of the PAM extension. You must uninstall this extension and reinstall from PECL.';
}
return false;
}
/**
*/
protected function _checkMongo()
{
if (extension_loaded('mongodb')) {
return true;
}
if (!extension_loaded('mongo')) {
return false;
}
if (version_compare(phpversion('mongo'), '1.3.0') === -1) {
return 'The Mongo extension you have installed is too old.';
}
return true;
}
/**
*/
protected function _checkMysql()
{
return extension_loaded('mysqli') || extension_loaded('pdo_mysql');
}
/**
*/
protected function _checkMemcache()
{
return extension_loaded('memcached') ||
extension_loaded('memcache');
}
/**
* Checks the list of PHP settings.
*
* @params array $settings The list of settings to check.
*
* @return string The HTML output.
*/
public function phpSettingCheck($settings = null)
{
$output = '';
if (is_null($settings)) {
$settings = $this->_settingsList;
}
foreach ($settings as $key => $val) {
$entry = array();
if (is_bool($val['setting'])) {
$result = (ini_get($key) == $val['setting']);
$entry[] = $key . ' ' . (($val['setting'] === true) ? 'enabled' : 'disabled');
$entry[] = $this->_status($result);
if (!$result &&
(!isset($val['function']) ||
call_user_func(array($this, $val['function'])))) {
$entry[] = $val['error'];
}
} elseif ($val['setting'] == 'value') {
$entry[] = $key . ' value';
$entry[] = ini_get($key);
if (!empty($val['error']) &&
(!isset($val['function']) ||
call_user_func(array($this, $val['function'])))) {
$entry[] = $val['error'];
$entry[] = 1;
}
}
$output .= $this->_outputLine($entry);
}
return $output;
}
/**
* Check the list of PEAR modules.
*
* @return string The HTML output.
*/
public function pearModuleCheck()
{
$output = '';
/* Turn tracking of errors on. */
ini_set('track_errors', 1);
/* Print the include_path. */
$output .= $this->_outputLine(array("PEAR Search Path (PHP's include_path)", ' ' . ini_get('include_path') . ''));
/* Check for PEAR in general. */
@include_once 'PEAR.php';
$entry = array(
'PEAR',
$this->_status(!isset($php_errormsg)),
);
if (isset($php_errormsg)) {
$entry[] = 'Check your PHP include_path setting to make sure it has the PEAR library directory.';
$output .= $this->_outputLine($entry);
ini_restore('track_errors');
return $output;
}
$output .= $this->_outputLine($entry);
/* Go through module list. */
$succeeded = array();
foreach ($this->_pearList as $key => $val) {
$entry = array();
/* If this module depends on another module that we
* haven't succesfully found, fail the test. */
if (!empty($val['depends']) && empty($succeeded[$val['depends']])) {
$result = false;
} elseif (empty($val['path'])) {
$result = @class_exists($key);
} else {
$result = @include_once $val['path'];
}
$error_msg = $val['error'];
if ($result && isset($val['function'])) {
$func_output = call_user_func(array($this, $val['function']));
if ($func_output) {
$result = false;
$error_msg = $func_output;
}
}
$entry[] = $key;
$entry[] = $this->_status($result, !empty($val['required']));
if ($result) {
$succeeded[$key] = true;
} else {
if (!empty($val['required'])) {
$error_msg .= ' THIS IS A REQUIRED MODULE!';
}
$entry[] = $error_msg;
if (empty($val['required'])) {
$entry[] = 1;
}
}
$output .= $this->_outputLine($entry);
}
/* Restore previous value of 'track_errors'. */
ini_restore('track_errors');
return $output;
}
/**
* Additional check for 'session.gc_divisor'.
*
* @return boolean Returns true if error string should be displayed.
*/
protected function _checkMemoryLimit()
{
$memlimit = trim(ini_get('memory_limit'));
switch (strtolower(substr($memlimit, -1))) {
case 'g':
$memlimit *= 1024;
// Fall-through
case 'm':
$memlimit *= 1024;
// Fall-through
case 'k':
$memlimit *= 1024;
// Fall-through
}
return ($memlimit < 67108864);
}
/**
* Additional check for 'session.gc_divisor'.
*
* @return boolean Returns true if error string should be displayed.
*/
protected function _checkGcDivisor()
{
return (ini_get('session.gc_divisor') < 10000);
}
/**
* Additional check for 'session.gc_probability'.
*
* @return boolean Returns true if error string should be displayed.
*/
protected function _checkGcProbability()
{
return !(ini_get('session.gc_probability') &&
ini_get('session.gc_divisor'));
}
/**
* Check the list of required files
*
* @return string The HTML output.
*/
public function requiredFileCheck()
{
$php = System::which('php', null);
$output = is_null($php)
? 'Cannot find PHP command-line binary on your system. Syntax checking of configuration files is disabled.
'
: '';
ksort($this->_fileList);
return $output . $this->_requiredFileCheck($this->_fileList, $php);
}
/**
* Check the list of required files
*
* @param array $filelist List of files to check.
* @param string $php PHP CLI location.
* @param boolean $is_local Is filelist a "local" file?
*
* @return string The HTML output.
*/
protected function _requiredFileCheck($filelist, $php, $is_local = false)
{
$filedir = $GLOBALS['registry']->get('fileroot');
$output = $tmp = '';
foreach ($filelist as $key => $val) {
$entry = array($key);
$file = $filedir . '/' . $key;
$entry2 = null;
if (file_exists($file)) {
if (is_readable($file)) {
if (is_null($php)) {
$entry[] = $this->_status(true);
$check_local = true;
} else {
exec(escapeshellcmd($php) . ' -l ' . escapeshellarg($file), $tmp, $error);
if ($error === 255) {
$entry[] = $this->_status(false);
$entry[] = 'The file ' . htmlspecialchars($key) . '
has PHP syntax errors:' . "\n" . htmlspecialchars(trim(implode("\n", $tmp))) . '
';
} else {
ob_start();
include $file;
$parse_contents = trim(ob_get_clean());
if (strlen($parse_contents)) {
$entry[] = $this->_status(false);
$contents = file_get_contents($file);
if (preg_match("/' . htmlspecialchars($key) . ' is outputting a non-empty string when parsed. Configuration files should not output anything. Output string:' . "\n" . htmlspecialchars($parse_contents) . '
';
} else {
$entry[] = 'The file ' . htmlspecialchars($key) . '
appears to be missing the \'<?php\' opening tag.';
}
} else {
$entry[] = $this->_status(true);
$check_local = true;
}
}
}
if ($check_local && !$is_local) {
$local_file = preg_replace("/\.php$/", '.local.php', $key);
if (file_exists($filedir . '/' . $local_file)) {
$entry2 = $this->_requiredFileCheck(array(
$local_file => null
), $php, true);
}
}
} else {
$entry[] = $this->_status(false);
$entry[] = 'The file ' . htmlspecialchars($key) . '
is not readable by the web user.';
}
} else {
$entry[] = $this->_status(false);
$entry[] = empty($val)
? 'The file ' . htmlspecialchars($key) . '
appears to be missing.'
: $val;
}
$output .= $this->_outputLine($entry);
if (!is_null($entry2)) {
$output .= $entry2;
}
}
return $output;
}
/**
* Check the list of required Horde applications.
*
* @return string The HTML output.
*/
public function requiredAppCheck()
{
$output = '';
$horde_apps = $GLOBALS['registry']->listApps(null, true, null);
foreach ($this->_appList as $key => $val) {
$entry = array();
$entry[] = $key;
if (!isset($horde_apps[$key])) {
$entry[] = $this->_status(false, false);
$entry[] = $val['error'];
$entry[] = 1;
} else {
/* Strip '-git', and H# (ver) from version string. */
$origver = $GLOBALS['registry']->getVersion($key);
$appver = preg_replace('/(H\d) \((.*)\)/', '$2', str_replace('-git', '', $origver));
if (version_compare($val['version'], $appver) === 1) {
$entry[] = $this->_status(false, false) . ' (Have version: ' . $origver . '; Need version: ' . $val['version'] . ')';
$entry[] = $val['error'];
$entry[] = 1;
} else {
$entry[] = $this->_status(true) . ' (Version: ' . $origver . ')';
}
}
$output .= $this->_outputLine($entry);
}
return $output;
}
/**
* Obtain information on the PHP version.
*
* @return object stdClass TODO
*/
public function getPhpVersionInformation()
{
$output = new stdClass;
$vers_check = true;
$testscript = Horde::selfUrl(true);
$output->phpinfo = $testscript->copy()->add('mode', 'phpinfo');
$output->extensions = $testscript->copy()->add('mode', 'extensions');
$output->version = PHP_VERSION;
$output->major = $this->_phpver['major'];
if (isset($this->_phpver['minor'])) {
$output->minor = $this->_phpver['minor'];
}
if (isset($this->_phpver['subminor'])) {
$output->subminor = $this->_phpver['subminor'];
}
$output->class = $this->_phpver['class'];
$output->status_color = 'red';
if ($output->major < '5.3') {
$output->status = 'This version of PHP is not supported. You need to upgrade to a more recent version.';
$vers_check = false;
} elseif ($output->major == '5.3') {
$output->status = 'You are using an old, deprecated version of PHP. It is highly recommended that you upgrade to at least PHP 5.4 for performance, stability, and security reasons.';
$output->status_color = 'orange';
} elseif (in_array($output->major, $this->_supported)) {
$output->status = 'You are running a supported version of PHP.';
$output->status_color = 'green';
} else {
$output->status = 'This version of PHP has not been fully tested with this version of Horde.';
$output->status_color = 'orange';
}
if (!$vers_check) {
$output->version_check = 'Horde requires PHP 5.3.0 or greater.';
}
return $output;
}
/**
* Output the results of a status check.
*
* @param boolean $bool The result of the status check.
* @param boolean $required Whether the checked item is required.
*
* @return string The HTML of the result of the status check.
*/
protected function _status($bool, $required = true)
{
if ($bool) {
return 'Yes';
} elseif ($required) {
return 'No';
}
return 'No';
}
/**
* Internal output function.
*
* @param array $entry Array with the following values:
*
* 1st value: Header
* 2nd value: Test Result
* 3rd value: Error message (if present)
* 4th value: Error level (if present): 0 = error, 1 = warning
*
*
* @return string HTML output.
*/
protected function _outputLine($entry)
{
$output = '' . array_shift($entry) . ': ' . array_shift($entry);
if (!empty($entry)) {
$msg = array_shift($entry);
$output .= '
' . $msg . "\n";
}
return $output . "\n";
}
/**
* Any application specific tests that need to be done.
*
* @return string HTML output.
*/
public function appTests()
{
/* File upload information. */
$upload_check = $this->phpSettingCheck(array(
'file_uploads' => array(
'error' => 'file_uploads must be enabled for some features like sending emails with IMP.',
'setting' => true
)
));
$upload_tmp_dir = ($dir = ini_get('upload_tmp_dir'))
? 'upload_tmp_dir: ' . $dir . ''
: '';
$ret = 'File Uploads
' .
$upload_check .
$upload_tmp_dir .
'- upload_max_filesize: ' . ini_get('upload_max_filesize') . '
'.
'- post_max_size: ' . ini_get('post_max_size') . '
' .
'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.'.
'
';
/* Determine if 'static' is writable by the web user. */
$user = function_exists('posix_getuid') ? posix_getpwuid(posix_getuid()) : null;
$static_dir = $GLOBALS['registry']->get('staticfs', 'horde');
$ret .= 'Local File Permissions
' .
sprintf('- Is %s writable by the web server user%s? ',
htmlspecialchars($static_dir),
$user ? (' (' . $user['name'] . ')') : '');
$ret .= is_writable($static_dir)
? 'Yes'
: 'No
If caching javascript and CSS files by storing them in static files (HIGHLY RECOMMENDED), this directory must be writable as the user the web server runs as%s.';
/* Determine if 'tmpdir' is writable by the web user. */
$tmpdir = Horde::getTempDir();
$ret .= sprintf(
' - Is tmpdir %s writable by the web server user%s? ',
htmlspecialchars($tmpdir),
$user ? (' (' . $user['name'] . ')') : ''
);
$ret .= is_writable($tmpdir)
? 'Yes'
: 'No
';
if (extension_loaded('imagick')) {
$im = new Imagick();
$imagick = is_callable(array($im, 'getIteratorIndex'));
$ret .= '
Imagick
' .
'- Imagick compiled against current ImageMagick version: Yes' : 'red">No') . '';
}
return $ret . '
';
}
}