mirror of
https://github.com/mosbth/cimage.git
synced 2025-07-29 04:30:16 +02:00
Extended info printed #35
This commit is contained in:
@@ -133,6 +133,7 @@ Revision history
|
|||||||
|
|
||||||
v0.5.x (latest)
|
v0.5.x (latest)
|
||||||
|
|
||||||
|
* `webroot/check_system.php` now outputs version of PHP and GD.
|
||||||
* #32 correctly send 404 header when serving an error message.
|
* #32 correctly send 404 header when serving an error message.
|
||||||
* Trying to verify issue #29, but can not.
|
* Trying to verify issue #29, but can not.
|
||||||
* Adding structure for testprograms together with, use `webroot/test_issue29.php` as sample.
|
* Adding structure for testprograms together with, use `webroot/test_issue29.php` as sample.
|
||||||
|
@@ -1,4 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
echo 'Current PHP version: ' . phpversion() . '<br><br>';
|
||||||
|
|
||||||
|
echo 'Running on: ' . $_SERVER['SERVER_SOFTWARE'] . '<br><br>';
|
||||||
|
|
||||||
$no = extension_loaded('gd') ? null : 'NOT';
|
$no = extension_loaded('gd') ? null : 'NOT';
|
||||||
echo "Extension gd is $no loaded.";
|
echo "Extension gd is $no loaded.<br>";
|
||||||
|
|
||||||
|
if (!$no) {
|
||||||
|
var_dump(gd_info());
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user