Wamp 服务器和 xdebug 安装
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于加载模块的语法是 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
您是否编辑了正确的 php.ini?
可以告诉你。
如果(以及何时)您编辑了正确的 .ini 文件,apache 日志 (apache_error.log) 中是否存在任何 php 启动错误?
Did you edit the right php.ini?
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)?