6

I accidentally deleted php.ini from /etc/php5/apache2. How to recover it?

I tried to remove and install php5 without luck.

Eric Carvalho
  • 54,385
Sanjeev Divekar
  • 61
  • 1
  • 1
  • 2

1 Answers1

14

You can copy from /usr/share/php5/php.ini-production.

sudo cp /usr/share/php5/php.ini-production /etc/php5/apache2/php.ini
Eric Carvalho
  • 54,385