Project

General

Profile

Check php information » History » Revision 8

Revision 7 (Neil Voss, 05/12/2010 02:59 PM) → Revision 8/17 (Neil Voss, 05/12/2010 03:03 PM)

h1. Check php information 

 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). 

 <pre> 
 <?php 
 phpinfo(); 
 ?> 
 </pre> 

 <pre> 
 sudo touch /var/www/html/info.php 
 sudo chmod 666 /var/www/html/info.php 
 echo "<?php    phpinfo();    ?>" > /var/www/html/info.php 
 sudo chmod 444 /var/www/html/info.php 
 </pre> 

 Visit this page at http://HOST.INSTITUTE.EDU/info.php or http://localhost/info.php 

 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. 

 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. 

 !http://emg.nysbc.org/software/leginon/images/images/phpini.png! 


 ______ 

 [[Install Apache Web Server|< Install Apache Web Server]] | [[Install the MRC PHP Extension|Install the MRC PHP Extension >]] 

 ______