Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NetBeans Xdebug max simultaneous connections

I'm using NetBeans to debug php with xdebug, everything works perfect but when there are several connections in the same script I'm debugging.

I've seen that PhpStorm provides a configuration check: simultaneous connections https://blog.jetbrains.com/phpstorm/2013/04/simultaneous-debugging-sessions-in-phpstorm/

I would like to know if NetBeans can manage simultaneous connections and how to activate it?

like image 637
jorgetutor Avatar asked Oct 29 '17 12:10

jorgetutor


1 Answers

NetBeans can debug php with simultaneous connections, though this is dependent upon both the constraints of the php interpreter and what you're doing with those connections. Check your server's php.ini for max_connections and if you're doing something like connecting to a database, make sure you're closing out the connections when finished with them. @Black's answer of VSCode is probably a better option than NetBeans. I use PHPStorm, but used NetBeans years ago.

like image 122
Mark Brown Avatar answered Sep 28 '22 10:09

Mark Brown