netbeans - XDebug doesn't stop on breakpoints set on Yii controllers' actions -


i code in yii framewor, using netbeans 8.0.1 , eclipse. local developement environment build on xampp. can see, breakpoints set anywhere within wordpress code works fine. but, when try set breakpoint on yii's controller or action, xdebug won't stop @ point. work on index.php of project.

however, xdebug_break() work controllers, not actions.

my php.ini settings xdebug are:

[xdebug] zend_extension = c:\xampp\php\ext\php_xdebug-2.2.5-5.5-vc11.dll ;xdebug.profiler_append = 0 ;xdebug.profiler_enable = 1 ;xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "c:\xampp\tmp" xdebug.profiler_output_name = "cachegrind.out.%t-%s" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_host = 127.0.0.1 xdebug.trace_output_dir = "c:\xampp\tmp" xdebug.idekey=netbeans-xdebug xdebug.remote_port=9000 xdebug.remote_log = "c:/xampp/tmp/xdebug_remot.log" xdebug.show_local_vars = 9 xdebug.max_nesting_level = 250 xdebug.auto_trace=1 xdebug.remote_server = 127.0.0.1 

i'm trying deal problem week , still didn't come solution.


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -