<?php
//////////////////////////////////////////////////////////////
//   phpThumb() by James Heinrich <info@silisoftware.com>   //
//        available at http://phpthumb.sourceforge.net      //
//         and/or https://github.com/JamesHeinrich/phpThumb //
//////////////////////////////////////////////////////////////
///                                                         //
// phpThumb.demo.check.php                                  //
// James Heinrich <info@silisoftware.com>                   //
//                                                          //
// Configuration analyzer for phpThumb settings and server  //
// settings that may affect phpThumb performance            //
// Live demo is at http://phpthumb.sourceforge.net/demo/    //
//                                                          //
//////////////////////////////////////////////////////////////
//die('For security reasons, this demo is disabled by default. Please comment out line '.__LINE__.' in '.basename(__FILE__));

$ServerInfo['gd_string']  = 'unknown';
$ServerInfo['gd_numeric'] = 0;
//ob_start();
if (!include_once '../phpthumb.functions.php' ) {
    
ob_end_flush();
    die(
'failed to include_once("../phpthumb.functions.php")');
}
if (!include_once 
'../phpthumb.class.php' ) {
    
//ob_end_flush();
    
die('failed to include_once("../phpthumb.class.php")');
}
//ob_end_clean();
$phpThumb = new phpThumb();
if (
file_exists('../phpThumb.config.php') && include_once '../phpThumb.config.php' ) {
    foreach (
$PHPTHUMB_CONFIG as $key => $value) {
        
$phpThumb->setParameter('config_'.$key$value);
    }
} else {
    echo 
'<div style="color: red; border: 1px red dashed; font-weight: bold; padding: 10px; margin: 10px; display: inline-block;">Error reading ../phpThumb.config.php</div><br>';
}

$ServerInfo['gd_string']  = phpthumb_functions::gd_version(true);
$ServerInfo['gd_numeric'] = phpthumb_functions::gd_version(false);
$ServerInfo['im_version'] = $phpThumb->ImageMagickVersion();
$gd_info                  gd_info();

?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <title>phpThumb configuration analyzer</title>
    <link rel="stylesheet" type="text/css" href="/style.css" title="style sheet">
</head>
<body style="background-color: #CCCCCC;">

This demo analyzes your settings (phpThumb.config.php and server/PHP) for <a href="http://phpthumb.sourceforge.net"><b>phpThumb()</b></a>.<br>
<br>
<table border="1">
    <tr><th colspan="8">&lt;-- bad . . . . . good --&gt;</th></tr>
    <tr>
        <td style="background-color: red;"       >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: orange;"    >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: yellow;"    >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: olive;"     >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: darkgreen;" >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: green;"     >&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: lightgreen;">&nbsp;&nbsp;&nbsp;&nbsp;</td>
        <td style="background-color: lime;"      >&nbsp;&nbsp;&nbsp;&nbsp;</td>
    </tr>
</table>
<table border="1" cellspacing="0" cellpadding="2">
<tr style="background-color: #EEEEEE;"><th>Setting</th><th colspan="2">Value</th><th>Comments</th></tr>
<?php

$versions
['raw'] = array(
    
'latest' => phpthumb_functions::SafeURLread('http://phpthumb.sourceforge.net/?latestversion=1'$dummy),
    
'this'   => $phpThumb->phpthumb_version,
);
foreach (
$versions['raw'] as $key => $value) {
    
preg_match('#^([0-9\\.]+)\\-?(([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2}))?#i'$value$matches);
    @list(
$huge$major$minor) = @explode('.', @$matches[1]);
    @list(
$year$month$day$hour$min) = @$matches[3];
    
$versions['base'][$key]  = $matches[1];
    
$versions['huge'][$key]  = $huge;
    
$versions['major'][$key] = $major;
    
$versions['minor'][$key] = $minor;
    
$versions['stamp'][$key] = $matches[2];
    
$versions['year'][$key]  = $year;
    
$versions['month'][$key] = $month;
    
$versions['day'][$key]   = $day;
    
$versions['hour'][$key]  = $hour;
    
$versions['min'][$key]   = $min;
    
$versions['date'][$key]  = @mktime($hour$min0$month$day$year);
}
$downloadlatest 'Download the latest version from <a href="https://github.com/JamesHeinrich/phpThumb/">https://github.com/JamesHeinrich/phpThumb/</a>';
echo 
'<tr><th nowrap>Latest phpThumb version:</th><th colspan="2">'.$versions['raw']['latest'].'</th><td>'.$downloadlatest.'</td></tr>';
echo 
'<tr><th nowrap>This phpThumb version:</th><th colspan="2" style="background-color: ';

