Wamp 服务器和 xdebug 安装

发布于 2024-09-03 00:34:22 字数 745 浏览 3 评论 0原文

我正在尝试在 wamp 服务器上安装 xdebug。 使用此代码:

 zend_extension_ts="c:/wamp/bin/php/php5.3.0/ext/php_xdebug-2.1.0RC1-5.3-vc9.dll"
 xdebug.default_enable = on
 xdebug.remote_enable = 1
 xdebug.remote_port = 9000
 xdebug.remote_host = localhost

和 apache 错误日志:

PHP Warning:  PHP Startup: Unable to load dynamic library 'c:/wamp/bin/php/php5.3.0/ext/php_xdebug-2.1.0RC1-5.2-vc6-nts.dll' - The specified module could not be found.\r\n   in Unknown on line 0
<br />
 <b>Warning</b>:  PHP Startup: Unable to load dynamic library 'c:/wamp/bin/php/php5.3.0  /ext/php_xdebug-2.1.0RC1-5.2-vc6-nts.dll' - The specified module could not be found.

我无法在 phpinfo 页面中看到 xdebug。怎么了 :(

I am trying to install xdebug on wamp server.
With this code:

 zend_extension_ts="c:/wamp/bin/php/php5.3.0/ext/php_xdebug-2.1.0RC1-5.3-vc9.dll"
 xdebug.default_enable = on
 xdebug.remote_enable = 1
 xdebug.remote_port = 9000
 xdebug.remote_host = localhost

And apache error log:

PHP Warning:  PHP Startup: Unable to load dynamic library 'c:/wamp/bin/php/php5.3.0/ext/php_xdebug-2.1.0RC1-5.2-vc6-nts.dll' - The specified module could not be found.\r\n   in Unknown on line 0
<br />
 <b>Warning</b>:  PHP Startup: Unable to load dynamic library 'c:/wamp/bin/php/php5.3.0  /ext/php_xdebug-2.1.0RC1-5.2-vc6-nts.dll' - The specified module could not be found.

I cant see xdebug in phpinfo page. What is wrong :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

缺⑴份安定 2024-09-10 00:34:22

用于加载模块的语法是 php 5.2 版本。供php5.3使用
zend_extension=模块路径/名称

The syntax used for loading the module is the php 5.2 version. For php5.3 use
zend_extension=module_path/name

我的痛♀有谁懂 2024-09-10 00:34:22

您是否编辑了正确的 php.ini?

<?php echo 'ini: ', get_cfg_var('cfg_file_path');

可以告诉你。

如果(以及何时)您编辑了正确的 .ini 文件,apache 日志 (apache_error.log) 中是否存在任何 php 启动错误?

Did you edit the right php.ini?

<?php echo 'ini: ', get_cfg_var('cfg_file_path');

can tell you.

If (and when) you've edited the correct .ini file are there any php startup errors in the apache log (apache_error.log)?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文