This is a test site. Any changes will be lost!

phpinfo: Difference between revisions

From MoodleDocs
m French link
 
(13 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Sample output of '''phpinfo()'''
Location: ''Administration > Server > PHP info''
 
The phpinfo display contains information about the configuration of your PHP installation. This is useful for checking:
* that your PHP installation meets Moodle's system requirements.
* that you have installed the required modules needed for Moodle to work, e.g. the LDAP module for LDAP authentication.
 
==Table of contents==
__TOC__
 
==Displaying phpinfo==
To view the phpinfo information:
* In Moodle version 1.7 or greater, choose Site Administration -> Server -> PHP info.
* Create a file called info.php using your text editor, containing this single line:
 
<?php phpinfo(); ?>
 
* Upload this file into your moodle folder on your PC or server.
* Now open this file in your browser. For example <nowiki>http://127.0.0.1/info.php</nowiki>.
 
==Sample output==
This is a sample output displayed.
 
 
<table border="0" cellpadding="3" width="600">
<table border="0" cellpadding="3" width="600">
<tr class="h"><td>
<tr class="h"><td>
[http://www.php.net/ http://www.php.net]
[http://www.php.net/ http://www.php.net]  
=PHP Version 4.3.3=
 
<nowiki>=PHP Version 4.3.3= </nowiki>
</td></tr>
</td></tr>
</table><br/>
</table><br/>
Line 21: Line 44:


...
...
This output goes on for about 5 pages.
This output goes on for about 5 pages.
==See also==
* [http://www.php.net/ini.core PHP reference] describing the core PHP.INI directives
[[es:phpinfo]]
[[fr:phpinfo]]
[[pt:phpinfo]]
[[pl:phpinfo]]
[[Category:Developer|Phpinfo]]
[[Category:Administrator]]

Latest revision as of 13:19, 5 June 2008

Location: Administration > Server > PHP info

The phpinfo display contains information about the configuration of your PHP installation. This is useful for checking:

  • that your PHP installation meets Moodle's system requirements.
  • that you have installed the required modules needed for Moodle to work, e.g. the LDAP module for LDAP authentication.

Table of contents

Displaying phpinfo

To view the phpinfo information:

  • In Moodle version 1.7 or greater, choose Site Administration -> Server -> PHP info.
  • Create a file called info.php using your text editor, containing this single line:
<?php phpinfo(); ?>
  • Upload this file into your moodle folder on your PC or server.
  • Now open this file in your browser. For example http://127.0.0.1/info.php.

Sample output

This is a sample output displayed.


http://www.php.net

=PHP Version 4.3.3=


System Windows NT MYLAPTOP0106 5.1 build 2600
Build Date Aug 24 2003 22:01:16
Server API Apache
Virtual Directory Support enabled
Configuration File (php.ini) Path C:\WINDOWS\php.ini
PHP API 20020918
PHP Extension 20020429
Zend Extension 20021010
Debug Build no
Thread Safety enabled
Registered PHP Streams php, http, ftp, compress.zlib

...

This output goes on for about 5 pages.

See also