if (!
$versions['base']['latest']) {
    
// failed to get latest version number
    
echo 'white';
    
$message 'Latest version unknown.<br>'.$downloadlatest;
} elseif (
phpthumb_functions::version_compare_replacement($versions['base']['this'], $versions['base']['latest'], '>')) {
    
// new than latest, must be beta version
    
echo 'lightblue';
    
$message 'This must be a pre-release beta version. Please report bugs to <a href="mailto:info@silisoftware.com">info@silisoftware.com</a>';
} elseif ((
$versions['base']['latest'] == $versions['base']['this']) && ($versions['stamp']['this'] > $versions['stamp']['latest'])) {
    
// new than latest, must be beta version
    
echo 'lightblue';
    
$message 'You must be using a pre-release beta version. Please report bugs to <a href="mailto:info@silisoftware.com">info@silisoftware.com</a>';
} elseif (
$versions['base']['latest'] == $versions['base']['this']) {
    
// latest version
    
echo 'lime';
    
$message 'You are using the latest released version.';
} elseif (
$versions['huge']['latest'].$versions['major']['latest'] == $versions['huge']['this'].$versions['major']['this']) {
    echo 
'olive';
    
$message 'One (or more) minor version(s) have been released since this version.<br>'.$downloadlatest;
} elseif ((float) (
$versions'huge'][ 'latest'].str_pad($versions'major'][ 'latest'], 2'0'STR_PAD_LEFT)) < (float) ($versions'huge'][ 'this'].str_pad($t_major2'0'STR_PAD_LEFT))) {
    echo 
'yellow';
    
$message 'One (or more) major version(s) have been released since this version, you really should upgrade.<br>'.$downloadlatest;
} else {
    echo 
'orange';
    
$message 'Fundamental changes have been made since this version.<br>'.$downloadlatest;
}
echo 
';">'.$phpThumb->phpthumb_version;
echo 
'</th><td>'.$message.'.<br></td></tr>';


echo 
'<tr><th>phpThumb.config.php:</th><th colspan="2" style="background-color: ';
if (
file_exists('../phpThumb.config.php') && !file_exists('../phpThumb.config.php.default')) {
    if (!
defined('phpThumbConfigFileVersion') || phpthumb_functions::version_compare_replacement($versions['base']['this'], phpThumbConfigFileVersion'>')) {
        echo 
'red;">"phpThumb.config.php" version does not match phpThumb version. Please be sure to use the config file from the phpThumb distribution (copy any customized settings to the .default file, then rename "phpThumb.config.php.default" to "phpThumb.config.php")';
    } else {
        echo 
'lime;">"phpThumb.config.php" exists and "phpThumb.config.php.default" does not';
    }
} elseif (
file_exists('../phpThumb.config.php') && file_exists('../phpThumb.config.php.default')) {
    echo 
'yellow;">"phpThumb.config.php" and "phpThumb.config.php.default" both exist';
} elseif (!
file_exists('../phpThumb.config.php') && file_exists('../phpThumb.config.php.default')) {
    echo 
'red;">rename "phpThumb.config.php.default" to "phpThumb.config.php"';
} else {
    echo 
'red;">"phpThumb.config.php" not found';
}
echo 
'</th><td>"phpThumb.config.php.default" that comes in the distribution must be renamed to "phpThumb.config.php" before phpThumb.php can be used. Avoid having both files present to minimize confusion.</td></tr>';


echo 
'<tr><th>phpThumb.config.php<br>[disable_debug]</th>';
echo 
'<th colspan="2" style="background-color: '.($PHPTHUMB_CONFIG['disable_debug'] ? 'lime' 'red').'">'.($PHPTHUMB_CONFIG['disable_debug'] ? 'true' 'false').'</th>';
echo 
'<td>DO NOT DISABLE THIS ON ANY PUBLIC-ACCESSIBLE SERVER. Prevents phpThumb from displaying any information about your system. If true, phpThumbDebug and error messages will be disabled. If set to false (debug messages enabled) then debug mode will be FORCED -- ONLY debug output will be presented, no actual thumbnail (to avoid accidentally leaving debug mode enabled on a production server).</td></tr>';

