diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-05-16 17:10:10 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-05-16 17:10:10 +0000 |
commit | cd3b1df0db7644a4e8e779ac91584bf4ae722ace (patch) | |
tree | 9233801acb2d7792d788a7e52320699b72c23c61 | |
parent | a263f54550563810e38de2c56f69e86269db7c80 (diff) | |
download | elgg-cd3b1df0db7644a4e8e779ac91584bf4ae722ace.tar.gz elgg-cd3b1df0db7644a4e8e779ac91584bf4ae722ace.tar.bz2 |
added image magick test to server analysis
-rw-r--r-- | system.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system.php b/system.php index 0e218d3f3..ed6370149 100644 --- a/system.php +++ b/system.php @@ -55,6 +55,11 @@ <td>Elgg requires the GD extension to be loaded</td> </tr> <tr> + <td>ImageMagick</td> + <td><?php echo (extension_loaded('imagick')) ? 'Enabled' : 'Disabled'; ?></td> + <td></td> + </tr> + <tr> <td>Memory Available to PHP</td> <td><?php echo ini_get('memory_limit'); ?>B</td> <td>Change memory_limit to increase</td> |