NetBeans – where to find the IDE log?

The logfile is stored in the “User Directory”. The location of the user directory is shown under “Help -> About”. Inside that directory the logfile itself can be found in the sub-directory var\log and is named messages.log You can display the log file directly inside the IDE using “View -> IDE Log”. The first view … Read more

How to add resources to classpath

Adding resource folder to classpath: When you Clean-&-Build a NetBeans Ant Based Project it creates a manifest.mf file in the root directory of the project. This file gets included in the JAR file also. Modify this file and add entry like follows: Manifest-Version: 1.0 X-COMMENT: Main-Class will be added automatically by build Class-Path: arts/ slash … Read more

Xdebug ignores breakpoints

It looks like there is something wrong with the path to the file containing the breakpoint. <- breakpoint_set -i 452 -t line -s enabled -f file:///http:/development.xxx.de/users/itsame/index.php -n 15 -> I’ve had a similar problem with Eclipse. Only my breakpoints in the index file were accepted and breakpoints in other files—that were included in the index—were … Read more