Skip to main content

Documentation

IMPORTANT

This is the outdated SI-documentation which will be adapted soon. A huge part may be obsolete!

Checking System Information

Joomla provides the administrator with an extremely simple method of checking your system information. This option is available through System > System Information.

System Information

You can also create a very simple PHP script. Include the following codes in your PHP file and upload this file to your site. Try accessing this file on the browser, you'll see the same information is being displayed for you.

<?php
    // This is a very simple method to load up php's settings.
    echo phpinfo();
?>