repair broken symlinks / reinstall php5

2019-04-08 08:38发布

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.

1条回答
Ridiculous、
2楼-- · 2019-04-08 09:36

You can do it like that:

apt-get purge libapache2-mod-php5 php5 && \
    apt-get install libapache2-mod-php5 php5
查看更多
登录 后发表回答