slackbuilds_ponce/development/xdebug
Robby Workman 84d2168900 Various: Set perms to 0644 on all SlackBuild scripts
These will (ideally, assuming we remember when generating tarballs)
still be mode 0755 inside the tarballs, but we would prefer to have
them mode 0644 on the server.  It's probably not really important,
but just call us OCD like that.  ;-)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2010-06-04 01:53:53 -05:00
..
README development/xdebug: Added (PHP extension for debugging PHP scripts). 2010-05-16 22:24:28 -05:00
slack-desc development/xdebug: Added (PHP extension for debugging PHP scripts). 2010-05-16 22:24:28 -05:00
xdebug.info development/xdebug: Added (PHP extension for debugging PHP scripts). 2010-05-16 22:24:28 -05:00
xdebug.SlackBuild Various: Set perms to 0644 on all SlackBuild scripts 2010-06-04 01:53:53 -05:00

Xdebug (A PHP extension for debugging PHP scripts)

The Xdebug extension helps you debugging your script by providing a lot of 
valuable debug information.  The debug information that Xdebug can provide 
includes the following: stack traces and function traces in error messages, 
memory allocation and protection for infinite recursions. Xdebug also 
provides profiling information for PHP, scripts, code coverage analysis and 
capabilities to debug PHP scripts interactively with a debug client.

This requires libedit.

Once you install xdebug, add the following line to php.ini:
	zend_extension = "/usr/lib/php/extensions/xdebug.so"

Restart your webserver if you're using php with it, and as a recomendation 
from xdebug's README:   "Write a PHP page that calls "phpinfo();" Load it 
in a browser and look for the info on the xdebug module.  If you see it, 
you have been successful!"