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 ...
Hi,
Does anyone have any experience with setting up DebugDiag to trigger on a specific HttpException? The advanced configuration only allows you to specify the .NET type of the exception, while HttpExceptions are very generic and are used for anything from 404's to timeouts. I'm interested in triggering a dump on page timeout in this ca...
What is the best way to debug a namespace extension using Visual Studio? It's not convenient to use regsvr32 to register and unregister the extension and to restart the Explorer for each and every build. Attaching the debugger to the extension would be a nice benefit.
Is there a simple way to debug a namespace extension using Visual Stu...
Scattered throughout a software project I am working on are many lines of code that were written for debugging and utility purposes. Before I compile my code, I want a way to select whether or not these blocks of code should be included into my compile (something that won't require navigating the code commenting out). How can I do this?
...
I'm a beginner here so I apologize if this question is badly worded.
I have an XmlTreeLoader that is loaded up every time a row is clicked in an Ext.grid. It works fine in Firefox and Chrome, but whenever I try to run it in IE I get the error:
Wrong number of arguments or invalid property assignment
I tried using the developer to...
How to say to Qt Creator to stop debuging if an object has been changed and show the line where it is changed?
...
hi,
If I understand correctly then the release mode enables a program to run faster than running the program in debug mode.
A general question will be if one has to run the program first in debug mode and then switch to run the program in release mode in order for the release mode to "skip over" checks it normally makes when running...
Recently switched from XCode 3.2.2 to 3.2.3 for iOS4 and i noticed that i can no longer view the values of my property variables or any variables for that matter in the debug window?
In 3.2.2 when a breakpoint was reached i was able to view all my class variables in the "self" tree node in the variable window. I could also just hover o...
Hi all ,
I'm a beginner in C# ,and i have a problem regarding debugging and running applications from VS 2010 ... Sometimes -for some certain projects- when i press F5 , the VS 2010 CPU usage jumps to 50% and my app. just won't run.. and nothing happen , i tried to rebuild the solution , but still , High CPU usage and no app. running a...
The following Perl script outputs "SUCCESS" as you'd expect:
use Fcntl qw(:DEFAULT :flock);
sysopen(LF, "test.txt", O_RDONLY | O_CREAT) or die "SYSOPEN FAIL: $!";
if(flock(LF, LOCK_EX)) { print "SUCCESS.\n"; }
else { print "FAIL: $!\n"; }
But now, replace that first line with
require "testlib.pl";
where testlib.pl contains
use Fcn...
Hi, I'm developing a web-application for iPhone and Android. It works flawlessly on the iPhone but when I try to run it on an Android device, it just does not work.
But to the point… I need to access the (JavaScript) error console in the Android default browser. Is there a way to do that?
I tried changing the "Enable tracing" setting a...
How can I set up gdb so that it saves the command history? When starting a new gdb session I'd like to use the arrow up keys to access the commands of the previous sessions.
...
I know that in the Immed and Watch windows you can't use Lambda expressions.
So, say I'm in Debug mode, and I've got an Object in my Watch window.
I'd like to be to say: "show me all properties in this tree of DateTime type", using LINQ.
Is there any Debug feature or add-on in VS2010 that will let me do that?
cheers
...
I have a program compiled with vc++ 2003 which i am attempting to debug in windbg on XP.
I am compiling in debug.
In the project properties I have set the linker to 'generate program database file'
and in c++ properties i have set 'Program Database for Edit & Continue'
in windbg i have used 'browse' to set the file that i believe is my...
Hy,
Is there a way to filter the contents in the Variables view based on the value of variables.
Maybe a plugin or something?
Thanks.
...
Often there's no need to pay any attention to implicit arguments in Scala, but sometimes it's very helpful to understand how the compiler is automatically providing them. Unfortunately, this understanding seems to be hard to obtain!
Is there a general method to discover how an implicit parameter has been provided, in a given piece of...
Is it possible to step into Qt sources, e.g. qmainwindow.cpp, in Qt Creator? At the moment I'm seeing the disassembly, but it would be nice to see the sources instead.
...
When step-debugging in eclipse, is it possible to instruct the debugger to traverse only steps within my project's sources?
I am debugging a rails application and much of the calls are moving through rails' infrastructure (such as activerecord) which I am not interested in following. I would prefer the step-debugger to skip these files,...
Hi,
I was wondering if anyone knows of a nice survey of debugging techniques for multithreaded applications. Ideally, I'm looking for a case-based analysis: deadlocks, starvation, corrupted shared state, ...
.Net specific, or generic.
...
In some cases during a git bisect session, testing a particular commit takes quite long (for instance, because I have to build a full release package and deploy it on a particularly strange machine). In fact, testing a build takes so long that I'd like to start building the next two commits already without knowing whether the current tes...