【问题标题】:phpmyadmin not working with xdebug, netbeans and xamppphpmyadmin 不适用于 xdebug、netbeans 和 xampp
【发布时间】:2017-03-05 00:58:59
【问题描述】:

我通过 Google 搜索和搜索,但没有找到任何有用的信息。 第一次在 Netbeans 中调试后,我无法进入 phpmyadmin。 我试图更改下一个设置。我有 PHP 版本 5.6.15,Xampp 是 3.2.2。

xdebug.remote_autostart = 0

xdebug.collect_return="0"

但是我找不到在哪里更改它,所以我将这些行添加到 php.ini 中,但它不起作用。所以我不知道该怎么办。有什么想法吗?

Enabling XDebug in XAMPP slows down phpmyadmin enabling xdebug remote debug makes apache server very slow Problems with database links on phpmyadmin interface

【问题讨论】:

  • 我发现解决方案非常简单。到处都说必须重启apache,但是我重启电脑就成功了。

标签: php netbeans phpmyadmin xampp xdebug


【解决方案1】:

我把xdebug的版本改成了现在的:Xdebug 2.5.0
我按照此链接中的说明进行操作:https://xdebug.org/wizard.php

然后我把这个放到php.ini中:

;Xdebug

zend_extension="C:\Ampps\php\ext\php_xdebug-2.5.0-5.5-vc11.dll"

xdebug.profiler_enable = 1

xdebug.remote_enable= 1

;xdebug.remote_hadnler = "dbgp" ;es valor por defecto

;xdebug.remote_host="127.0.0.1;es valor por defecto

;xdebug.remote_port=9000;es valor por defecto

xdebug.trace_output_dir= "c:\ampps\tmp"

【讨论】:

    猜你喜欢
    • 2011-03-04
    • 2016-12-10
    • 2021-12-13
    • 2014-06-11
    • 2020-11-21
    • 2011-09-03
    • 2014-09-13
    • 2016-03-13
    相关资源
    最近更新 更多