0) && ($mem_allowed_int < 32000000)) { $mem_warning='You should increase this value to at least 32M. '; }
// capture the PHP "General Info" table
ob_start();
phpinfo(INFO_GENERAL);
$s = ob_get_contents();
ob_end_clean();
//
System
Windows NT BLINKYZERO 6.0 build 6000
// since preg_* are potentially missing, we'll have to do this without regexps.
foreach (explode("\n",$s) as $line)
{
$line = str_replace('
','',$line);
$line = str_replace('
','',$line);
$line = str_replace('
',' => ',$line);
$sep_pos = strpos($line," => ");
if($sep_pos!==FALSE)
{
// by here, it should be a straight "name => value"
$name = substr($line,0,$sep_pos);
$value = substr($line,$sep_pos+4);
$php_general[$name] = $value;
}
}
$ini_file = $php_general['Configuration File (php.ini) Path'];
$extra_ini = php_ini_scanned_files();
if($extra_ini != '')
{ $extra_ini = "The following additional ini files were read: $extra_ini"; }
else { $extra_ini = "There were no additional ini files, according to PHP."; }
$gdversion = "";
$gdbuiltin=FALSE;
$gdstring = "";
if(function_exists('gd_info'))
{
$gdinfo = gd_info();
$gdversion=$gdinfo['GD Version'];
if(strpos($gdversion,"bundled") !== FALSE)
{
$gdbuiltin=TRUE;
$gdstring="This PHP uses the 'bundled' GD library, which doesn't have alpha-blending bugs. That's good!\n";
}
else
{
$gdstring="This PHP uses the system GD library, which MIGHT have alpha-blending bugs. Check that you have at least GD 2.0.34 installed, if you see problems with weathermap segfaulting.\n";
}
}
else
{
$gdstring = "The gdinfo() function is not available, which means that either the GD extension is not available, not enabled, or not installed.\n";
}
if(isset($argv))
{
$environment = "CLI";
print "\n----------------------------------------------------\nWeathermap Pre-Install Checker\n\n";
print "This script checks for some common problems with your PHP and server\nenvironment that may stop Weathermap or the Editor from working.\n\n";
print "NOTE: You should run this script as both a web page AND from the\ncommand-line, as the environment can be different in each.\n";
print "\nThis is the PHP version that is responsible for \n* creating maps from the Cacti poller\n* the command-line weathermap tool\n\n";
print "PHP Basics\n----------\n";
print wordwrap("This is PHP Version $php_version running on \"$php_os\" with a memory_limit of '$mem_allowed'. $mem_warning\n");
print "\nThe php.ini file was $ini_file\n$extra_ini\n\n";
print "";
print "PHP Functions\n-------------\n";
print "Some parts of Weathermap need special support in your PHP\ninstallation to work.\n\n";
print wordwrap($gdstring)."\n";
}
else
{
$environment = "web";
?>
Weathermap Pre-Install Checker
Weathermap Pre-install Checker
This page checks for some common problems with your PHP and server environment that may stop Weathermap or the Editor from working.
NOTE: You should run this script as a web page AND from the command-line, as the environment can be different in each.
PHP Basics
This is the PHP version that is responsible for
The web-based editor
Building maps with Rebuild Now from Cacti
This is PHP Version running on "" with a memory_limit of ''.
The php.ini file was
PHP Functions
Some parts of Weathermap need special support in your PHP installation to work.
array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagecreatetruecolor' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagealphablending' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imageSaveAlpha' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'preg_match'=> array(TRUE,FALSE,'configuration reading','provided by the "pcre" extension') ,
'imagecreatefrompng' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagecreatefromjpeg' => array(FALSE,FALSE,'JPEG input support for ICON and BACKGROUND','an optional part of the GD library and the "gd" PHP extension'),
'imagecreatefromgif' => array(FALSE,FALSE,'GIF input support for ICON and BACKGROUND','an optional part of the GD library and the "gd" PHP extension'),
'imagejpeg' => array(FALSE,FALSE,'JPEG output support','an optional part of the GD library and the "gd" PHP extension'),
'imagegif' => array(FALSE,FALSE,'GIF output support','an optional part of the GD library and the "gd" PHP extension'),
'imagecopyresampled' => array(FALSE,FALSE,'Thumbnail creation in the Cacti plugin','an optional part of the GD library and the "gd" PHP extension'),
'imagettfbbox' => array(FALSE,FALSE,'TrueType font support','an optional part of the GD library and the "gd" PHP extension'),
'memory_get_usage' => array(FALSE,TRUE,'memory-usage debugging','not supported on all PHP versions and platforms')
);
$results=array();
if($environment == 'CLI')
{
// Console_Getopt is only needed by the CLI tool.
$included = @include_once 'Console/Getopt.php';
if($included != 1)
{
$noncritical++;
print wordwrap("The Console_Getopt PEAR module is not available. The CLI weathermap tool will not run without it (that may not be a problem, if you only intend to use Cacti).\n\n");
}
else
{
print wordwrap("The Console_Getopt PEAR module is available. That's good!\n\n");
}
}
foreach ($functions as $function=>$details)
{
$exists = ""; $notes="";
if($environment=='web') print "
minor ";
}
}
$explanation = "This is required for ".$details[2].". It is ".$details[3].".";
$notes .= $explanation;
if($environment=='web') print "$explanation
check that the 'extension=' line for that extension is uncommented in your php.ini file (then restart your webserver), or
install the extension, if it isn't installed already
";
}
else
{
print "\nIf these functions are not found, you may need to\n * check that the 'extension=' line for that extension is uncommented in\n your php.ini file (then restart your webserver), or\n * install the extension, if it isn't installed already\n\n";
}
print wordwrap("The details of how this is done will depend on your operating system, and on where you installed (or compiled) your PHP from originally. Usually, you would install an RPM, or other package on Linux systems, a port on *BSD, or a DLL on Windows. If you build PHP from source, you need to add extra options to the './configure' line. Consult your PHP documention for more information.\n");
if($environment=='web') print "";
}
if($environment=="CLI") print "\n---------------------------------------------------------------------\n";
if($critical>0)
{
if($environment=='web') print "
";
print wordwrap("There are problems with your PHP or server environment that will stop Weathermap from working. You need to correct this issues if you wish to use Weathermap.\n");
if($environment=='web') print "
";
print wordwrap("Some features of Weathermap will not be available to you, due to lack of support in your PHP installation. You can still proceed with Weathermap though.\n");
if($environment=='web') print "
";
}
else
{
if($environment=='web') print "
";
print wordwrap("OK! Your PHP and server environment *seems* to have support for ALL of the Weathermap features. Make sure you have run this script BOTH as a web page and from the CLI to be sure, however.\n");
if($environment=='web') print "
";
}
}
if($environment=='web') print "";
function return_bytes($val) {
$val = trim($val);
if($val != '')
{
$last = strtolower($val{strlen($val)-1});
switch($last) {
// The 'G' modifier is available since PHP 5.1.0
case 'g':
$val *= 1024;
case 'm':
$val *= 1024;
case 'k':
$val *= 1024;
}
}
else
{
$val = 0;
}
return $val;
}
?>
System
Windows NT BLINKYZERO 6.0 build 6000
// since preg_* are potentially missing, we'll have to do this without regexps.
foreach (explode("\n",$s) as $line)
{
$line = str_replace('
','',$line);
$line = str_replace('
','',$line);
$line = str_replace('
',' => ',$line);
$sep_pos = strpos($line," => ");
if($sep_pos!==FALSE)
{
// by here, it should be a straight "name => value"
$name = substr($line,0,$sep_pos);
$value = substr($line,$sep_pos+4);
$php_general[$name] = $value;
}
}
$ini_file = $php_general['Configuration File (php.ini) Path'];
$extra_ini = php_ini_scanned_files();
if($extra_ini != '') $extra_ini = "The following additional ini files were read: $extra_ini";
if(isset($argv))
{
$environment = "CLI";
print "\n----------------------------------------------------\nWeathermap Pre-Install Checker\n\n";
print "This script checks for some common problems with your PHP and server\nenvironment that may stop Weathermap or the Editor from working.\n\n";
print "NOTE: You should run this script as both a web page AND from the\ncommand-line, as the environment can be different in each.\n\n";
print "PHP Basics\n----------\n";
print wordwrap("This is PHP Version $php_version running on \"$php_os\" with a memory_limit of $mem_allowed\n");
print "\nThe php.ini file was $ini_file\n$extra_ini\n\n";
print "PHP Functions\n-------------\n";
print "Some parts of Weathermap need special support in your PHP\ninstallation to work.\n\n";
}
else
{
$environment = "web";
?>
Weathermap Pre-Install Checker
Weathermap Pre-install Checker
This page checks for some common problems with your PHP and server environment that may stop Weathermap or the Editor from working.
NOTE: You should run this script as a web page AND from the command-line, as the environment can be different in each.
PHP Basics
This is PHP Version running on "" with a memory_limit of
The php.ini file was
PHP Functions
Some parts of Weathermap need special support in your PHP installation to work.
array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagecreatetruecolor' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagealphablending' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imageSaveAlpha' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'preg_match'=> array(TRUE,FALSE,'configuration reading','provided by the "pcre" extension') ,
'imagecreatefrompng' => array(TRUE,FALSE,'all of Weathermap','part of the GD library and the "gd" PHP extension'),
'imagecreatefromjpeg' => array(FALSE,FALSE,'JPEG input support for ICON and BACKGROUND','an optional part of the GD library and the "gd" PHP extension'),
'imagecreatefromgif' => array(FALSE,FALSE,'GIF input support for ICON and BACKGROUND','an optional part of the GD library and the "gd" PHP extension'),
'imagejpeg' => array(FALSE,FALSE,'JPEG output support','an optional part of the GD library and the "gd" PHP extension'),
'imagegif' => array(FALSE,FALSE,'GIF output support','an optional part of the GD library and the "gd" PHP extension'),
'imagecopyresampled' => array(FALSE,FALSE,'Thumbnail creation in the Cacti plugin','an optional part of the GD library and the "gd" PHP extension'),
'imagettfbbox' => array(FALSE,FALSE,'TrueType font support','an optional part of the GD library and the "gd" PHP extension'),
'memory_get_usage' => array(FALSE,TRUE,'memory-usage debugging','not supported on all PHP versions and platforms')
);
$results=array();
foreach ($functions as $function=>$details)
{
$exists = ""; $notes="";
if($environment=='web') print "
minor ";
}
}
$explanation = "This is required for ".$details[2].". It is ".$details[3].".";
$notes .= $explanation;
if($environment=='web') print "$explanation
check that the 'extension=' line for that extension is uncommented in your php.ini file (then restart your webserver), or
install the extension, if it isn't installed already
";
}
else
{
print "\nIf these functions are not found, you may need to\n * check that the 'extension=' line for that extension is uncommented in\n your php.ini file (then restart your webserver), or\n * install the extension, if it isn't installed already\n\n";
}
print wordwrap("The details of how this is done will depend on your operating system, and on where you installed (or compiled) your PHP from originally. Usually, you would install an RPM, or other package on Linux systems, a port on *BSD, or a DLL on Windows. If you build PHP from source, you need to add extra options to the './configure' line. Consult your PHP documention for more information.\n");
if($environment=='web') print "";
}
if($environment=="CLI") print "\n---------------------------------------------------------------------\n";
if($critical>0)
{
if($environment=='web') print "
";
print wordwrap("There are problems with your PHP or server environment that will stop Weathermap from working. You need to correct this issues if you wish to use Weathermap.\n");
if($environment=='web') print "
";
print wordwrap("Some features of Weathermap will not be available to you, due to lack of support in your PHP installation. You can still proceed with Weathermap though.\n");
if($environment=='web') print "
";
}
else
{
if($environment=='web') print "
";
print wordwrap("OK! Your PHP and server environment seems to have support for ALL of the Weathermap features. Make sure you have run this script BOTH as a web page and from the CLI to be sure, however.\n");
if($environment=='web') print "