Search Results

PHP debugging today - XDebug + PDT

php xdebug eclipse ide debugger pdt

Good news, my PHP colleagues. Dave Kelsey have uploaded the next version (0.2.0) of XDebug support for PDT 0.7 RC3. Plugin should be used with XDebug 2.0.0RC3 only and PDT 0.7 RC3 and newer.

Best JavaScript editor for Eclipse IDE reached a new version

javascript editor eclipse+ide plugin
JSEclipse is the best and free Javascript plug-in for the Eclipse IDE environment. Originally produced by InterAKT, it became Adobe Labs pet after Adobe acquired InterAKT to enhance existing product lines, including Macromedia Dreamweaver and Adobe Flex.
JSEclipse prerelease 2 released on April 2, 2007. Designed to help web developers edit JavaScript [...]

XDebug support for Eclipse PHP IDE

php xdebug eclipse ide debugger pdt
Great news! No more Zend debugger monopoly for PDT. Dave Kelsey submitted an enhancement to Eclipse PDT (formerly Eclipse PHP IDE) which provides XDebug support.
Plugin is totally usable, despite of some limitations (its just first public release, remember?)

Refactoring C-sharp code with ReSharper

refactoring software programming ReSharper In software engineering, the term refactoring means modifying source code without changing its external behavior, and is sometimes informally referred to as “cleaning it up”. In extreme programming and other agile methodologies refactoring is an integral part of the software development cycle: developers alternate between adding new tests and functionality and [...]

Serious problems with $_POST array handling in recently released PHP 5.1.3

A critical bug with $_POST array handling as well as the FastCGI sapi have been discovered in PHP 5.1.3. The problem is actually messing data in $_POST:

<form method="post" action="" enctype="multipart/form-data">
<input type="text" name="java[server_1]" value="jboss">
<input type="text" name="java[server_2]" value="tomcat">
<input type="submit"></form>
Returning array:
(
[java] => Array
(
[...]