echo 
'<tr><th>phpThumb.config.php<br>[high_security_enabled]</th>';
echo 
'<th colspan="2" style="background-color: '.($PHPTHUMB_CONFIG['high_security_enabled'] ? 'lime' 'red').'">'.($PHPTHUMB_CONFIG['high_security_enabled'] ? 'true' 'false').'</th>';
echo 
'<td>DO NOT DISABLE THIS ON ANY PUBLIC-ACCESSIBLE SERVER. If disabled, your server is more vulnerable to hacking attempts, both on your server and via your server to other servers. When enabled, requires "high_security_password" set to be set and requires the use of phpThumbURL() function (at the bottom of phpThumb.config.php) to generate hashed URLs.</td></tr>';

echo 
'<tr><th>phpThumb.config.php<br>[high_security_password]</th>';
$password_complexity phpthumb_functions::PasswordStrength($PHPTHUMB_CONFIG['high_security_password']);
echo 
'<th colspan="2" style="background-color: '.(($password_complexity >= 20) ? 'lime' : ((strlen($PHPTHUMB_CONFIG['high_security_password']) > 0) ? 'orange' 'red')).'">'.(($password_complexity >= 20) ? 'sufficiently complex' : ((strlen($PHPTHUMB_CONFIG['high_security_password']) > 0) ? 'not complex enough' 'not set')).'</th>';
echo 
'<td>DO NOT DISABLE THIS ON ANY PUBLIC-ACCESSIBLE SERVER. If disabled, your server is more vulnerable to hacking attempts, both on your server and via your server to other servers. When enabled, requires "high_security_password" set to be set and requires the use of phpThumbURL() function (at the bottom of phpThumb.config.php) to generate hashed URLs.</td></tr>';


echo 
'<tr><th>cache directory:</th><th colspan="2">';
$orig_config_cache_directory $phpThumb->config_cache_directory;
$phpThumb->setCacheDirectory();
echo 
'<div style="background-color: '.(     is_dir($phpThumb->config_cache_directory) ? 'lime;">exists'   'red;">does NOT exist').'</div>';
echo 
'<div style="background-color: '.(is_readable($phpThumb->config_cache_directory) ? 'lime;">readable' 'red;">NOT readable'  ).'</div>';
echo 
'<div style="background-color: '.(is_writable($phpThumb->config_cache_directory) ? 'lime;">writable' 'red;">NOT writable'  ).'</div>';
echo 
'</th><td>Original: "'.htmlspecialchars($orig_config_cache_directory).'"<br>Resolved: "'.htmlspecialchars($phpThumb->config_cache_directory).'"<br>Must exist and be both readable and writable by PHP.</td></tr>';


echo 
'<tr><th>cache write test:</th><th colspan="2">';
$phpThumb->rawImageData 'phpThumb.demo.check.php_cachetest';
$phpThumb->SetCacheFilename();
echo 
'<div>'.htmlspecialchars($phpThumb->cache_filename implode(' / 'preg_split('#[/\\\\]#'$phpThumb->cache_filename)) : 'NO CACHE FILENAME RESOLVED').'</div>';
echo 
'<div>directory '.(is_dir(dirname($phpThumb->cache_filename)) ? 'exists' 'does NOT exist').' (before EnsureDirectoryExists())</div>';
phpthumb_functions::EnsureDirectoryExists(dirname($phpThumb->cache_filename));
echo 
'<div style="background-color: '.(is_dir(dirname($phpThumb->cache_filename)) ? 'lime;">directory exists' 'red;">directory does NOT exist').' (after EnsureDirectoryExists())</div>';
if (
$fp = @fopen($phpThumb->cache_filename'wb')) {
    
fwrite($fp'this is a test from '.__FILE__);
    
fclose($fp);
    echo 
'<div style="background-color: lime;">write test succeeded</div>';

    
$old_perms substr(sprintf('%o'fileperms($phpThumb->cache_filename)), -4);
    @
chmod($phpThumb->cache_filename0644);
    
clearstatcache();
    
$new_perms substr(sprintf('%o'fileperms($phpThumb->cache_filename)), -4);
    echo 
'<div style="background-color: '.(($new_perms == '0644') ? 'lime' : (($new_perms '0644') ? 'orange' 'red')).';">chmod($phpThumb->cache_filename, 0644) from "'.htmlspecialchars($old_perms).'" resulted in permissions "'.htmlspecialchars($new_perms).'"</div>';

    if (@
unlink($phpThumb->cache_filename)) {
        echo 
'<div style="background-color: lime;">delete test succeeded</div>';
    } else {
        echo 
'<div style="background-color: red;">delete test FAILED</div>';
    }
    
$phpThumb->CleanUpCacheDirectory();
} else {
    echo 
'<div style="background-color: red;">write test FAILED</div>';
}
//echo '</th><td>Original: "'.htmlspecialchars($orig_config_cache_directory).'"<br>Resolved: "'.htmlspecialchars($phpThumb->config_cache_directory).'"<br>Must exist and be both readable and writable by PHP.</td></tr>';
echo '</th><td>Created and deletes a sample cache file to see if you actually have create/delete permission.<br>If <i>Safe Mode</i> is enabled this is often broken.</td></tr>';


