Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/263.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 安装Xdebug时丢失了Xdebug.ini文件_Php_Ubuntu_Xdebug_Lampp - Fatal编程技术网

Php 安装Xdebug时丢失了Xdebug.ini文件

Php 安装Xdebug时丢失了Xdebug.ini文件,php,ubuntu,xdebug,lampp,Php,Ubuntu,Xdebug,Lampp,我不小心丢失了/etc/php5/conf.d文件夹中的xdebug.ini文件。当我试图使用apt get安装xdebug时,它给出了如下注释 Not replacing deleted config file /etc/php5/conf.d/xdebug.ini 我在谷歌上搜索了这个,我只能找到一个有用的回复。我不明白怎么做,我也在这里粘贴,所以请建议我如何继续 I lost my xdebug.ini file on my ubuntu slice. What happened was

我不小心丢失了
/etc/php5/conf.d
文件夹中的
xdebug.ini
文件。当我试图使用apt get安装xdebug时,它给出了如下注释

Not replacing deleted config file /etc/php5/conf.d/xdebug.ini
我在谷歌上搜索了这个,我只能找到一个有用的回复。我不明白怎么做,我也在这里粘贴,所以请建议我如何继续

I lost my xdebug.ini file on my ubuntu slice. What happened was that I had accidentally installed xdebug via apt-get as well as pecl. I was removing the pecl installation, which also removed the ini file. I then tried reinstalling through apt-get, but i get the message: 

Setting up php5-xdebug (2.0.3-1) ...
Not replacing deleted config file /etc/php5/conf.d/xdebug.ini

Aaaaaarghhhh!! How do I get back my ini file??? anyone have a clue?
rubing January 2009
I just fixed this by purging xdebug using dpkg with the -P flag. And then reinstalling with apt-get. No worries!

Ah geez, it looks the whole file is just a link to the module:

zend_extension=/usr/lib/php5/20060613/xdebug.so
也许“apt get install--REPLAIN”可以帮你解决这个问题。否则,触摸/etc/php5/conf.d中的xdebug.ini并重试,触摸将创建一个空文件

另一种方法是解压缩下载的debian包并从中复制配置文件:dpkg deb-x。

您删除的文件(/etc/php5/conf.d/xdebug.ini)仅包含以下行:

zend_extension=/usr/lib/php5/20060613/xdebug.so
虽然路径可能与旧版本的PHP有所不同,但请检查/usr/lib/php5下的目录名并使用它

@tetet已经提供了替代选项