blob: d9abcd2e56a7dfd236632dfc2684b5dd2879a169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/********************************************************************
*
* Tidypics System Analysis Script
*
* Helps admins configure their server
*
********************************************************************/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
admin_gatekeeper();
set_context('admin');
$title = 'TidyPics Server Analysis';
/*
$php_ok = (function_exists('version_compare') && version_compare(phpversion(), '4.3.0', '>='));
$xml_ok = extension_loaded('xml');
$pcre_ok = extension_loaded('pcre');
$curl_ok = function_exists('curl_exec');
$zlib_ok = extension_loaded('zlib');
$mbstring_ok = extension_loaded('mbstring');
$iconv_ok = extension_loaded('iconv');
*/
ob_start();
echo elgg_view_title($title);
?>
<div class="contentWrapper">
</div>
<?php
$content = ob_get_clean();
$body = elgg_view_layout('two_column_left_sidebar', '', $content);
echo page_draw($title, $body);
?>
|