echo 
'<tr><th>temp directory:</th><th colspan="2">';
$orig_config_temp_directory $phpThumb->config_temp_directory;
echo 
$phpThumb->phpThumb_tempnam();
echo 
'<div style="background-color: '.(     is_dir($phpThumb->config_temp_directory) ? 'lime;">exists'   'red;">does NOT exist').'</div>';
echo 
'<div style="background-color: '.(is_readable($phpThumb->config_temp_directory) ? 'lime;">readable' 'red;">NOT readable'  ).'</div>';
echo 
'<div style="background-color: '.(is_writable($phpThumb->config_temp_directory) ? 'lime;">writable' 'red;">NOT writable'  ).'</div>';
echo 
'</th><td>Original: "'.htmlspecialchars($orig_config_temp_directory).'"<br>Resolved: "'.htmlspecialchars($phpThumb->config_temp_directory).'"<br>Must exist and be both readable and writable by PHP.</td></tr>';


echo 
'<tr><th>PHP version:</th><th colspan="2" style="background-color: ';
if (
phpthumb_functions::version_compare_replacement(PHP_VERSION'5.0.0''>=')) {
    echo 
'lime';
} elseif (
phpthumb_functions::version_compare_replacement(PHP_VERSION'4.4.2''=')) {
    echo 
'darkgreen';
} elseif (
phpthumb_functions::version_compare_replacement(PHP_VERSION'4.3.3''>=')) {
    echo 
'lightgreen';
} elseif (
phpthumb_functions::version_compare_replacement(PHP_VERSION'4.2.0''>=')) {
    echo 
'green';
} elseif (
phpthumb_functions::version_compare_replacement(PHP_VERSION'4.1.0''>=')) {
    echo 
'yellow';
} elseif (
phpthumb_functions::version_compare_replacement(PHP_VERSION'4.0.6''>=')) {
    echo 
'orange';
} else {
    echo 
'red';
}
echo 
';">'PHP_VERSION;
echo 
'</th><td>PHP5 is ideal (support for numerous built-in filters which are much faster than my code).<br>PHP v4.4.2 contains a bug in fopen over HTTP (phpThumb has a workaround)<br>PHP v4.3.2+ supports imagesavealpha which is required for proper PNG/ICO output.<br>imagerotate requires PHP v4.3.0+ (but buggy before v4.3.3).<br>EXIF thumbnail extraction requires PHP v4.2.0+.<br>Most things will work back to PHP v4.1.0, and mostly (perhaps buggy) back to v4.0.6, but no guarantees for any version older than that.</td></tr>';


echo 
'<tr><th>GD version:</th><th colspan="2" style="background-color: ';
if (
$ServerInfo['gd_numeric'] >= 2) {
    if (!empty(
$ServerInfo['gd_string']) && false !== stripos($ServerInfo'gd_string' ], 'bundled')) {
        echo 
'lime';
    } else {
        echo 
'yellow';
    }
} elseif (!empty(
$ServerInfo['im_version'])) {
    echo 
'orange';
} else {
    echo 
'red';
}
echo 
';">'.(!empty($ServerInfo['gd_string']) ? $ServerInfo['gd_string'] : 'n/a');
echo 
'</th><td>GD2-bundled version is ideal.<br>GD2 (non-bundled) is second choice, but there are a number of bugs in the non-bundled version. imagerotate is only available in the bundled version of GD2.<br>GD1 will also (mostly) work, at much-reduced image quality and several features disabled. phpThumb can perform most operations with ImageMagick only, even if GD is not available.</td></tr>';


