Check php information » History » Version 4
Neil Voss, 05/12/2010 02:57 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 | 4 | Neil Voss | <pre> |
12 | sudo echo "<?php phpinfo(); ?>" > /var/www/html/info.php |
||
13 | </pre> |
||
14 | |||
15 | 1 | Amber Herold | Visit this page at http://yourhost/info.php |
16 | |||
17 | 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. |
||
18 | |||
19 | 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. |
||
20 | |||
21 | !http://emg.nysbc.org/software/leginon/images/images/phpini.png! |
||
22 | 2 | Amber Herold | |
23 | |||
24 | ______ |
||
25 | |||
26 | [[Install Apache Web Server|< Install Apache Web Server]] | [[Install the MRC PHP Extension|Install the MRC PHP Extension >]] |
||
27 | 3 | Amber Herold | |
28 | ______ |