2013-03-23 17:35:44 +01:00
|
|
|
<?php
|
2014-02-01 15:28:07 +01:00
|
|
|
ini_set("memory_limit","256M");
|
|
|
|
$exif = "No";
|
|
|
|
$gd = "No";
|
|
|
|
if (function_exists('exif_read_data')) $exif = "Yes";
|
|
|
|
if (extension_loaded('gd') && function_exists('gd_info')) $gd = "Yes";
|
2013-03-23 17:35:44 +01:00
|
|
|
?>
|
2014-02-01 15:28:07 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2013-03-23 17:35:44 +01:00
|
|
|
<head>
|
2014-02-01 15:28:07 +01:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<title>MiniGal Nano system check</title>
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
background-color: #daddd8;
|
|
|
|
font: 12px Arial, Tahoma, "Times New Roman", serif;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 30px;
|
|
|
|
margin: 20px 0 5px 0;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
}
|
|
|
|
div {
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
.left {
|
|
|
|
width: 300px;
|
|
|
|
display: inline-table;
|
|
|
|
background-color: #fdffbe;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.middle-neutral {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
width: 100px;
|
|
|
|
display: inline-table;
|
|
|
|
background-color: #fdffbe;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.middle-no {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
width: 100px;
|
|
|
|
display: inline-table;
|
|
|
|
background-color: #ff8181;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.middle-yes {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
width: 100px;
|
|
|
|
display: inline-table;
|
|
|
|
background-color: #98ffad;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
width: 600px;
|
|
|
|
display: inline-table;
|
|
|
|
background-color: #eaf1ea;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2013-03-23 17:35:44 +01:00
|
|
|
<body>
|
2014-02-01 15:31:17 +01:00
|
|
|
<h1>MiniBoardNano system check</h1>
|
2014-02-01 15:28:07 +01:00
|
|
|
<div class="left">
|
|
|
|
PHP Version
|
|
|
|
</div>
|
|
|
|
<div class="<?php if(version_compare(phpversion(), "4.0", '>')) echo 'middle-yes'; else echo 'middle-no' ?>">
|
|
|
|
<?php echo phpversion(); ?>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<a href="http://www.php.net/" target="_blank">PHP</a> scripting language version 4.0 or greater is needed
|
|
|
|
</div>
|
|
|
|
<br />
|
2013-03-23 17:35:44 +01:00
|
|
|
|
2014-02-01 15:28:07 +01:00
|
|
|
<div class="left">
|
|
|
|
GD library support
|
|
|
|
</div>
|
|
|
|
<div class="<?php if($gd == "Yes") echo 'middle-yes'; else echo 'middle-no' ?>">
|
|
|
|
<?php echo $gd; ?>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<a href="http://www.boutell.com/gd/" target="_blank">GD image manipulation</a> library is used to create thumbnails. Bundled since PHP 4.3
|
|
|
|
</div>
|
|
|
|
<br />
|
2013-03-23 17:35:44 +01:00
|
|
|
|
2014-02-01 15:28:07 +01:00
|
|
|
<div class="left">
|
|
|
|
EXIF support
|
|
|
|
</div>
|
|
|
|
<div class="<?php if($exif == "Yes") echo 'middle-yes'; else echo 'middle-neutral' ?>">
|
|
|
|
<?php echo $exif; ?>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
Ability to extract and display <a href="http://en.wikipedia.org/wiki/Exif" target="_blank">EXIF information</a>. The script will work without it, but not display image information
|
|
|
|
</div>
|
|
|
|
<br />
|
2013-03-23 17:35:44 +01:00
|
|
|
|
2014-02-01 15:28:07 +01:00
|
|
|
<div class="left">
|
|
|
|
PHP memory limit
|
|
|
|
</div>
|
|
|
|
<div class="middle-neutral">
|
|
|
|
<?php echo ini_get("memory_limit"); ?>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
Memory is needed to create thumbnails. Bigger images uses more memory
|
|
|
|
</div>
|
2013-03-23 17:35:44 +01:00
|
|
|
|
2014-02-01 15:28:07 +01:00
|
|
|
<footer role="contentinfo">
|
2014-02-02 18:46:50 +01:00
|
|
|
<a href="https://github.com/sebsauvage/MinigalNano" title="Powered by MiniGal Nano" target="_blank">
|
|
|
|
Made with miniGal by sebsauvage.
|
|
|
|
</a>
|
2014-02-01 15:28:07 +01:00
|
|
|
</footer>
|
2013-03-23 17:35:44 +01:00
|
|
|
</body>
|
|
|
|
</html>
|