$IMreleaseDate 0;
if (
preg_match('# ([0-9]{2})/([0-9]{2})/([0-9]{2}) #'$ServerInfo['im_version'], $matches)) {
    list(
$dummy$m$d$y) = $matches;
    if (
$y 70) {
        
$y += 2000;
    } elseif (
$y 100) {
        
$y += 1900;
    }
    
$IMreleaseDate mktime(1200$m$d$y);
} elseif (
preg_match('# ([0-9]{4})\\-([0-9]{2})\\-([0-9]{2}) #'$ServerInfo['im_version'], $matches)) {
    list(
$dummy$y$m$d) = $matches;
    
$IMreleaseDate mktime(1200$m$d$y);
}
$IMversionAge time() - $IMreleaseDate;
echo 
'<tr><th>ImageMagick version:</th><th colspan="2" style="background-color: ';
if (
$ServerInfo['im_version']) {
    if (
$IMversionAge < (86400 365 1)) {
        echo 
'lime';
    } elseif (
$IMversionAge < (86400 365 2)) {
        echo 
'lightgreen';
    } elseif (
$IMversionAge < (86400 365 3)) {
        echo 
'green';
    } elseif (
$IMversionAge < (86400 365 4)) {
        echo 
'darkgreen';
    } else {
        echo 
'olive';
    }
} elseif (!empty(
$ServerInfo['gd_string'])) {
    echo 
'orange';
} else {
    echo 
'red';
}
echo 
';">';
echo 
'<div style="color: navy; font-family: monospace;">'.htmlspecialchars($phpThumb->config_imagemagick_path);
echo 
' <span style="cursor: help;" title="file_exists"                  >['. (int) (@file_exists($phpThumb->config_imagemagick_path)) .']</span> ';
echo 
' <span style="cursor: help;" title="file_exists_ignoreopenbasedir">['. (int) $phpThumb->file_exists_ignoreopenbasedir($phpThumb->config_imagemagick_path) .']</span> ';
echo 
' <span style="cursor: help;" title="is_file"                      >['. (int) (@is_file($phpThumb->config_imagemagick_path)) .']</span> ';
echo 
' <span style="cursor: help;" title="is_readable"                  >['. (int) (@is_readable($phpThumb->config_imagemagick_path)) .']</span> ';
echo 
' <span style="cursor: help;" title="is_executable"                >['. (int) (@is_executable($phpThumb->config_imagemagick_path)) .']</span> ';
echo 
'</div>';
echo 
'<div style="color: blue; font-family: monospace;">'.htmlspecialchars($phpThumb->ImageMagickCommandlineBase()).'</div>';
echo (
$ServerInfo['im_version'] ? $ServerInfo['im_version'] : 'n/a');
echo (
$IMreleaseDate '<br><br>This version of ImageMagick is '.NiceTimeFormatting($IMversionAge).' old<br>(see <a href="http://www.imagemagick.org/">www.imagemagick.org</a> for new versions)' '');
echo 
'</th><td>ImageMagick is faster than GD, can process larger images without PHP memory_limit issues, can resize animated GIFs. phpThumb can perform most operations with ImageMagick only, even if GD is not available.</td></tr>';


echo 
'<tr><th>ImageMagick features:</th>';
if (
$ServerInfo['im_version']) {
    
$GDfeatures['red']    = array('help''thumbnail''resize''crop''repage''coalesce''gravity''background''interlace''flatten''border''bordercolor''dither''quality');
    
$GDfeatures['orange'] = array('version''blur''colorize''colors''colorspace''contrast''contrast-stretch''edge''emboss''fill''flip''flop''gamma', array('gaussian','gaussian-blur'), 'level''modulate''monochrome''negate''normalize''rotate''sepia-tone''threshold''unsharp');
    echo 
'<th colspan="2">|';
    foreach (
$GDfeatures as $missingcolor => $features) {
        foreach (
$features as $dummy => $feature) {
            
$foundOneThatWorks false;
            if (
is_array($feature)) {
                
// sometimes feature names change, e.g. "gaussian" -> "gaussian-blur". They won't both exist in the same version of ImageMagick, but as long as one of them does then the feature will work
                
foreach ($feature as $alternate_feature_name) {
                    if (
$phpThumb->ImageMagickSwitchAvailable($alternate_feature_name)) {
                        
$foundOneThatWorks true;
                        
$feature $alternate_feature_name;
                        break;
                    }
                    echo 
'| <span style="background-color: '.($foundOneThatWorks 'lime' $missingcolor).';">'.htmlspecialchars($alternate_feature_name).'</span> |';
                }
            } else {
                
$foundOneThatWorks $phpThumb->ImageMagickSwitchAvailable($feature);
                echo 
'| <span style="background-color: '.($foundOneThatWorks 'lime' $missingcolor).';">'.htmlspecialchars($feature).'</span> |';
            }
        }
    }
    echo 
'|</th>';
} else {
    echo 
'<th colspan="2" style="background-color: orange;">ImageMagick not found</th>';
}
echo 
'<td>All of these parameters may be called by phpThumb, depending on parameters used.  Green means the feature is available; red means a critical feature is missing; orange means an optional filter/feature is missing.</td></tr>';


