Commit:    4b6c8adea0129d62edba129afb0520f5c6b969ed
Author:    krakjoe <joe.watk...@live.co.uk>         Fri, 29 Nov 2013 19:54:55 
+0000
Parents:   de84aba976fd28145f06515bd181f1b10ff14e98
Branches:  PHP-5.6

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=4b6c8adea0129d62edba129afb0520f5c6b969ed

Log:
remote tutorial

Changed paths:
  A  tutorials/remote.md


Diff:
diff --git a/tutorials/remote.md b/tutorials/remote.md
new file mode 100644
index 0000000..2788204
--- /dev/null
+++ b/tutorials/remote.md
@@ -0,0 +1,43 @@
+Remote Debugging
+================
+*Using phpdbg across the network*
+
+It is sometimes useful to execute some code in the environment that exhibits 
some bugs; while there is a pretty good chance of being able to mock the 
environment that exhibited the bug on another machine, it is sometimes 
impossible or impractical.
+
+Remote debugging allows you to start an instance of phpdbg on any machine, and 
connect to it from any machine, bundled is a remote client implemented in Java:
+
+![phpdbg 
jui](https://raw.github.com/krakjoe/phpdbg/master/tutorials/java-example.png)
+
+
+Starting phpdbg in Remote Console Mode
+======================================
+*Starting the server ...*
+
+Simply open a terminal on the target machine and issue the command
+
+```
+./phpdbg -l4000
+```
+
+This will initialize phpdbg in Remote Console Mode, using port 4000 for stdin 
and port 8000 for stdout.
+
+To stop the service, send *SIGINT* to the phpdbg process, this will force it 
to bailout, as gracefully as it ever does.
+
+*To get help using these options see the help menu in phpdbg "help options"*
+
+
+Starting phpdbg-jui Anywhere
+============================
+*Java is everywhere, so is phpdbg ...*
+
+A JRE is needed for the bundled remote client, given any operating system with 
a working installation of Java:
+
+```
+java -jar /path/to/phpdb-jui.jar
+```
+
+Will initialize the bundled client, simply configure the settings accordingly 
and press *Connect*
+
+If disconnection is normal, the environment persists - another team member can 
pick up the session where it is left off.
+
+Debugging remotely is no different to debugging locally, all of the same 
functionality is provided remotely.


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to