mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 01:09:21 +02:00
21 lines
512 B
PHP
21 lines
512 B
PHP
<?php
|
|
/**
|
|
* PHP Info
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2017 MyAAC
|
|
* @version 0.4.3
|
|
* @link http://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
$title = 'PHP Info';
|
|
|
|
if(!function_exists('phpinfo')) { ?>
|
|
<b>phpinfo()</b> function is disabled in your webserver config.<br/>
|
|
You can enable it by editing <b>php.ini</b> file.
|
|
<?php return;
|
|
}
|
|
?>
|
|
<iframe src="<?php echo BASE_URL; ?>admin/tools/phpinfo.php" width="1024" height="550" />
|