echo 
'<tr><th>ImageMagick formats:</th>';
if (
$ServerInfo['im_version']) {
    echo 
'<td colspan="2"><div style="width: 100%; height: 200px; overflow: auto; font-family: monospace; white-space: pre; background-color: #FFFFFF;">'.htmlspecialchars($phpThumb->ImageMagickFormatsList()).'</div></td>';
} else {
    echo 
'<th colspan="2" style="background-color: orange;">ImageMagick not found</th>';
}
echo 
'<td>ImageMagick can only read/write formats as listed here. You may need to recompile ImageMagick if you need to use a format not listed</td></tr>';

echo 
'<tr><th>GD features:</th><th colspan="2">';
$GDfeatures['red']    = array('JPEG Support''JPG Support''PNG Support'); // older versions would report "JPG Support", newer versions report "JPEG Support"
$GDfeatures['orange'] = array('GIF Read Support''GIF Create Support''FreeType Support');
foreach (
$GDfeatures as $missingcolor => $features) {
    foreach (
$features as $dummy => $feature) {
        if (isset(
$gd_info[$feature])) {
            echo 
'<div style="background-color: '.($gd_info[$feature] ? 'lime' $missingcolor).';">'.htmlspecialchars($feature).'</div>';
        }
    }
}
echo 
'</th><td>PNG support is required for watermarks, overlays, calls to ImageMagick and other internal operations.<br>JPG support is obviously quite useful, but ImageMagick can substitute<br>GIF read support can be bypassed with ImageMagick and/or internal GIF routines.<br>GIF create support can be bypassed with ImageMagick (if no filters are applied)<br>FreeType support is needed for TTF overlays.</td></tr>';


echo 
'<tr><th>GD extension "EXIF"</th><th colspan="2" style="background-color: ';
if (
extension_loaded('exif')) {
    echo 
'lime';
} elseif (!empty(
$ServerInfo['gd_string'])) {
    echo 
'orange';
}
echo 
';">'.(extension_loaded('exif') ? 'TRUE' 'FALSE');
echo 
'</th><td>EXIF extension required for auto-rotate images. Also required to extract EXIF thumbnail to use as source if source image is too large for PHP memory_limit and ImageMagick is unavailable.</td></tr>';


echo 
'<tr><th>php_sapi_name()</th><th colspan="2" style="background-color: ';
$php_sapi_name strtolower(function_exists('php_sapi_name') ? PHP_SAPI '');
if (!
$php_sapi_name || (preg_match('#~#'dirname($_SERVER['PHP_SELF'])) && ($php_sapi_name != 'apache'))) {
    echo 
'red';
} elseif (
$php_sapi_name == 'cgi-fcgi') {
    echo 
'orange';
} elseif (
$php_sapi_name == 'cgi') {
    echo 
'yellow';
} elseif (
$php_sapi_name == 'apache') {
    echo 
'lime';
} else {
    echo 
'green';
}
echo 
';">'.htmlspecialchars($php_sapi_name).'</th>';
echo 
'<td>SAPI mode preferred to CGI mode. FCGI mode has unconfirmed strange behavior (notably more than one space in "wmt" filter text causes errors). If not working in "apache" (SAPI) mode, <i>apache_lookup_uri()</i> will not work.</td></tr>';


echo 
'<tr><th>Server Software</th><th colspan="2" style="background-color: ';
$server_software getenv('SERVER_SOFTWARE');
if (!
$server_software) {
    echo 
'red';
} elseif (
preg_match('#^Apache/([0-9\\.]+)#i'$server_software$matches)) {
    if (
phpthumb_functions::version_compare_replacement($matches[1], '2.0.0''>=')) {
        echo 
'lightgreen';
    } else {
        echo 
'lime';
    }
} else {
    echo 
'darkgreen';
}
echo 
';">'.$server_software.'</th>';
echo 
'<td>Apache v1.x has the fewest compatibility problems. IIS has numerous annoyances. Apache v2.x is broken when lookup up <i>/~user/filename.jpg</i> style relative filenames using <i>apache_lookup_uri()</i>.</td></tr>';


echo 
'<tr><th>curl_version:</th><th colspan="2" style="background-color: ';
$curl_version = (function_exists('curl_version') ? curl_version() : '');
if (
is_array($curl_version)) {
    
$curl_version = @$curl_version['version'];
}
if (
$curl_version) {
    echo 
'lime';
} else {
    echo 
'yellow';
}
echo 
';">'.$curl_version.'</th>';
echo 
'<td>Best if available. HTTP source images will be unavailable if CURL unavailable and <i>allow_url_fopen</i> is also disabled.</td></tr>';

