This post originated from an RSS feed registered with PHP Buzz
by Angsuman Chakraborty.
Original Post: How To Find Your PHP.INI
Feed Title: Simple Thoughts on PHP
Feed URL: http://sedoparking.com/search/registrar.php?domain=®istrar=sedopark
Feed Description: News and views as a Software Architect and Entrepreneur on PHP.
I often come across this question: Where is my php.ini located? Here is a simple solution.
To find out which php.ini your apache server is using please follow the steps below:
1. Type in the following in a file named say test.php and save it in document root of your webserver, normally htdocs for apache:
<?php phpinfo(); ?>
2. [...]