A standalone debugging client for PHP applications
Project description
Pugdebug
pugdebug is a standalone debugging client for PHP applications that uses Xdebug (3) as the debugging engine.
NOTE: This is the official fork!
Install pugdebug
Install from pip
pip install pugdebug
Install from source
pip install -r requirements.txt
Generate single executable
Require pyinstaller
and you can use build-pyinstaller.sh
or build-pyinstaller.bat
based on your system.
Using pugdebug
./app.py
Settings
To bring up the Settings
window, navigate to Files -> Settings
(shortcut: Ctrl+S
).
Path settings
The Path
section refers to the path settings.
The Root
under the Path
section is the root path where the project you want to debug is located.
The Maps from
under the Path
section is for when the project you want to debug is under a virtual machine, like Vagrant. Here you would enter the path of the project under that VM.
For example, if a project I'm working on is in /home/robert/wwww/pugdebug
and that maps to /var/www
under the VM, the Root
would be set to /home/robert/www/pugdebug
and the Maps from
would be set to /var/www
.
Debugger settings
The Host
setting should be the IP address of the machine on which pugdebug runs. In most cases (like vagrant) it is perfectly fine to leave this field blank.
The Port
setting is the port number on which Xdebug will attempt to connect to the machine on which pugdebug runs. The default port is 9003
.
The IDE Key
setting allows to filter out messages from Xdebug based on this value.
Break at first line
tells the debugger should it break on the first line or not (on CMS is better to disable it).
Max depth
, Max children
and Max data
settings control the amount of information about variables is retrieved from Xdebug.
Hotkeys
F1
- Start ListeningF2
- Stop ListeningF3
- StopF4
- DetachF5
- RunF6
- Step OverF7
- Step InF8
- Step OutCtrl+N
- New projectCtrl+F
- SearchCtrl+T
- Search for fileCtrl+G
- Go to lineCtrl+S
- Show settingsAlt+F4
- Exit applicatione
- Open the file opened in your editor (based on the settings)
FAQ
Debugging sessions
To start debugging, click the Start listening
button in the top left corner.
pugdebug then listens to all connections on the Port
provided, and if the connection has the IDE Key
matching with what is configured, it will start debugging the PHP request from that connection.
In the case if there is already a debugging in progress, the new connection will be queued and once the debugging of the current connection is done, the new one will be debugged.
This allows pugdebug to debug multiple requests (think ajax).
Load a web project in a browser and start a HTTP debugging session.
pugdebug should pick up that request and display the index file of the web project, while stopping the execution on the first line.
Using the Run
, Over
, In
, Out
continuation commands allows stepping through the PHP code.
Setting breakpoints is possible by double clicking the line where a breakpoint is needed.
The correspoding line number should be highlighted and a new breakpoint should be listed in the breakpoint viewer (bottom right corner).
Double clicking the line with a breakpoint should remove that breakpoint.
The Stop
action will stop debugging the current request and tell Xdebug to stop further execution of the PHP script that is being debugged.
The Detach
action will detach the debugger from the current request, which allows to stop debugging but also let the PHP script finish as it normally would.
The Stop listening
action will tell pugdebug to stop listening to new incomming connections.
Setting up the development environment
Setting up the development environment should be needed only when you want to help out with developing pugdebug itself.
The main dependencies are Python 3.7/9, QT5, SIP and PyQt5.
WordPress
As WordPress uses a hook system Break on the first line can create issues because open the first file and not where it is the breakpoint as example, so it is better to disable that option.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pugdebug-1.1.1.tar.gz
.
File metadata
- Download URL: pugdebug-1.1.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.23.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc065aee69fd2fca29ce28294df90a58cd410b93b199d46c06b90e0bac42ab9b |
|
MD5 | f8a56dfd0ca5c2e31d1ea7f91e1e64d6 |
|
BLAKE2b-256 | 8a29b62c653f68f07b65f2a31469d3923c731f149d23ed3ccb6afe04ce805266 |