gpt4 book ai didi

apache2 - xdebug 在 ubuntu apache2 上使用 php 7 不起作用

转载 作者:行者123 更新时间:2023-12-04 15:41:48 24 4
gpt4 key购买 nike

实际上有这个问题,并花了我很多时间来找出解决方案:(如果安装了任何以前的 php 版本,请确保首先完全摆脱它们。如有必要,清除并重新安装 apache2 和 php7)

第一的:

> sudo apt-get install php-xdebug

然后编辑 php 7 的 php.ini 文件:
> sudo gedit /etc/php/7.0/apache2/php.ini

并在底部添加:
xdebug.remote_enable = On

保存,当然然后:
> sudo service apache2 restart

最佳答案

下载稳定版 xdebug 2.4.0

wget -c "http://xdebug.org/files/xdebug-2.4.0.tgz"

提取存档
tar -xf xdebug-2.4.0.tgz

cd xdebug-2.4.0/

构建扩展
phpize
./configure
make && make install

启用扩展
echo "zend_extension=xdebug.so" > /etc/apache2/mods-available/xdebug.ini

ln -sf /etc/apache2/mods-available/xdebug.ini /etc/apache2/mods-enabled/20-xdebug.ini
ln -sf /etc/apache2/mods-available/xdebug.ini /etc/apache2/mods-enabled/20-xdebug.ini

service php7.0-fpm restart

核实
php -m | grep -i xdebug

它应该打印:
xdebug
Xdebug

关于apache2 - xdebug 在 ubuntu apache2 上使用 php 7 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37355409/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com