aboutsummaryrefslogtreecommitdiff
path: root/development/php-xdebug/README
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2021-09-11 13:15:11 +0200
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2021-09-16 00:45:35 +0700
commitb850694736b59c4429d6ae24edb6a9f8cfce4848 (patch)
treecc31c8bf1f1289e5f6c5b5fdcd6139d3c211ba40 /development/php-xdebug/README
parent0ba89653ce1f58ae009eeb5e4d3fb5fe72babc21 (diff)
downloadslackbuilds-b850694736b59c4429d6ae24edb6a9f8cfce4848.tar.xz
development/php-xdebug: Renamed from xdebug
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/php-xdebug/README')
-rw-r--r--development/php-xdebug/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/development/php-xdebug/README b/development/php-xdebug/README
new file mode 100644
index 000000000000..8f44e093f782
--- /dev/null
+++ b/development/php-xdebug/README
@@ -0,0 +1,22 @@
+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.
+
+Once you've installed xdebug, uncomment the following line in
+/etc/php.d/xdebug.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!"
+
+Note that some of xdebug's functionality may be dependent on php core
+configuration settings.