echo 
'<tr style="background-color: #EEEEEE;"><th colspan="4">&nbsp;</th></tr>';
echo 
'<tr style="background-color: #EEEEEE;"><th>function_exists:</th><th colspan="2">Value</th><th>Comments</th></tr>';

$FunctionsExist = array(
    
'imagerotate'           => array('orange',     'required for "ra" and "ar" filters.'),
    
'exif_read_data'        => array('yellow',     'required for "ar" filter.'),
    
'exif_thumbnail'        => array('yellow',     'required to extract EXIF thumbnails.'),
    
'memory_get_usage'      => array('lightgreen''mostly used for troubleshooting.'),
    
'version_compare'       => array('darkgreen',  'available in PHP v4.1.0+, internal workaround available'),
    
'file_get_contents'     => array('darkgreen',  'available in PHP v4.3.0+, internal workaround available'),
    
'file_put_contents'     => array('darkgreen',  'available in PHP v5.0.0+, internal workaround available'),
    
'is_executable'         => array('yellow',     'available in PHP3, except only PHP5 for Windows. poor internal workaround available'),
    
'gd_info'               => array('olive',      'available in PHP v4.3.0+ (with bundled GD2), internal workaround available'),
    
'imagetypes'            => array('red',        'required for GD image output.'),
    
'imagecreatefromjpeg'   => array('orange',     'required for JPEG source images using GD.'),
    
'imagecreatefromgif'    => array('yellow',     'useful for GIF source images using GD.'),
    
'imagecreatefrompng'    => array('orange',     'required for PNG source images using GD and other source image formats using ImageMagick.'),
    
'imagecreatefromwbmp'   => array('yellow',     'required for WBMP source images using GD.'),
    
'imagecreatefromstring' => array('orange',     'required for HTTP and non-file image sources.'),
    
'imagecreatetruecolor'  => array('orange',     'required for all non-ImageMagick filters.'),
    
'imageistruecolor'      => array('olive',      'available in PHP v4.3.2+ with GD v2.0.1+'),
    
'imagefilter'           => array('yellow',     'PHP5 only. Required for some filters (but most can use ImageMagick instead)'),
    
'imageautocrop'         => array('yellow',     'PHP v5.5.0+, required for "ica" filter'),
);
foreach (
$FunctionsExist as $function => $details) {
    list(
$color$description) = $details;
    echo 
'<tr><th>'.$function.'</th><th colspan="2" style="background-color: ';
    if (
function_exists(strtolower($function))) {
        echo 
'lime;">TRUE';
    } else {
        echo 
$color.';">FALSE';
    }
    echo 
'</th><td>'.htmlspecialchars($description).'</td></tr>';
}


echo 
'<tr style="background-color: #EEEEEE;"><th colspan="4">&nbsp;</th></tr>';
echo 
'<tr style="background-color: #EEEEEE;"><th>Setting</th><th>Master Value</th><th>Local Value</th><th>Comments</th></tr>';


$SettingFeatures = array(
    
'magic_quotes_runtime' => array('red',    'lime',   'This setting is evil. Turn it off.'),
    
'magic_quotes_gpc'     => array('yellow''lime',   'This setting is bad. Turn it off, if possible. phpThumb will attempt to work around it if it is enabled.'),
    
'safe_mode'            => array('orange''lime',   'Best if off. Calls to ImageMagick will be disabled if safe_mode is set to prevent writing temp files (limiting max image resolution, no animated GIF resize). Raw image data sources (e.g. from MySQL database) may not work. Temp files may be disabled. Features will be limited. If disabled in Master but enabled in Local, edit httpd.conf and set (php_admin_value safe_mode "Off") between <VirtualHost> tags'),
    
'allow_url_fopen'      => array('lime',   'yellow''Best if on. HTTP source images will be unavailable if disabled and CURL is unavailable.'),
);

foreach (
$SettingFeatures as $feature => $FeaturesDetails) {
    list(
$color_true$color_false$reason) = $FeaturesDetails;
    echo 
'<tr><th>'.$feature.':</th>';
    echo 
'<th style="background-color: '.(@get_cfg_var($feature)                      ? $color_true $color_false).';">'.$phpThumb->phpThumbDebugVarDump((bool) @get_cfg_var($feature)).'</th>';
    echo 
'<th style="background-color: '.(preg_match('#(1|ON)#i', @ini_get($feature)) ? $color_true $color_false).';">'.$phpThumb->phpThumbDebugVarDump((bool) preg_match('#(1|ON)#i'ini_get($feature))).'</th>';
    echo 
'<td>'.htmlspecialchars($reason).'</td></tr>';
}

