久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<small id='b5DpD'></small><noframes id='b5DpD'>

  • <i id='b5DpD'><tr id='b5DpD'><dt id='b5DpD'><q id='b5DpD'><span id='b5DpD'><b id='b5DpD'><form id='b5DpD'><ins id='b5DpD'></ins><ul id='b5DpD'></ul><sub id='b5DpD'></sub></form><legend id='b5DpD'></legend><bdo id='b5DpD'><pre id='b5DpD'><center id='b5DpD'></center></pre></bdo></b><th id='b5DpD'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='b5DpD'><tfoot id='b5DpD'></tfoot><dl id='b5DpD'><fieldset id='b5DpD'></fieldset></dl></div>
      • <bdo id='b5DpD'></bdo><ul id='b5DpD'></ul>

        <legend id='b5DpD'><style id='b5DpD'><dir id='b5DpD'><q id='b5DpD'></q></dir></style></legend>
        <tfoot id='b5DpD'></tfoot>

        根據外部請求在 Netbeans 中啟動 XDebug

        Launch XDebug in Netbeans on an external request(根據外部請求在 Netbeans 中啟動 XDebug)

          <bdo id='SUL9J'></bdo><ul id='SUL9J'></ul>
              <tbody id='SUL9J'></tbody>
            <legend id='SUL9J'><style id='SUL9J'><dir id='SUL9J'><q id='SUL9J'></q></dir></style></legend>
            • <tfoot id='SUL9J'></tfoot>
            • <i id='SUL9J'><tr id='SUL9J'><dt id='SUL9J'><q id='SUL9J'><span id='SUL9J'><b id='SUL9J'><form id='SUL9J'><ins id='SUL9J'></ins><ul id='SUL9J'></ul><sub id='SUL9J'></sub></form><legend id='SUL9J'></legend><bdo id='SUL9J'><pre id='SUL9J'><center id='SUL9J'></center></pre></bdo></b><th id='SUL9J'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='SUL9J'><tfoot id='SUL9J'></tfoot><dl id='SUL9J'><fieldset id='SUL9J'></fieldset></dl></div>

                  <small id='SUL9J'></small><noframes id='SUL9J'>

                1. 本文介紹了根據外部請求在 Netbeans 中啟動 XDebug的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我正在使用 Netbeans 6.7 和 XDebug 在我的機器上調試 PHP 站點,從 Netbeans 內啟動請求(項目->調試).這很好用,而且非常有用.

                  I'm using Netbeans 6.7 and XDebug to debug a PHP site on my machine, launching the request from within Netbeans (Project->Debug). This works fine, and is very useful.

                  我的問題是:是否可以將調試器附加到任何傳入的請求中,而不僅僅是我從 Netbeans 中啟動的請求?

                  My question is: Is it possible to attach the debugger to any request that comes in, rather just those I launch from within Netbeans?

                  即,不是單擊調試",而是將 Netbeans 置于啟動調試器并附加到進入的下一個請求的模式中.

                  ie, instead of clicking "Debug", put Netbeans into a mode whereby the debugger is launched and attaches to the next request that comes in.

                  我覺得這可能是一個愚蠢的問題,但如果可能的話,那就太好了.

                  I have a feeling this may be a stupid question, but if it is possible, that'd be great.

                  更多信息

                  我的系統(Ubuntu 9.04)設置如下:

                  My system (Ubuntu 9.04) is set up as follows:

                  /etc/php5/conf.d/xdebug.ini的內容

                  zend_extension=/usr/lib/php5/20060613/xdebug.so
                  
                  xdebug.remote_enable=on
                  xdebug.remote_handler=dbgp
                  xdebug.remote_mode=req
                  xdebug.remote_host=localhost
                  xdebug.remote_port=9000
                  xdebug.idekey=netbeans-xdebug
                  

                  Netbeans PHP 調試選項為默認值:

                  Netbeans PHP debugging options are at the defaults:

                  Debugger Port: 9000
                  Session ID: netbeans-xdebug
                  Stop at the First Line: ticked
                  

                  我的 /etc/hosts 文件將 www.mywebsite.com 重定向到 localhost

                  My /etc/hosts file redirects www.mywebsite.com to localhost

                  如果我單擊 Netbeans 中的調試按鈕,Firefox 將使用地址 http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug 啟動,并且調試器按預期工作.

                  If I click on the debug button in Netbeans, then Firefox is launched with the address http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug, and the debugger works as expected.

                  但如果我只是瀏覽到 http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug,這不會在 Netbeans 中啟動調試器.

                  But if I just browse to http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug, this doesn't start the debugger in Netbeans.

                  我也試過設置 xdebug.remote_host=www.mywebsite.com ,但這沒什么區別.

                  I've also tried setting xdebug.remote_host=www.mywebsite.com , but that makes no difference.

                  此外,我已經啟用了 xdebug.remote_log,它顯示了我從 netbeans 內部啟動時的信息,但沒有顯示外部請求的信息.所以我認為 XDebug 根本沒有看到外部請求.

                  Also, I've enabled xdebug.remote_log, and that's showing information for when I start from within netbeans, but nothing for external requests. So I don't think XDebug is seeing the external requests at all.

                  推薦答案

                  轉到項目屬性 > 運行配置 > 高級 > 調試網址并檢查不要打開網絡瀏覽器 (*).不要調試器代理下設置主機.保存這些設置.在項目窗口中,在您的項目上:鼠標右鍵單擊 > 調試(這將開始偵聽調試連接).沒有啟動瀏覽器.在瀏覽器中輸入 http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug.它應該在 netbeans 中崩潰.至少這就是這里發生的事情:)

                  go to project properties > run configuration > advanced > debug url and check do not open web browser (*). do not set the host under debugger proxy. save these settings. in the project window, on your project: right mouse click > debug (this starts listening for debug connections). no browser is started. enter http://www.mywebsite.com?XDEBUG_SESSION_START=netbeans-xdebug in your browser. it should break in netbeans. at least that's what happens here :)

                  (*) 你可能還需要設置一個路徑映射 - 對我來說,它不需要

                  (*) you might also have to set a path mapping - for me, it works without

                  這篇關于根據外部請求在 Netbeans 中啟動 XDebug的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  MySQLi prepared statement amp; foreach loop(MySQLi準備好的語句amp;foreach 循環)
                  Is mysqli_insert_id() gets record from whole server or from same user?(mysqli_insert_id() 是從整個服務器還是從同一用戶獲取記錄?)
                  PHP MySQLi doesn#39;t recognize login info(PHP MySQLi 無法識別登錄信息)
                  mysqli_select_db() expects exactly 2 parameters(mysqli_select_db() 需要 2 個參數)
                  Php mysql pdo query: fill up variable with query result(Php mysql pdo 查詢:用查詢結果填充變量)
                  MySQLI 28000/1045 Access denied for user #39;root#39;@#39;localhost#39;(MySQLI 28000/1045 用戶“root@“localhost的訪問被拒絕)
                  <legend id='lpYhf'><style id='lpYhf'><dir id='lpYhf'><q id='lpYhf'></q></dir></style></legend>

                2. <tfoot id='lpYhf'></tfoot>
                        <bdo id='lpYhf'></bdo><ul id='lpYhf'></ul>
                          <tbody id='lpYhf'></tbody>

                        1. <i id='lpYhf'><tr id='lpYhf'><dt id='lpYhf'><q id='lpYhf'><span id='lpYhf'><b id='lpYhf'><form id='lpYhf'><ins id='lpYhf'></ins><ul id='lpYhf'></ul><sub id='lpYhf'></sub></form><legend id='lpYhf'></legend><bdo id='lpYhf'><pre id='lpYhf'><center id='lpYhf'></center></pre></bdo></b><th id='lpYhf'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='lpYhf'><tfoot id='lpYhf'></tfoot><dl id='lpYhf'><fieldset id='lpYhf'></fieldset></dl></div>
                          • <small id='lpYhf'></small><noframes id='lpYhf'>

                            主站蜘蛛池模板: 国产精品免费视频一区 | 福利视频一区二区 | 99久久精品免费看国产小宝寻花 | 免费观看一级特黄欧美大片 | 天天躁日日躁狠狠的躁天龙影院 | 亚洲三级在线观看 | www.成人.com| 国产精品日韩 | 狠狠干av | 精品欧美激情精品一区 | 成人午夜在线观看 | 国产精品综合色区在线观看 | 男女黄网站 | 精品国产乱码久久久久久88av | 国产福利精品一区 | 成人国产午夜在线观看 | 国产一区二区在线观看视频 | 亚洲日韩视频 | 成人国产精品久久 | 91看片网址| 国产一区亚洲二区三区 | 国产精品久久久久久52avav | 国产婷婷色一区二区三区 | 亚洲精品99 | 国产精品美女久久久久 | www.色.com| 视频一二三区 | 99在线资源 | 精品91久久久 | 91网站在线看 | 国产成人精品一区二 | 欧美freesex黑人又粗又大 | 欧美日韩亚洲国产综合 | 久久成人免费 | 国产不卡视频 | 日本羞羞影院 | 国产成人艳妇aa视频在线 | 欧美中文一区 | 亚洲成人一二区 | 国产成人综合一区二区三区 | 日本天堂视频 |