Ben sadece UEStudio 09 en son sürümünü indirdiğiniz ve entegre XDebug özellikleri çalışıyorum.
Ben xdebug yüklü var ve bu benim php_info yoluyla () doğruladıktan. Bunu test etmek için bir çok temel senaryo yazdık:
1: <?php
2: $x = 5;
3: $y = $x + 1;
4: $z = 10;
5: while ($z--) {
6: echo $x, $y, "<br />\n";
7: }
Sonra hata ayıklama oturumu başladı ve benim çıktı penceresinde bu mesajı almak ettik:
Client: Listening for connection...
Ben sadece bunu test etmek, satır 4 bir kesme noktası ekledik. Daha sonra özel url parametre ile benim tarayıcıda dosyayı açın:
http://localhost/uetest/index.php?XDEBUG_SESSION_START=testThe script runs normally and it doesn't stop for debugging or anything. The output is this:
Client: Listening for connection... Client: Connection accepted Client: Initializing session ============================== Debug Engine Name: Xdebug Debug Engine Version: 2.0.3 Protocol Version: 1.0 ============================== Client: Session active Client Command: Step Into Client: Exiting debug session Script completed without errors
Ben ziyaret ederseniz http://localhost:9000/uetest/index.php
ardından UEStudio "kabul Connection", ama hiçbir şey olmuyor diyor! Komut tarayıcıda hiçbir zaman tamamlar, ve sonra nihayet UEStudio çöker.
Herhangi bir fikir?