zend-debugger

Is it still true that zenddebugger only supports non-thread-safe PHP?

。_饼干妹妹 提交于 2019-12-24 23:34:35
问题 This is the case according to a thread in 2009 here, is it still the case now? Anyone managed to make it work with thread safe PHP? 回答1: Yes, it is still the case - the recommended way on Windows is FCGI which runs non-TS PHP. Unfortunately, it's impossible to make non-TS module to work with TS PHP - data structures are different, so even it one could hack it so it would load it would immediately crash. 来源: https://stackoverflow.com/questions/3948321/is-it-still-true-that-zenddebugger-only

How to debug multiple sessions in PHP?

自作多情 提交于 2019-12-13 13:15:07
问题 I am working on a project where the application creates web service requests to the same application over the network in development mode to get bogus data and better development environment. Sometimes when I am debugging I found it hard to do because it seems that XDebug does not work when you have two debugging sessions at the same time on the same PHP installation. Is there a way to debug multiple sessions in PHP with some debug tool? I have been using Netbeans and XDebug and the debugging

Eclipse and Zend Debugger breaks in the first line always, despite having unchecked that option

微笑、不失礼 提交于 2019-12-12 16:38:15
问题 I unchecked the break on first line option in the PHP debug configuration, but it still breaks in the first line, no matter what. How can I prevent this? I'm using MacOSX, Eclipse PDT 3.0.2 with the Zend Debugger. 回答1: After a lot of googling I found out how to solve this problem. There are three places where the "Break on first line" configuration can be set. Window -> Prefrences -> PHP -> Debug Project -> Properties -> PHP Debug Run -> Debug Configurations -> PHP Web Page -> <Your

Zend Debugger breaks at every Zend Framework class

☆樱花仙子☆ 提交于 2019-12-11 19:47:12
问题 I recently installed PDT Helios and now when using the debugger, it will break everytime a new class is referenced in the stack for all of Zend Framework classes. As far as I can tell, it is only done with ZF classes, and not my application's own classes. If I have no breakpoints set, it will run continuously until completion but when I set a breakpoint, it stops at every Zend Class along the way. I never had this problem before. Any workaround for it? 回答1: This was fixed in an update. See

Can't debug PHP Cli after Eclipse update

☆樱花仙子☆ 提交于 2019-12-11 17:53:56
问题 I came across a very annoying problem today. Sometimes I have to debug php command line scripts, for this I used Eclipse PDT with Zend Debugger. It was buggy, but it worked. Until I updated my PDT, and now none of my cli debug configurations work ('PHP Web Page' types do fine, only cli is wrong). If I try to start one, I get an error message: The debug session could not be started. Please make sure that the debugger is properly configured as a php.ini directive. This is very interesting,

debugging a Yii web application using Zend Debugger in Eclipse

风格不统一 提交于 2019-12-11 17:14:17
问题 I have Zend debugger running successfully in Eclipse but I don't understand how to debug a Yii project. I.e, I can debug a single page PHP script but I don't know what the configuration options are supposed to be for a Yii web application. For example, I was thinking the Controller file would be the file I would select to actuall debug but it says the file can't be found. I've attached a screen shot of what the options are. I've used the Firefox Zend Debugger extension and that works great.

Zend Debugger Eclipse Startup Error: eclipse.php.debug.core was unable to load class debug.core.model.PHPConditionalBreakpoint

拥有回忆 提交于 2019-12-11 03:29:52
问题 I work on Mac OSX Lion and ever since I've installed the Zend Debugger and gotten it to be able to debug php web applications, I often encounter this Eclipse startup error: Error creation extension for extension-point org.eclipse.php.internal.debug.daemon.communication Plug-in org.eclipse.php.debug.core was unable to load class org.eclipse.php.internal.debug.core.zend.communication.DebuggerCommunicationDaemon. An error occurred while automatically activating bundle org.eclipse.php.debug.core

ZendDebugger cannot open libssl.so.0.9.8 in Mint 12

北慕城南 提交于 2019-12-10 20:57:26
问题 I installed apache and php, now to use the ZendDebugger I and modified the php.ini how it was described. When I start apache, I get following error message in the log: Failed loading /usr/lib/php5/zend/ZendDebugger.so: libssl.so.0.9.8: cannot open shared object file: No such file or directory I checked and there is only libssl.so.1.0.0 available on my machine. Can anyone tell me how to proceed to get ZendDebugger working. Thanks in advance, max 回答1: Obviously the libssl.so.0.9.8 was missing.

Installing Zend Debugger on Wamp/Windows Vista

偶尔善良 提交于 2019-12-08 13:26:48
问题 I'm trying to make Zend Debugger run on my Wamp server on Windows Vista. Here are steps, which I folowed: Download ZendDebugger-5.2.15-cygwin_nt-i386.zip from http://downloads.zend.com/pdt/server-debugger/ Copy \ZendDebugger-5.2.15RC1-cygwin_nt-i386\5_2_x_nts_comp\ZendDebugger.dll to c:\wamp\bin\php\php5.3.0\ext\ZendDebugger.dll Edit php.ini (checked using phpinfo(), that I'm editing right php.ini) like this: zend_extension_ts=C:\wamp\bin\php\php5.3.0\ext\ZendDebugger.dll zend_debugger.allow

php eclipse debugging

二次信任 提交于 2019-12-06 04:35:29
问题 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 回答1: I ran into this