Tagged Questions
1
vote
1answer
26 views
How to automatically improve Debugging in Symfony2
I tried debugging with Symfony2 before and dealing with the cache is a big pain in the head
I'm debugging with Netbeans and XDebug, is there a way to AUTOMATICALLY disable the cache and Debug in a ...
0
votes
1answer
25 views
How to set a line breakpoint when using NetBeans remote debugger?
When using NetBeans debugger to debug an application remotely, is it possible to set a line breakpoint on a file?
Obviously, the source and bytecode are on the remote machine... NetBeans says it ...
0
votes
0answers
24 views
How to set a breakpoint on file read?
I'm trying to debug a Symfony2 project and I would like to breakpoint code processing when a particular file is read (suppose a TWIG template) so I can see how Symfony2 manages the processing.
I ...
0
votes
0answers
9 views
Xdebug and ajax
I am using netbeans to develop applications and so using xdebug to debug... it looks like there is a problem while debugging when there is an ajax call (the site is frozen and no possibility to keep ...
1
vote
1answer
57 views
NetBeans C++ - way to check compiled with debug in code?
I'd like to be able to put some macro commands in my C++ code running NetBeans (and GCC) eg.
#ifdef DEBUG
std::cout << "DistributionSuper constructor called" << std::endl;
#endif
Does ...
1
vote
1answer
48 views
Debugging In Netbeans With xDebug
Am learning debugging using Netbeans (PHP) with xDebug. I have set Breakpoint(s) in a php file am using but it seems anytime i start the debugging (clicking the start debug button) the system switches ...
0
votes
0answers
71 views
Netbeans IDE and expanded watches while debugging Java project
I'm debugging one of my java project in Netbeans IDE. I need to know what contains some variables inside and that's the reason why I expand some watches. Expansion is not permanent and IDE canceled it ...
1
vote
4answers
141 views
Undefined reference to class constructor, including .cpp file fixes
The problem I am having is that, when I call a constructor for a class I have created I get the following error.
main.cpp:20: undefined reference to
`StaticObject::StaticObject(Graphics*, ...
0
votes
1answer
45 views
Is there a way to see the program counter in NetBeans debugger?
Is there a way to see the line/method that's currently executing in the NetBeans debugger, without doing step-by-step execution?
I know I could set breakpoints, but I'm curious if there's a way to ...
1
vote
2answers
120 views
Java ProcessBuilder Debugger Netbeans
I am having trouble with the deeper layers of the JVM and its debugging functionality.
What I am trying to do is start a separate java program using ProcessBuilder and let it communicate with my main ...
0
votes
1answer
109 views
does netbeans have something like Eclipse Debug display view
does netbeans have something like Eclipse Debug display view?
I love the interactive window for trying out Java code in Eclipse debug mode, and it's mentioned in this post:
Is there any Python-like ...
1
vote
1answer
199 views
How to use netbeans debugger with jRebel
i recently installed jrebel netbeans plugin just to try it. since then i noticed a netbeans debugger problem. i mean.. when i set a breakpoint and change something in class or file then my debugger ...
0
votes
1answer
124 views
NetBeans Debugger Attach Configurations
How can I remove the items in the list of the most recent debugger sessions? This shows up when you click the drop-down arrow inside the "Debug Project" button.
Where does NetBeans store this ...
0
votes
1answer
77 views
Tools and tips to increase productivity in PHP & JS [closed]
I started doing PHP/JS in notepad, then moved on to notepad++, then netbeans, and later I discovered PHP debugging.
Moving up the ladder through those tools have helped me allot, allot of things can ...
2
votes
0answers
69 views
Issues debugging SWFUpload and PHP
I'm trying to add a SWFUpload instance to my website where multiple files will be uploaded in a queue. Currently, I'm working in a local LAMP environment running Netbeans and XDebug for my server ...
0
votes
1answer
638 views
Debugging with Xdebug and Netbeans on Fedora 17
Yesterday I installed Xdebug on a Fedora 17 OS in order to use it with netbeans 7.3(in beta)
It took me some time so I share with you how did I managed to have it working:
Install Xdebug:
sudo yum ...
0
votes
0answers
338 views
Cannot debug Java Web application from Netbeans
I have a Java EE 5 application which consists of three web projects. I'm using JBoss 5.1 web server and NetBeans 7.2 IDE.
I have the following problems:
I cannot start application in Debug mode. ...
1
vote
1answer
46 views
Is it possible to finish a thread externally in java debugging?
I would like to know if it's possible to finish a thread externally in debug, (I don't mind if it's in an unsafe way, by deprecated Thread.stop()).
I am using Netbeans 7.1.2, and options for thread ...
0
votes
0answers
28 views
debug more than 1 main classes project
I have a C/S project written in Java using NetBeans.
When debugging I want to run the Server and the Client at the same time instead of clicking debug (then main class starts), then right clicking ...
0
votes
0answers
68 views
NetBeans/Eclipse for PHP lookup function usage
Does anyone know of an easy way to lookup all uses of a given function (either procedural or OO) within a PHP project in either NetBeans or Eclipse? My goal is to eliminate a particular function and ...
0
votes
0answers
64 views
Can not get xdebugger to work seamlessly
The last days have been quite frustrating, when setting up my programming environment. I have run into various problems. Yesterday I thought I made the break through, at last. Only a couple hours ...
0
votes
2answers
81 views
netbeans debugging best practice
[Edit: Let me rephrase]
Say an object o that occurs in debugging has properties a and b, with values null and Hello. Is it possible to automatically generate the following code for the next debugging ...
0
votes
1answer
124 views
Netbeans, xdebug : start debugging from browser
I have following problem about debugging PHP files in Netbeans using xdebug:
when I debug directly PHP file everything works OK. BUT:
If I debug whole file (starts in index.html) and after I click ...
0
votes
1answer
171 views
Debugging C with Netbeans/gdb terminates immediately with a SIGSEGV?
While developing in C in Netbeans on Ubuntu, at some point in development it became impossible to start the program in the Netbeans debugger (using gdb). Starting the debug process just failed to ...
0
votes
1answer
47 views
How to use debugger in netbeans that imports the w3c Tidy interface in java
I have a bug in my code that uses JTidy to clean some htmls. When it finds a malformed html, I have it to just skip it. But sometimes the program stalls on a malformed html so I want to see what's ...
1
vote
0answers
26 views
Debugging Java application running in linux through vnc server, from Netbeans installed in Windows
I have my java application in linux system which I remotely access through VNC server.
On my local desktop(windows) I have netbeans IDE installed.
I want to debug the application which I access using ...
0
votes
0answers
70 views
Netbeans can't find a file in debug mode
I'm trying to debug a project but when I trying to get it to read in the file I want, it can't find it. When I run the project normally, it finds the file though.
double** tsp_data_parser(char ...
0
votes
1answer
145 views
Debugging a NetBeans module with a NetBeans Maven Project
I have a NetBeans Module project using Maven loaded up in the NetBeans IDE. I need to debug the module. When I push the debug button I get the following error message:
The IDE needs to define ...
0
votes
2answers
58 views
How to use netBeans debugger to run for an amount of time
I rarely used the netbeans debugger but I have this bug in my program which I'm trying to get to the bottom of. Basically my program searches a binary file (4.5gb) for a seqeunce of bytes and writes ...
0
votes
0answers
47 views
How to set up NetBean's debugger
I want to start using debugger in NetBeans but when I hit debug Main Project I am keep getting:
Have no file for /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/modules/jdk.boot.jar
Window perspective ...
0
votes
0answers
77 views
Debug JSP in NetBeans
I'm using NetBeans 7.2 for JSP development.
Is there any way to configure NetBeans so whenever an error occurs the editor points to that line automatically, just like it happens in Visual Studio ?
0
votes
0answers
138 views
Netbeans+cygwin: get debugging working
We have some multithreaded C++ code written for Linux and after that ported to Windows (XP).
It uses cygwin, but debugging with gdb doesn't work at all. Even breakpoints doesn't works good. And ...
0
votes
1answer
678 views
NetBeans and APK Debugging (Recompiled, On Device)
I'm testing an Android application. I used APKTOOL to decompile/recompile (with debug symbols). I performed a debug code sign, and then installed the APK. The program appears to run fine.
According ...
0
votes
0answers
158 views
Debugging JAVA code from C++ (JNI) - VS2010 + NetBeans
I'm creating PKCS#11 library with all functionality writen in JAVA. Debugging .dll is not a problem (attaching firefox with loaded .dll), but I need also debug on JAVA side. I call JAVA's functions by ...
0
votes
2answers
261 views
NetBeans debug session from REST client
I frequently use the NetBeans debugger to step through my PHP applications. However, I also want to use the debugger when working on things that do not run in a web browser, per se (specifically a ...
0
votes
0answers
34 views
Netbeans 6.8 Debug key words change from English to Russian?.?.?.?
I've got some strange behavior going on with my Netbeans. When I start debugging, and my path jumps out of the module where my break point originated, all my key words change from English to what I ...
2
votes
3answers
196 views
Debugging java for loop: skip to a specific iteration
I'm working on a java project in Netbeans. I have a for loop which runs 29 times and each iteration takes about 1 minute to complete. The problem is in the 29th iteration of the loop. Is there any way ...
1
vote
1answer
151 views
How to debug multiple JUnit test suites in Netbeans?
I use Netbeans 7.0.1 (and JUnit 4) and have a java project with several test suites in different packages. I can run all tests by Alt+F6 or right-click on project and choose "Test". Also, I can debug ...
1
vote
1answer
469 views
Using Netbeans for JNI debugging ( Java and C code )
I am trying to write a simple Java application that calls a native method written in C. I am using Netbeans IDE and the code works perfectly but when I debug, there is no way I can hit the breakpoints ...
0
votes
0answers
143 views
netbeans debugger stops triggering breakpoints but no errors
I am using Netbeans 6.9.1 and have a problem where my debugger stops working, and the only solution is to restart the application I am debugging.
I am positive the code is hitting the code with the ...
0
votes
0answers
54 views
How to increase debug session time netbeans 7.1
A debug session in Net Beans 7.1(im using it with php and symfony2) has a very limited and short time. Due to this, i need to be ending and starting the debug several times.
Is posible to set a bigger ...
0
votes
0answers
48 views
Netbeans: change default main class for debugging
Once upon a time I set in netbeans a 'remember permanently' for the debugger in a project. That turned out to be a big mistake, since it is impossible to find where to change this main-class!
If ...
1
vote
2answers
944 views
Cannot debug project after Netbeans update
I recently clicked on the notification window of my Nebeans 7.1 installation to automatically install updates. Since then I am no longer able to debug my project. The project runs without problems, ...
0
votes
1answer
74 views
NetBeans debugging issue
When I click the debug button, I get a browser open up pointing to the following url:
http://localhost/www/somepage.php?XDEBUG_SESSION_START=netbeans-xdebug
For some reason it keeps inserting the ...
1
vote
2answers
595 views
Can Netbeans report a PHP exception through XDebug?
I have installed NB 7.1, WAMPP 1.7.7 (with PHP 5.3.8) and XDebug 2.1.4. I can inspect variables on breakpoints, ok. But if exception occurs then Netbeans dont know about this, while browser show ...
0
votes
2answers
475 views
Attatch debugger to Android Device not working in Netbeans (not emulator)
I cant seem to attach the debugger when trying to execute my code on Galaxy 2 T989. I am using Netbeans with the standard Android development plugin.
When I try to attach the debugger, the dialog ...
0
votes
2answers
83 views
Java Debugging - Concurrency of Exceptions
I am using java with netbeans IDE and I am trying to debug to the output window. My log prints to the output window in run-order except for exceptions, which tend to print ahead of their order in the ...
0
votes
2answers
821 views
Why is XDebug ignoring breakpoints from NetBeans 6.8?
I am running PHP 5.3.2, Apache 2.2.14 and xdebug 2.2.0rc1 on my Ubuntu 10.04 laptop, and I am trying to set up debugging on localhost in Netbeans 6.8.
My problem is that breakpoints I set in Netbeans ...
0
votes
1answer
234 views
Single stepping through C/C++ code with Netbeans 7.1.1 on UBuntu doesn't work
I am using Netbeans 7.1.1. I have a C++ project that uses stl. I made a clean build on UBuntu (version 10.10-Maverick Meerkat). When I try to single step, the debugger doesn't stop on next line. ...
0
votes
1answer
908 views
Proper Way in using Xdebug and Netbeans for Remote Debugging PHP website on a localhost machine
I'm having trouble with remote debugging using xdebug and netbeans configuration.
I can debug using xdebug and netbeans on localhost and it is working great.. but on a remote server, What happen was ...



