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

  • <small id='BfmTz'></small><noframes id='BfmTz'>

      <bdo id='BfmTz'></bdo><ul id='BfmTz'></ul>
  • <legend id='BfmTz'><style id='BfmTz'><dir id='BfmTz'><q id='BfmTz'></q></dir></style></legend>

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

      1. Linux 中的 Netbeans 和 Xdebug

        Netbeans and Xdebug in Linux(Linux 中的 Netbeans 和 Xdebug)
      2. <i id='ph0aY'><tr id='ph0aY'><dt id='ph0aY'><q id='ph0aY'><span id='ph0aY'><b id='ph0aY'><form id='ph0aY'><ins id='ph0aY'></ins><ul id='ph0aY'></ul><sub id='ph0aY'></sub></form><legend id='ph0aY'></legend><bdo id='ph0aY'><pre id='ph0aY'><center id='ph0aY'></center></pre></bdo></b><th id='ph0aY'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ph0aY'><tfoot id='ph0aY'></tfoot><dl id='ph0aY'><fieldset id='ph0aY'></fieldset></dl></div>
            <tbody id='ph0aY'></tbody>
            <legend id='ph0aY'><style id='ph0aY'><dir id='ph0aY'><q id='ph0aY'></q></dir></style></legend>
            <tfoot id='ph0aY'></tfoot>
            • <bdo id='ph0aY'></bdo><ul id='ph0aY'></ul>

            • <small id='ph0aY'></small><noframes id='ph0aY'>

                • 本文介紹了Linux 中的 Netbeans 和 Xdebug的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我已經安裝了 Xdebug,我可以從 phpinfo() 確認它已正確安裝.我已經采取了所有在我 googlenetbeans xdebug 安裝等"中提出的網站中給出的所有步驟.

                  I have installed Xdebug, and I can confirm from phpinfo() that it is correctly installed. I have taken all the steps given in all of the sites that come up with I google "netbeans xdebug install, etc".

                  它在 Netbeans 中仍然不起作用.有人可以提供任何建議嗎?

                  It still does not work in Netbeans. Is there any advice that someone can offer?

                  這是我的 php.ini 調試部分...

                  Here is my php.ini debug section...

                  [xdebug]
                  zend_extension = /usr/lib/php5/20090626/xdebug.so
                  xdebug.remote_enable = 1
                  xdebug.remote_mode = "req"
                  xdebug.remote_handler = dbgp
                  xdebug.remote_host = 127.0.0.1
                  xdebug.remote_port = 9000
                  xdebug.idekey = "netbeans-xdebug"
                  

                  任何幫助將不勝感激!

                  推薦答案

                  由于我能得到的信息非常稀少,我必須更詳細地描述設置.

                  Since the information available to me is very sparse, I have to describe the settings in more detail.

                  Netbeans 和 xdebug 設置.

                  Ubuntu 12.04 LTS 精確穿山甲

                  Ubuntu 12.04 LTS Precise Pangolin

                  應該安裝什么.

                  全局設置:

                  工具 -- 選項

                  PHP 設置:

                  使用 phpinfo() 你會得到.. 見下圖.

                  With phpinfo() you get.. see below image.

                  只有一個 php.ini 很重要!查看加載的配置文件如果您將 xdebug 條目寫入另一個php.ini"文件,請確保再次清除所有這些條目.( xdebug 僅在一個 php.ini 中).另請查看解析的其他 .ini 文件.我們稍后再談.

                  Only one php.ini is important ! Look at Loaded Configuration File If you wrote a xdebug entry into another "php.ini" file be sure to clear all these entries again. ( xdebug ONLY in one php.ini ). Look also at Additional .ini files parsed. We come to this later.

                  zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
                  xdebug.remote_enable=1
                  xdebug.remote_handler=dbgp
                  xdebug.remote_mode=req
                  xdebug.remote_host=localhost
                  xdebug.remote_port=9000
                  

                  已解析其他 .ini 文件.
                  添加或控制,只有第一行必須與php.ini"中的相同.(沒有")

                  Additional .ini files parsed.
                  Add or controlling, only the first line must be the same as in the "php.ini".( Without " " )

                  確保文件確實在那里!

                  確保 session.save_path 確實存在!

                  控制 xdebug 版本應該等于或更高.(匹配 PHP 版本 5.3.10-1).如果一切都按照本答案中的描述完成,但它不起作用,那么很可能不正確或有缺陷xdebug.so".

                  Control the xdebug version that should be equal to or greater.( Matching PHP Version-5.3.10-1 ). If everything was done as described in this answer, and it does not work, then it is with great probability of an incorrect or defective "xdebug.so".

                  創建一個新的 PHP 項目:

                  項目屬性:
                  來源
                  在我們的測試程序中,重要項目文件夾和源文件夾完全相同

                  Project Properties:
                  Sources
                  In our test program, it is important the Project Folder and Source Folder are exactly alike!

                  運行配置

                  開始調試: -- 按下調試按鈕

                  當 Netbeans 處于調試模式時,默認瀏覽器會打開并保持在 正在連接 .. 狀態.
                  (如果 Netbeans 沒有打開瀏覽器或無法連接,請返回高級 Web 配置并選擇不要打開 Web 瀏覽器.關閉并重新打開瀏覽器并輸入 URL如下所示)

                  The default Browser opens and remains at Connecting .. stand while Netbeans in debug mode is.
                  (If Netbeans do not open a Browser or can not connect, go back to Advanced Web Configuration and select Do Not Open Web Browser. Close an reopen the browser and type the URL as seen below)

                  檢查您的代碼.完成調試后,您將只在瀏覽器中看到一些內容.不要忘記按下停止按鈕 .如果你忘記了這個 xdebug 正在運行.

                  Go through your code. You will see only something in the browser when you're done with the debugging. Don't forget to press the Stop Button . If you forget this xdebug is running on.

                  完成:

                  這篇關于Linux 中的 Netbeans 和 Xdebug的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  Xdebug And Netbeans Problem(Xdebug 和 Netbeans 問題)
                  quot;Go to declarationquot; does not work in Netbeans PHP(“前往聲明在 Netbeans PHP 中不起作用)
                  How to enable PHP support in Netbeans?(如何在 Netbeans 中啟用 PHP 支持?)
                  How to debug PHP with netbeans and Xdebug(如何使用 netbeans 和 Xdebug 調試 PHP)
                  Launch XDebug in Netbeans on an external request(根據外部請求在 Netbeans 中啟動 XDebug)
                  Xdebug successfully connects to DBGP clients, but won#39;t stop at breakpoints(Xdebug 成功連接到 DBGP 客戶端,但不會在斷點處停止)
                  <legend id='qH55H'><style id='qH55H'><dir id='qH55H'><q id='qH55H'></q></dir></style></legend>
                    <tbody id='qH55H'></tbody>

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

                        <i id='qH55H'><tr id='qH55H'><dt id='qH55H'><q id='qH55H'><span id='qH55H'><b id='qH55H'><form id='qH55H'><ins id='qH55H'></ins><ul id='qH55H'></ul><sub id='qH55H'></sub></form><legend id='qH55H'></legend><bdo id='qH55H'><pre id='qH55H'><center id='qH55H'></center></pre></bdo></b><th id='qH55H'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='qH55H'><tfoot id='qH55H'></tfoot><dl id='qH55H'><fieldset id='qH55H'></fieldset></dl></div>
                        <tfoot id='qH55H'></tfoot>
                          • <bdo id='qH55H'></bdo><ul id='qH55H'></ul>
                            主站蜘蛛池模板: 欧美日韩在线观看视频网站 | 亚洲人成人网 | 国产一区二区三区不卡av | 一区二区免费高清视频 | 能免费看的av | 国产精品久久久久久久久图文区 | 欧美11一13sex性hd | 成人午夜高清 | 亚洲精品视频久久 | 国产91亚洲精品 | 欧美日本高清 | 日本一道本视频 | 99热播精品| 亚洲精品丝袜日韩 | 九九亚洲| 日韩淫片免费看 | 国产精品一区二区不卡 | 99视频免费在线观看 | 亚洲欧美日韩在线不卡 | 一区二区三区亚洲视频 | 国产农村妇女毛片精品久久麻豆 | 天堂色综合 | 欧美日韩一卡二卡 | 一级黄色录像毛片 | 欧美成人一区二免费视频软件 | 国产丝袜人妖cd露出 | 激情影院久久 | 欧美啪啪 | 欧美视频一区 | 在线播放国产一区二区三区 | 国产亚洲www| 欧美一区二区三区视频 | 三极网站 | 欧美视频xxx | 黄色网络在线观看 | 国产精品一区二区无线 | 免费同性女女aaa免费网站 | 欧美一区免费 | 一级黄色片日本 | 日本久久久一区二区三区 | 久久综合av |