Project

General

Profile

Check php information » History » Version 3

Amber Herold, 04/22/2010 02:02 PM

1 1 Amber Herold
h1. Check php information
2
3
Create the following info.php in your web server document root directory (/var/www/html on CentOS. /srv/www/htdocs on SuSE. You can find its location in httpd.conf mentioned above under the line starting DocumentRoot).
4
5
<pre>
6
<?php
7
phpinfo();
8
?>
9
</pre>
10
11
Visit this page at http://yourhost/info.php
12
13
You will see comprehensive tables of php and apache information, including the location of the addition .ini files, extension, include path, and what extension is enabled.
14
15
Here is an example screen shot of the part of the info.php page that tells you where php.ini and other configuration files are.
16
17
!http://emg.nysbc.org/software/leginon/images/images/phpini.png!
18 2 Amber Herold
19
20
______
21
22
[[Install Apache Web Server|< Install Apache Web Server]] | [[Install the MRC PHP Extension|Install the MRC PHP Extension >]]
23 3 Amber Herold
24
______