I configured phpstorm-xdebug and I was able to debug my code with breakpoints. These days I updated php (through brew) and xdebug and now I have php 5.5.26 with xdebug 2.3.3. When I try to debug tests …
Tag: xdebug
How to debug in PHPStorm with built in webserver using Symfony command line tool
I was able to set up a php web app debugger in PHPStorm by simply tying it to my localhost at a specific port and everything works fine. However for that to work I need to first run this command on the shell: This works just fine if I set up breakpoints for browsing the site itself or testing api
How to change the colors of xdebug output?
The red and yellow standard colors of xdebug can hurt your eyes after a few hours. http://www.designified.com/blog/article/76/restyling-xdebug-output describes how to replace the style with javascript requiring jquery. I was looking for a more straight forward way and finally found one. Answer The solution is the !important tag, it overrides the existing style values. Use the following css code to avoid
Error running script.php: Port 9000 is busy
I set php.ini and Debug config in phpstorm. Trying to debug php script outputs in phpstorm Event log with: end of php.ini: Debug port in pStorm is also set on 9000. netstat -na outputs with: What if I set to other port. eg setting it to 10001 seems to do the job. Or just how to make it work properly.
netbeans shows “Waiting For Connection (netbeans-xdebug)”
need help to configure xdebug, for debugging projects from IDE netbeans. These are the features of my components: XAMPP 1.8.2 PHP: 5.4.16 netbeans: 7.3.1 Apache: 2.4.4 (Win32) this is the …
PhpStorm debugger not stopping at BreakPoints; keeps waiting for xdebug _SESSION_
Updated question : PhpStorm | WebMatrix (IISExpress) | Xdebug.remote_port | — Which Port(s) to put where? I’m running localhost web server on my Windows machine with WebMatrix and IISExpress. I’ve installed PHP and Xdebug in it and they both are working. I have a local WordPress install. I’m now trying to get PhpStorm to debug it using Xdebug. When I
Solution for “Fatal error: Maximum function nesting level of ‘100’ reached, aborting!” in PHP
I have made a function that finds all the URLs within an html file and repeats the same process for each html content linked to the discovered URLs. The function is recursive and can go on endlessly. …
XDebug not working with xampp
I’m using (or trying to anyway) use the bundled XDebug with XAMPP 1.7.2. It comes bundled with Apache 2.2.12, PHP 5.3.0, XDebug 2.0.5 and Zend (not sure on version) This is a totally fresh install of XAMPP, the only thing I’ve added to php.ini (at xampp/php/php.ini) is: (this is only one of many different configs I’ve tried) But try as