README 977 B

1234567891011121314151617181920212223
  1. xdebug (A PHP extension for debugging PHP scripts)
  2. The Xdebug extension helps you debugging your script by providing a
  3. lot of valuable debug information. The debug information that Xdebug
  4. can provide includes the following: stack traces and function traces
  5. in error messages, memory allocation and protection for infinite
  6. recursions. Xdebug also provides profiling information for PHP,
  7. scripts, code coverage analysis and capabilities to debug PHP scripts
  8. interactively with a debug client.
  9. Once you've installed xdebug, uncomment the following line in
  10. /etc/php.d/xdebug.ini:
  11. ; zend_extension = "/usr/lib/php/extensions/xdebug.so"
  12. Restart your webserver if you're using php with it, and as a
  13. recomendation from xdebug's README: "Write a PHP page that calls
  14. "phpinfo();" Load it in a browser and look for the info on the xdebug
  15. module. If you see it, you have been successful!"
  16. Note that some of xdebug's functionality may be dependent on php core
  17. configuration settings.