$MissingFunctionSeverity = array(
    
'shell_exec' => 'red',
    
'system'     => 'red',
    
'passthru'   => 'red',
    
'exec'       => 'red',
    
'curl_exec'  => 'orange',
);
$DisabledFunctions[0] = explode(',', @get_cfg_var('disable_functions'));
$DisabledFunctions[1] = explode(',',     @ini_get('disable_functions'));
echo 
'<tr><th>disable_functions:</th>';
for (
$i 0$i <= 1$i++) {
    foreach (
$DisabledFunctions[$i] as $key => $value) {
        if (!empty(
$MissingFunctionSeverity[$value])) {
            
$DisabledFunctions[$i][$key] = '<span style="background-color: '.$MissingFunctionSeverity[$value].';">'.$value.'</span>';
        }
    }
    
$disabled_functions implode(', '$DisabledFunctions[$i]);
    echo 
'<th style="background-color: '.($disabled_functions 'yellow' 'lime').';">'.htmlspecialchars($disabled_functions).'</th>';
}
echo 
'<td>Best if nothing disabled. Calls to ImageMagick will be prevented if exec+system+shell_exec+passthru are disabled.</td></tr>';


echo 
'<tr><th>memory_limit:</th><th style="background-color: ';
$memory_limit = @get_cfg_var('memory_limit');
if (!
$memory_limit) {
    echo 
'lime';
} elseif (
$memory_limit >= 32) {
    echo 
'lime';
} elseif (
$memory_limit >= 24) {
    echo 
'lightgreen';
} elseif (
$memory_limit >= 16) {
    echo 
'green';
} elseif (
$memory_limit >= 12) {
    echo 
'darkgreen';
} elseif (
$memory_limit >= 8) {
    echo 
'olive';
} elseif (
$memory_limit >= 4) {
    echo 
'yellow';
} elseif (
$memory_limit >= 2) {
    echo 
'orange';
} else {
    echo 
'red';
}
echo 
';">'.($memory_limit $memory_limit '<i>unlimited</i>').'</th><th style="background-color: ';
$memory_limit = @ini_get('memory_limit');
if (!
$memory_limit) {
    echo 
'lime';
} elseif (
$memory_limit >= 32) {
    echo 
'lime';
} elseif (
$memory_limit >= 24) {
    echo 
'lightgreen';
} elseif (
$memory_limit >= 16) {
    echo 
'green';
} elseif (
$memory_limit >= 12) {
    echo 
'darkgreen';
} elseif (
$memory_limit >= 8) {
    echo 
'olive';
} elseif (
$memory_limit >= 4) {
    echo 
'yellow';
} elseif (
$memory_limit >= 2) {
    echo 
'orange';
} else {
    echo 
'red';
}
echo 
';">'.($memory_limit $memory_limit '<i>unlimited</i>').'</th>';
echo 
'<td>The higher the better. Divide by 5 to get maximum megapixels of source image that can be thumbnailed (without ImageMagick).'.($memory_limit ' Your setting ('.$memory_limit.') allows images up to approximately '.number_format($memory_limit 51).' megapixels' '').'</td></tr>';

echo 
'</table>';


function 
NiceTimeFormatting($seconds$precision=1$returnparts=false) {
    
$sign = (($seconds 0) ? -1);
    
$seconds abs($seconds);
    do {
        if (
$seconds 100) {
            
$value number_format($seconds0);
            
$unit  'second'.(($seconds 1) ? 's' '');
            break;
        }
        
$minutes $seconds 60;
        if (
$minutes 60) {
            
$value number_format($minutes$precision);
            
$unit  'minutes';
            break;
        }
        
$hours $seconds 3600;
        if (
$hours 24) {
            
$value number_format($hours$precision);
            
$unit  'hours';
            break;
        }
        
$days $seconds 86400;
        if (
$days 60) {
            
$value number_format($days$precision);
            
$unit  'days';
            break;
        }
        
$months $seconds / (30 86400);
        if (
$months 12) {
            
$value number_format($months$precision);
            
$unit  'months';
            break;
        }
        
$years $seconds / (365 86400);
        if (
true) {
            
$value number_format($years$precision);
            
$unit  'years';
            break;
        }
    } while (
false);
    
$value *= $sign;
    if (
$returnparts) {
        return array(
$value$unit);
    }
    return 
$value.' '.$unit;
}

?>
</body>
</html>