xdebug、远程服务器上的 php、netbeans
我有我的 1and1 托管网站。我有需要调试的服务器端 php。 我发现的所有内容都提到当您有本地网络服务器时运行/安装 xdebug 在本地 Web 服务器上使用 php 和 mysql。
但是,我使用的是 1and1 托管的远程 Web 服务器。 我正在使用并喜欢 Netbeans,哇,非常棒的 IDE。
无论如何,我如何(如果可能的话)安装然后使用 xdebug 调试器从 Netbeans 中调试在 1and1 上运行的 php 代码?
我想知道是否是我的托管公司(1and1)必须安装 xdebug。 我正在运行最新版本的 Netbeans,但是当我按下调试按钮时 在工具栏上,我看到一条错误消息弹出窗口,显示
“40 秒内未检测到来自 xdebug 的连接。原因可能是 xdebug 既未安装也未正确配置。请确保您的 php.ini 文件包含这些条目:
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost (or hostname)
xdebug.remote_port=9000
所以我搜索了我的硬盘,尽管已经安装了完整的 Netbeans IDE,我没有 php.ini 文件。
那么我可以让 xdebug 远程工作吗?我可以调试我的 php 代码吗? 远程 1and1 Web 服务器,使用 Netbeans 和 xdebug?
我只使用 Netbeans 2 天,据我所知,xdebug 甚至不是其中的一部分 Netbeans 的。我这样说的原因是,我可以很好地远程“运行”我的 php —— 当我在 Netbeans 中推送“运行”时,它会在远程 1and1 Web 服务器上执行——然后本地计算机上的客户端输出是正确的。但是我无法通过按 Netbeans 工具栏上的“调试”按钮来使用 xdebug 进入代码 - 是否有可能 xdebug 没有通过 Netbeans 正确安装?
I have my 1and1 hosted web site. I've got server-side php I need to debug.
All I've found mentions running/installing xdebug when you have a local web server
with php and mysql on a local web server.
However, I'm using the remote web server hosted at 1and1 hosting.
I'm using and loving netbeans, wow great IDE.
Anyways, how (if it's even possible) can I install then use the xdebug
debugger to debug my php code running at 1and1 from within Netbeans?
I'm wondering if it is my hosting company (1and1) that has to have xdebug installed.
I'm running the latest version of Netbeans but when I press the debug button on
the toolbar I see an error message popup that says
"There is no connection from xdebug detected within 40 seconds. The reasons could be that xdebug is neither installed nor properly configured. Be sure that your php.ini file contains these entries:
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost (or hostname)
xdebug.remote_port=9000
So I searched my harddisk, and despite having installed the full Netbeans
IDE, I have no php.ini file.
So can I make xdebug work remotely, ie. can I debug my php code as it runs on the
remote 1and1 web server, using Netbeans and xdebug?
I've only been using Netbeans for 2 days and for all I know, xdebug is not even a part
of Netbeans. Reason I say that is, I can 'run' my php remotely just fine -- it executes on the remote 1and1 web server when I push 'run' inside Netbeans -- and then the client side output on my local machine is correct. But I cannot step into the code with xdebug by pressing the 'Debug' button on the Netbeans toolbar -- is it possible xdebug did not get installed correctly with Netbeans?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xdebug 应该安装在 php 文件夹内,当然 php 文件夹位于安装 php 的服务器上...在您的托管提供商处。
我不希望托管提供商安装 xDebug,因为在我看来这将是一个巨大的安全漏洞。
xDebug 不是 Netbeans 的一部分,默认情况下它也不是 PHP 的一部分。
现在,从更积极的角度来看,如果您要开发 PHP,您需要一个本地服务器。直接在现服上开发代码是非常不专业的。
获取 xampp 的副本并将其安装在您的计算机上。获取 xdebug 的副本并按照说明进行安装。重新启动阿帕奇。好了,现在你有了一个测试服务器。
在计算机上完成设置后,将 PHP 应用程序的文件夹复制到“htdoc”文件夹中。
现在,也只有现在,您才应该考虑使用 PHP 进行开发。在您自己的测试服务器上进行本地开发,只要您从 Netbeans 内部启动调试会话,xdebug 就会工作。
当一切正常后,将文件上传到您的托管空间。
xdebug should be installed inside the php folder and of course the php folder is located on the server where php is installed... at your hosting provider.
I would not expect an hosting provider to install xDebug as it seems to me it would be a huge security hole.
xDebug is not part of Netbeans and it is not part of PHP by default.
Now, looking at things on a more positive viewpoint, if you are going to develop PHP, you NEED a local server. It's very unprofessional to develop code directly on the live server.
Grab a copy of xampp and install it on your computer. Grab a copy of xdebug and install it following the instructions. Restart Apache. There, now you have a testing server.
Once you have a complete set-up on your computer, copy your PHP application's folder inside the "htdoc" folder.
NOW, and only now, should you consider developing in PHP. Develop locally, on your own testing server, xdebug will work whenever you start a debugging session from inside Netbeans.
When everything works, upload your files on your hosted space.