Xdebug PHPStorm IDE ubuntu
我正在尝试在 ubuntu 11.04 上使用 phpstorm 2.1 配置 xDebug 在 phpstorm 中,我从这里单击“Start Listen PHP DEBUG CONNECTIONS”和“xdebug Start session”firefox bookmarklet http:// /www.jetbrains.com/phpstorm/marklets/。 但什么也没有发生。
PHP 5.3:
extension="xdebug.so" (not zend)
[xdebug]
xdebug.idekey = "PHPSTORM"
xdebug.remote_enable = 1
xbebug.remote_connect_back=1
xdebug.remote_port=9000
我伤透了脑筋为什么它不起作用。需要建议。非常感谢
UPD 已解决:XDEBUG 应该安装为 zend 扩展!
I am trying to configure xDebug with phpstorm 2.1 on ubuntu 11.04
In phpstorm I clicked "Start Listen PHP DEBUG CONNECTIONS" and "xdebug Start session" firefox bookmarklet from here http://www.jetbrains.com/phpstorm/marklets/.
But nothing doesn't happen.
PHP 5.3:
extension="xdebug.so" (not zend)
[xdebug]
xdebug.idekey = "PHPSTORM"
xdebug.remote_enable = 1
xbebug.remote_connect_back=1
xdebug.remote_port=9000
I broke my brains why it doesn't work. Need advices. Very thanks
UPD SOLVED: XDEBUG should be installed as zend extension!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请检查 phpinfo() 输出 - 它应该包含“Xdebug”部分。请参阅Xdebug 安装指南
Xdebug 安装正确吗?
Please check you phpinfo() output - it should contain 'Xdebug' section. See Xdebug installation guide
Does Xdebug installed correctly?
看看这里的教程: http://blogs.jetbrains.com/webide/2011/02/zero-configuration-debugging-with-xdebug-and-phpstorm-2-0/。
您还可以查看 KomodoIDE 远程调试说明,看看它们是否对您有帮助: http://docs.activestate.com/komodo/6.1/debugphp.html#debugphp_top。
Take a look at the tutorial here: http://blogs.jetbrains.com/webide/2011/02/zero-configuration-debugging-with-xdebug-and-phpstorm-2-0/.
You could also take a look at the KomodoIDE remote debugging instructions and see if they help you out: http://docs.activestate.com/komodo/6.1/debugphp.html#debugphp_top.