Reputation: 31
I just downloaded and installed the wamp server but the file php.ini
file can not be found anywhere although the configuration page shows
C:\wamp64\bin\apache\apache2.4.17\bin\php.ini
I was wondering if somebody knows the root cause. Is it possible to get the file from somewhere for that version?
Upvotes: 3
Views: 11804
Reputation: 679
Yes, you can get that file really easy. It's a php configuration file. If you know your installed php version go to PHP net and download it for your version.
In there you will find php.ini-production
(production settings) and php.ini-development
(development setting better suited for debugging). Pick one and rename it to php.ini (php as name for file and ini being extension). Now you are ready to go after you copy it to your installation folder.
Make sure to resart your server after applying the changes.
Upvotes: 2