This post originated from an RSS feed registered with Web Buzz
by Angsuman Chakraborty.
Original Post: How To Find Your PHP.INI
Feed Title: Simple Thoughts on Web Technologies
Feed URL: http://tech.gaeatimes.com/index.php/search/internet/feed/
Feed Description: News and views as a Software Architect and Entrepreneur on Web Technologies.
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. [...]