Category: News
Specbee: Simplified PHP Debugging with XDebug in Lando & DDev for Drupal
What is XDebug
Xdebug is a standard and powerful debugger in PHP and improves your development experience. It provides us developers with key features that help in finding and fixing the errors in code.
Step Debugging – A way to step through your code in your editor while the script is executing.
Improvements to PHP’s error reporting – This allows you to get better error messages and obtain more information from PHP’s built-in functions. An upgraded var_dump() function, stack traces for Notices, Warnings, Errors, and Exceptions to highlight the code path to the error.
Tracing – When an error occurs, Xdebug generates detailed stack traces that show the sequence of function calls leading up to the error, helping developers pinpoint the source of the issue. Xdebug helps in tracking the values of variables during script execution, making it easier to understand how values change as the script progresses.
Profiling – With the help of visualization tools, it allows you to analyze the performance of your PHP application and identify bottlenecks.
Code Coverage Analysis – This can generate code coverage reports, to show which parts of your code base are executed when running unit tests with PHPUnit.
Support for Various IDEs – Xdebug supports integration with multiple IDEs such as PhpStorm, Visual Studio Code, Eclipse, NetBeans, and more.
XDebug with VS Code IDE
I chose VS Code here as it’s one of the most used and my favorite editor. Install Visual Studio Code (VS Code) if you haven’t already.To make Xdebug work on this IDE, the first thing you need is the ‘PHP Debug’ Extension. Find and install it. This is needed for projects running on Lando or even with DDEV.
PHP Debug Extension
XDebug + VS Code + Lando
Enabling Xdebug on Lando
Lando by default does not provide you with an Xdebug extension. To enable Xdebug on Lando add the xdebug: true line to your .lando.yml file under the config key:
name: TechX
recipe: drupal10
config:
xdebug: trueOr else, override your php service, by adding xdebug: true under appserver:
name: TechX
services:
appserver:
webroot: web
xdebug: trueFollow it up by rebuilding your environment:
lando rebuild -yThis will enable the extension by default whenever you start the Lando environment and Xdebug is now ready to receive the connections.
In terms of performance, an even better option is to toggle between Xdebug on and off with some custom tooling commands. If you’re using Apache, tweak your .lando.yml with the following lines and don’t forget to run lando rebuild -y after.
config:
# Set Xdebug off by default. We use the tooling below to turn it on as needed.
xdebug: false
services:
appserver:
overrides:
environment:
XDEBUG_MODE: ‘debug,develop’
tooling:
xdebug-on:
service: appserver
description: Enable Xdebug.
user: root
cmd:
– docker-php-ext-enable xdebug && kill -USR2 $(pgrep -o php-fpm) > /dev/null || /etc/init.d/apache2 reload
– tput setaf 2 && echo “Xdebug On” && tput sgr 0 && echo
xdebug-off:
service: appserver
description: Disable Xdebug.
user: root
cmd:
– rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini && kill -USR2 $(pgrep -o php-fpm) > /dev/null || /etc/init.d/apache2 reload
– tput setaf 1 && echo “Xdebug Off” && tput sgr 0 && echoNow you can enable and disable Xdebug with custom commands lando xdebug-on and lando xdebug-off.
Browser Requirements
For your browser, install the suitable Xdebug helper extension. On Chrome browsers, enable the Xdebug helper extension.
Xdebug helper – Chrome Extension
If you are using Firefox, try the Xdebug Helper add-on.
Xdebug helper – Firefox Add-On
Making Xdebug work on VS Code
The next step is to create a custom .vscode/launch.json file within your workspace. This will map paths so that XDebug works correctly.Open your project in the VS Code IDE, go to ‘Run and Debug’ and click on ‘create a launch.json file’
Create launch.json file
This will create the launch.json file with relevant configurations. Update the ‘Listen for Xdebug’ section with the below details. Note that the Xdebug 3 listens on port 9003.
{
“version”: “0.2.0”,
“configurations”: [
{
“name”: “Listen for XDebug”,
“type”: “php”,
“request”: “launch”,
“port”: 9003,
“pathMappings”: {
“/app/”: “${workspaceFolder}/”,
}
}
]
}Start debugging!
Add a debug breakpoint to a line in your PHP code wherever you need it by clicking the line number.
Set breakpoints
Enable Xdebug on Lando using:
lando xdebug-onIn the menu, click on Run → Start Debugging. Ensure “Listen for Xdebug” is selected by the green arrowhead at the top left. The bottom pane of VS Code will be changed to orange (live) and should say “Listen for Xdebug”.
Start Debugging
Start Debugging
In your browser, navigate to your Lando app’s URL and find the Xdebug helper extension in the address bar. It is usually a “beetle” icon. Click on it and choose “Debug” from the menu to tell your browser to send the appropriate parameters to Xdebug so that Xdebug activates when a request is made.
Enable Xdebug helper extension
Refresh the page or click on your site link. VS Code should now automatically open the Debug window and produce a debug output if a breakpoint is reached.
Xdebug in action
Debugging Process
When your code execution reaches a breakpoint, the debugger will stop, and you can inspect variables, step through code, and understand the flow. VS Code will provide a user interface for interacting with the debugging session.
XDebug + VS Code + DDEV
Unlike Lando, with DDEV, Xdebug already exits out of the box. You don’t need any custom service, no rebuild, no browser extensions, no Drama! :)Just update the project’s .vscode/launch.json to add the “Listen for Xdebug” configuration from the below-attached config snippet.
{
“version”: “0.2.0”,
“configurations”: [
{
“name”: “Listen for XDebug”,
“type”: “php”,
“request”: “launch”,
“hostname”: “0.0.0.0”,
“port”: 9003,
“pathMappings”: {
“/var/www/html”: “${workspaceFolder}/”,
}
}
]
}Set a breakpoint in your PDP code. Restart it, if the breakpoint you set isn’t solid red. In the menu, choose Run → Start Debugging and ensure “Listen for Xdebug” is selected. Enable Xdebug on DDEV using:
ddev xdebug onIn a browser, visit your project, and just like you saw earlier, you will be redirected to your IDE once you hit the breakpoint.
Visit the page
Will be redirected to the IDE and stop at the first breakpoint
Final thoughts
XDebug is a powerful tool that significantly simplifies the debugging process for Drupal developers, helping them write more reliable and efficient code. I hope this tutorial has shed light on its benefits and how to set it up in your development environment. If you found this article useful, consider subscribing to our weekly newsletter where we share the latest tips, tricks, and insights in Drupal development.
When Should You Use Background Jobs? | Rubber Duck Dev Show 99
JRuby 9.3.11.0 Released
The JRuby community is pleased to announce the release of JRuby 9.3.11.0
- Homepage: https://www.jruby.org/
- Download: https://www.jruby.org/download
JRuby 9.3.x is compatible with Ruby 2.6.x and stays in sync with C Ruby. As always there is a mix of miscellaneous fixes so be sure to read the issue list below.
Thank you to our contributors this release, you help keep JRuby moving forward! @ahorek, @chadlwilson, @justinstoller, @k77ch7, @kares, @snoglobe
Ruby Compatibility
Standard Library
- strscan is still built-in (not a gem) but has been updated to the 3.0.6 version. #7634, #7884, #7889
- Along with this change, our Regexp engine joni is updated to 2.2.1 for Range optimizations.
- Default gem updates:
- jruby-openssl0.14.2 #7877
JVM Integration
- Virtual thread use in Fiber can now be disabled using the
jruby.fiber.vthread=false
property (or JRuby flag-Xfiber.vthread=false
). #7907
Build and Distribution
- The JRuby/Maven stack of plugins used to integrate Ruby and Maven artifacts have been updated to the latest versions, now using JRuby 9.4.3.0 for builds and avoiding the use of deprecated rubygems.org APIs. #7880
33 Github Issues resolved for 9.3.11.0
- #7216 – Something changed from 9.2.x to 9.3.x that causes a SecurityException with access denied when using jruby as osgi-bundle
- #7353 – SSH connection stucked with NET::SSH_7.0.1 and OpenSSH_8.0 with FIPS enabled
- #7394 – require_relative confused by chdir
- #7483 – Regression in Socket#close – EBADF after unsuccessful connection
- #7633 – Do not return early from ThreadService#terminate
- #7634 – Update joni and strscan
- #7635 – Cleanup IO state for true connect failures
- #7648 – Array#fill not compliant with MRI
- #7651 – Fix Array#fill for edge case
- #7677 – SCRIPT_LINES__ is set to nil if you require ripper.
- #7730 – Running specific regex with Regexp::IGNORECASE flag on text starting with specific pipe character results in java.lang.ArrayIndexOutOfBoundsException
- #7742 – fix flipBuffer overloads
- #7749 – When converting from binary to decimal with to_i(2), the result will be 0 if it contains multiple underscores.
- #7754 – [deps] update jruby-openssl to 0.14.1
- #7762 – [fix] avoid walking constructor instructions on every call
- #7769 – error: invalid multibyte character occurs in JRuby 9.4.2.0
- #7782 – Fix defined?(super) on BasicObject from causing NullPointerException
- #7784 – [build] make generated .class files deterministic
- #7794 – [deps] update joda-time to latest 2.12.5
- #7805 – High lock contention in Socket.select in JRuby 9.3
- #7806 – Reduce contention in heavy IO operations
- #7877 – [deps] update jruby-openssl to 0.14.2
- #7880 – Migrate to new mavengem (9.3 version)
- #7889 – Update joni and strscan for recent fixes
- #7906 – It seems that tomcat results in nullpointer exception when clearing tread locals
- #7907 – Improvements for vthread fibers
- #7912 – Guard for null in StringWrapper
- #7916 – ConcurrentModificationException during RubyModule.defineAnnotatedMethods / Ruby.addBoundMethod
- #7917 – Make bound method management threadsafe
- #7920 – Restore default protection domain for OneShotCL
- #7932 – Store absolute path of main at load time
- #7933 – Improve line numbers for generated dynscopes
- #7934 – Fix String#to_i with leading zero and underscores
p2k23 Hackathon Report: Landry Breuil (landry@) on chasing memory corruptions
landry@
), who writes,
It’s been a while since the last
p2k19 in bucarest… and this time in a
new place, city, country, lovely ireland with a lovely weather at this
time of the year.As usual, i wanted to play with things that were left on the side
for a
while (upgrading
mail/stalwart
stack to the new all-bundled-in-one
layout to play with
JMAP… or testingmatthieu@
‘s work on wayland) –
but i was of course mostly distracted from those interesting topics by
…firefox, you guess it. Dammit, not again !
End of servicing plan for third-party printer drivers on Windows
Open Source Initiative Hosts 2nd Deep Dive AI Event, Aims to Define ‘Open Source’ for AI
The Open Source Definition isn’t directly applicable to AI systems, so global experts will gather to establish shared principles to protect the values of Open Source during this period of hyper growth in AI technology.
The post <span class=’p-name’>Open Source Initiative Hosts 2nd Deep Dive AI Event, Aims to Define ‘Open Source’ for AI</span> appeared first on Voices of Open Source.
Q-Qaida – Episode 6 – Learn Quran – 11 Sep 2023 – ARY Qtv
Teacher: Hafiza Urooj Iqbal
Class: 6 | Haroof e Murakkabat (Shapes of Letters)
#QQaida #HafizaUroojIqbal #ARYQtv #QuranEducation
Subscribe Here: https://bit.ly/3dh3Yj1
Q Qaida is an introductory program that teaches beginners how to read the Arabic Script for Quranic recitation. It starts with the basic Arabic letters and gradually introduces different vowel sounds and Quranic pronunciation rules. It is commonly used to establish a solid foundation for Tajweed and Quranic recitation.
Official Facebook: https://www.facebook.com/ARYQTV/
Official Website: https://aryqtv.tv/
Watch ARY Qtv Live: http://live.aryqtv.tv/
Programs Schedule: https://aryqtv.tv/schedule/
Islamic Information: https://bit.ly/2MfIF4P
Android App: https://bit.ly/33wgto4
The new Mercedes-Benz E 300 de 4MATIC All-Terrain Design Preview
The E-Class All-Terrain is equipped as standard with AIRMATIC single-chamber air suspension. It provides up to 46 mm more ground clearance and continuously adjustable damping for the compression and rebound stages of the shock absorbers.
Luggage capacity can be expanded from 615 to 1,830 litres. In the plug-in hybrid model, the capacity ranges from 460 to 1,675 litres.
Rear passengers benefit particularly from the 22-millimetre longer wheelbase (2,961 millimetres). They now also have 1,519 millimetres of elbow room – an increase of 25 millimetres.
The E-Class All-Terrain has a braked towing capacity of up to 2,100 kilograms. This also applies to the plug‑in hybrid. The unbraked towing capacity is 750 kilograms. Thanks to a tongue weight of up to 84 kilograms, e-bikes can also go along for the ride.
With the illuminated grille frame (optional), two optical fibre bundles positioned behind the chrome strips receive light from LED modules.
The screen graphics can be customised with two display styles (classic and sport) and three modes (navigation, assistance, service). With the new MBUX, the main display icons are now simpler and colour-coded to resemble smartphone screen tiles.
Depending on the market, the communication module runs on 5G technology. This standard supports much faster data transfer rates than LTE/UMTS.
The digital vehicle key lets drivers use an iPhone or Apple Watch as a car key. After pairing a compatible device paired with the vehicle through Mercedes me connect, the device can be used to start, open and lock the E-Class All-Terrain. Key sharing is also possible. The digital key can be shared with up to 16 persons. In markets where Mercedes me connect services are available, the E-Class All-Terrain can be pre-equipped for the digital key as part of the KEYLESS-GO comfort package.