Toskan
Toskan

Reputation: 14961

disable break at first line php scripts intellij when debugging?

Intellij suspends my scripts always on the first line of my php scripts when using xdebug, and I don't know why

any ideas?

enter image description here

enter image description here

Upvotes: 15

Views: 4752

Answers (3)

Jose Miralles
Jose Miralles

Reputation: 552

To turn it off or on quickly:

  1. Double press Shift to open the quick access menu.
  2. type "break at first line"
  3. You will be able to switch it off or on from that same window.

Upvotes: 1

Gli
Gli

Reputation: 172

Just if you want to localize it in the settings:

Settings > Languages & Frameworks > PHP > Debug:

External connections -> Break at first line in PHP scripts

It is the same place as the screen capture of the question, maybe they updated the view in latests versions of the IDE...

Upvotes: 3

Rubén Gómez
Rubén Gómez

Reputation: 346

Probably you've solved this a long time ago, but for the record:

Uncheck Run > Break at first line in PHP Scripts (last menu option in my IDE).

Found it via Ctrl + Shift + A typing "break"

PD. Also almost went nuts while finding it...

Upvotes: 21

Related Questions