I know that there are many questions on this, however, no matter what I tried, I was out of luck. The problem I'm encountering concerns breakpoints when using NetBeans and XDebug (on Windows 8.1, if that affects anything).
The problem is that no breakpoints work. By default, when debugging using NetBeans, it stops on the first line, and this succeeds. Therefore, NetBeans somehow connects to XDebug. However, any other breakpoints in any other files do not work.
I tried various settings in php.ini file, but no luck so far. I also tried to include the XDebug log file so that maybe I could analyze what was going on, but that didn't work either. Finally, I tried setting breakpoints using xdebug_break() , which also didn't work.
XDebug settings in php.ini
;[XDebug] ; Only Zend OR (!) XDebug zend_extension="C:\xampp\php\ext\php_xdebug.dll" xdebug.remote_enable=true xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp xdebug.profiler_enable=1 xdebug.profiler_output_dir="C:\xampp\tmp"
Project Startup Configuration on NetBeans


I have already considered the following:
Also note that this worked 3 days ago, however today no breakpoint is working.
Additional Information
I ran the following command in cmd php -v and the following warning was shown:
Warning: Module 'xdebug' already loaded in Unknown on line 0
Does this mean that xdebug is trying to download twice? If so, I'm not sure how this can be solved.