Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

repair broken symlinks / reinstall php5

How the I repair broken symlinks? / Delete 'dead' files?

Context: Since I messed up my php.ini configuration on one of my local testservers, I decided to re-installed the basic webserver stuff. (apache2, php5,..)

Problem: After installation is /etc/apache2/php5/php.ini missing at all, /etc/apache2/php5/conf.d is a 'broken symlink', I think.

Error: During installation: Not replacing deleted config file /etc/php5/apache2/php.ini

So what's these 'broken symlinks'? I can find them using 'ls /dir', they are colored in red :) I tried "rm /etc/php5 -R -f"? But it doesn't work... And how should I get rid of the php.ini 'zombie-file'? All I want is a new php5 installation.

like image 729
Johannes Staehlin Avatar asked Feb 17 '12 06:02

Johannes Staehlin


1 Answers

You can do it like that:

apt-get purge libapache2-mod-php5 php5 && \
    apt-get install libapache2-mod-php5 php5
like image 138
Roman Newaza Avatar answered Nov 18 '22 16:11

Roman Newaza