2

I unchecked the break on first line option in the PHP debug configuration, but it still breaks in the first line, no matter what.
How can I prevent this?

I'm using MacOSX, Eclipse PDT 3.0.2 with the Zend Debugger.

Flo
  • 27,355
  • 15
  • 87
  • 125
Petruza
  • 11,744
  • 25
  • 84
  • 136

1 Answers1

11

After a lot of googling I found out how to solve this problem. There are three places where the "Break on first line" configuration can be set.

  • Window -> Prefrences -> PHP -> Debug
  • Project -> Properties -> PHP Debug
  • Run -> Debug Configurations -> PHP Web Page -> <Your configuration> -> Server-Tab

Where the latter one overrides the previous one.

Flo
  • 27,355
  • 15
  • 87
  • 125
  • Thanks for coming back to this forgotten question and saving it from oblivion! :D – Petruza Feb 29 '12 at 15:37
  • In my configuration (MacOSX Mavericks, Eclipse Indigo Service Release 2, PHP Dev Tools 3.0.0, Xdebug) the 'Break at First Line' checkbox was in Debug As... -> Debug Configurations... -> PHP Web Application -> index (2), with index (2) being the name of my debug configuration. – bobnoble Nov 14 '13 at 18:06