zend-debugger

Setting up Zend Debugger

烈酒焚心 提交于 2019-12-05 07:08:26
问题 I try to configure zend debugger to debug php pages on my local apache server. I followed all instructions from the official forum (http://forums.zend.com/viewtopic.php?f=59&t=962#p4313) but I fail to see the Zend Debugger listed by phpinfo(), after I restart Apache. My php ini is this: zend_extension_ts="C:\Program Files (x86)\PHP\Zend\php-5.3.2\5_3_x_nts_comp\ZendDebugger.dll" zend_debugger.allow_hosts=192.168.0.104/32,127.0.0.1/32 zend_debugger.expose_remotely=always The path to

How to debug PHP application using Eclipse PDT (xdebug and zend debugger)

我只是一个虾纸丫 提交于 2019-12-04 13:34:38
问题 I'm working on one application. I am using Eclipse php Helios IDE for developing php application. I wanted to know below things related to this IDE, so that i can implement PHP application instantly as well as very efficiently : 1) How to do remote debugging using Eclipse PHP Helios IDE 2) What is the pros and cons of xdebug and zend debugger 3) Which debugger should we use from xdebug, zend debugger. 4) Is there any other debugger available apart from above two mentioned. Below links i

php eclipse debugging

血红的双手。 提交于 2019-12-04 10:53:25
I am runing a php script using eclipse. when a set breakpoint and run the script it throws me this error. form the error it is apparent that i have change something the php.ini file. but i dont know what i have to change to make either zend or xdebug. even i dont know what the differnce b/w them. following the error The session could not be started. In order to generate debug information, please make sure that the debugger is properly configured as a php.ini directive I ran into this error also, and my issue turned out to be a misconfiguration of Eclipse. In Eclipse, I had configured (in

Setting up Zend Debugger

耗尽温柔 提交于 2019-12-03 21:31:46
I try to configure zend debugger to debug php pages on my local apache server. I followed all instructions from the official forum ( http://forums.zend.com/viewtopic.php?f=59&t=962#p4313 ) but I fail to see the Zend Debugger listed by phpinfo(), after I restart Apache. My php ini is this: zend_extension_ts="C:\Program Files (x86)\PHP\Zend\php-5.3.2\5_3_x_nts_comp\ZendDebugger.dll" zend_debugger.allow_hosts=192.168.0.104/32,127.0.0.1/32 zend_debugger.expose_remotely=always The path to ZendDebugger.dll is correct. I'm using windows 7, 64 bit. There arent any error messages in the apache log or

How to debug PHP application using Eclipse PDT (xdebug and zend debugger)

感情迁移 提交于 2019-12-03 08:37:19
I'm working on one application. I am using Eclipse php Helios IDE for developing php application. I wanted to know below things related to this IDE, so that i can implement PHP application instantly as well as very efficiently : 1) How to do remote debugging using Eclipse PHP Helios IDE 2) What is the pros and cons of xdebug and zend debugger 3) Which debugger should we use from xdebug, zend debugger. 4) Is there any other debugger available apart from above two mentioned. Below links i refered for above mentioned debugger. 1) http://devzone.zend.com/article/2930-Debugging-PHP-applications

Using Eclipse PDT for debugging Ajax pages with concurrent requests

一世执手 提交于 2019-12-01 11:27:51
Once I asked this same question but now I can give a test case for it. The problem resides in debugging in Eclipse PDT when the page sends multiple requests to the server's dynamic pages. Consider a web page as follow: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <script src="link-to-jquery/jquery-1.7.2.min.js"></script> <script> $(document).ready(function() { var list = $("ol"); for (var i=0; i<20; i++) { list.append($('<li><img src="/img.php?'+i+'" /></li>')); } }); </script> </head> <body> <ol> </ol> </body> </html> In above page, JQuery

Using Eclipse PDT for debugging Ajax pages with concurrent requests

懵懂的女人 提交于 2019-12-01 08:29:08
问题 Once I asked this same question but now I can give a test case for it. The problem resides in debugging in Eclipse PDT when the page sends multiple requests to the server's dynamic pages. Consider a web page as follow: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <script src="link-to-jquery/jquery-1.7.2.min.js"></script> <script> $(document).ready(function() { var list = $("ol"); for (var i=0; i<20; i++) { list.append($('<li><img src="/img

Can I link the Zend PDT (eclipse) to a browser action?

狂风中的少年 提交于 2019-11-30 07:46:21
Is it possible to configure the Zend PDT debugger in eclipse to hit a breakpoint from a browser action in a similar way to that of the Java debugger for eclipse? I.e. Set a breakpoint, start the debugger, browse a site then drop into a breakpoint when it is hit. I can debug individual scripts and Web pages however I am trying to debug a script that is called from a webpage. I am using Joomla and want to be able to traverse the dependency stack while click on page content. Thanks in advance for any advice..! travega I found out how to do this but it is quite long winded. It enables you to debug

Can I link the Zend PDT (eclipse) to a browser action?

假如想象 提交于 2019-11-29 10:28:52
问题 Is it possible to configure the Zend PDT debugger in eclipse to hit a breakpoint from a browser action in a similar way to that of the Java debugger for eclipse? I.e. Set a breakpoint, start the debugger, browse a site then drop into a breakpoint when it is hit. I can debug individual scripts and Web pages however I am trying to debug a script that is called from a webpage. I am using Joomla and want to be able to traverse the dependency stack while click on page content. Thanks in advance