SlideShare a Scribd company logo
1 of 17
XDebug
@Kayleighthorpe
Introducing my friend
Xdebug is an extension for PHP to assist with debugging and
development.
it upgrades PHP's var_dump() function; it adds stack traces
for Notices, Warnings, Errors and Exceptions
What is XDebug?
• Debugging
• Stack Tracing
• Profiling
@Kayleighthorpe
Installation
https://xdebug.org/docs/install
Most installations require downloading the XDebug package
and enabling it within your php.ini file
XDebug is an advanced tool and can only be installed if you have server
side access or your hosting provider installs it for you.
@Kayleighthorpe
MAMP
Download and Install MAMP:
https://www.mamp.info/en/
Start server
@Kayleighthorpe
@Kayleighthorpe
MAMP Use phpinfo to find out where your PHP.ini is:
MAMP
@Kayleighthorpe
MAMPMAMP
Open PHP.ini and this will be at the bottom of the file:
Uncomment to enable and add the following options:
MAMP
@Kayleighthorpe
Check Debug is enabled in php.ini:
Optional: Enable display errors:
@Kayleighthorpe
MAMPMAMP
[root@34SP:.../albinofruit.com/statistics/logs]$ tail -n50 php-error.log
[06-Apr-2018 13:37:55 UTC] PHP Warning: count(): Parameter must be
an array or an object that implements Countable in
/var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-
lightbox/includes/class.utilities.php on line 1411
[root@34SP:.../albinofruit.com/statistics/logs]$
Basic error log example:
Shows a warning, nothing breaking the site currently, but it might
cause problems in newer PHP versions or the error might slow my
site down.
@Kayleighthorpe
[06-Apr-2018 13:37:55 UTC] PHP Warning: count(): Parameter must be an array or an object that
implements Countable in /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-
lightbox/includes/class.utilities.php on line 1411
[06-Apr-2018 13:37:55 UTC] PHP Stack trace:
[06-Apr-2018 13:37:55 UTC] PHP 1. {main}() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-
admin/options-general.php:0
[06-Apr-2018 13:37:55 UTC] PHP 2. require_once() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-
admin/options-general.php:10
[06-Apr-2018 13:37:55 UTC] PHP 3. require_once() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-
admin/admin.php:216
[06-Apr-2018 13:37:55 UTC] PHP 4. do_action() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-
admin/admin-header.php:97
[06-Apr-2018 13:37:55 UTC] PHP 5. WP_Hook->do_action()
/var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/plugin.php:453
[06-Apr-2018 13:37:55 UTC] PHP 6. WP_Hook->apply_filters()
/var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/class-wp-hook.php:310
[06-Apr-2018 13:37:55 UTC] PHP 7. SLB_Admin->enqueue_client_files()
/var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/class-wp-hook.php:284
[06-Apr-2018 13:37:55 UTC] PHP 8. SLB_Utilities->is_context()
/var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-lightbox/includes/class.base.php:365
[06-Apr-2018 13:37:55 UTC] PHP 9. SLB_Utilities->get_context()
/var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-
lightbox/includes/class.utilities.php:996
[06-Apr-2018 13:37:55 UTC] PHP 10. SLB_Utilities->get_action()
/var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-
lightbox/includes/class.utilities.php:921
Stack Tracing
Same log with XDebug enabled:
Loads everything in order @Kayleighthorpe
Profiling
php_value[xdebug.profiler_enable]=1
php_value[xdebug.profiler_output_dir]=/var/www/vhosts/theresite.c
o.uk/httpdocs/
Creates a cachegrind file
You can cat the file, but it’ll not make a lot of sense.
Helps to find out where memory issues lie, by saving data
about your called functions in a cachegrind file.
@Kayleighthorpe
To view cachegrind file you can use:
Webgrind: https://github.com/jokkedk/webgrind
Or:
brew install qcachegrind
brew install graphviz
Qcachegrind:
On Mac
@Kayleighthorpe
qcachegrind ~/Downloads/cachegrind.out.21991
@Kayleighthorpe
Displays how long individual functions take to run.
@Kayleighthorpe
Keep Debug switched off unless
it is being used.
@Kayleighthorpe
Run on development site.
https://xdebug.org/docs/
@Kayleighthorpe
Thank You
@Kayleighthorpe

More Related Content

Similar to Introducing XDebug - The Powerful PHP Debugging and Profiling Tool

Php through the eyes of a hoster phpbnl11
Php through the eyes of a hoster phpbnl11Php through the eyes of a hoster phpbnl11
Php through the eyes of a hoster phpbnl11Combell NV
 
Php through the eyes of a hoster confoo
Php through the eyes of a hoster confooPhp through the eyes of a hoster confoo
Php through the eyes of a hoster confooCombell NV
 
Diagnosing WordPress: What to do when things go wrong
Diagnosing WordPress: What to do when things go wrongDiagnosing WordPress: What to do when things go wrong
Diagnosing WordPress: What to do when things go wrongWordCamp Sydney
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Combell NV
 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress developmentSteve Mortiboy
 
Use Xdebug to profile PHP
Use Xdebug to profile PHPUse Xdebug to profile PHP
Use Xdebug to profile PHPSeravo
 
How to? Drupal developer toolkit. Dennis Povshedny.
How to? Drupal developer toolkit. Dennis Povshedny.How to? Drupal developer toolkit. Dennis Povshedny.
How to? Drupal developer toolkit. Dennis Povshedny.DrupalCampDN
 
TDC 2015 - POA - Trilha PHP - Shit Happens
TDC 2015 - POA - Trilha PHP - Shit HappensTDC 2015 - POA - Trilha PHP - Shit Happens
TDC 2015 - POA - Trilha PHP - Shit HappensJackson F. de A. Mafra
 
PHP tutorials , php tutorials for beginners , tutorials for php
PHP tutorials , php tutorials for beginners , tutorials for phpPHP tutorials , php tutorials for beginners , tutorials for php
PHP tutorials , php tutorials for beginners , tutorials for phpaimaq9a
 
Session10-PHP Misconfiguration
Session10-PHP MisconfigurationSession10-PHP Misconfiguration
Session10-PHP Misconfigurationzakieh alizadeh
 
Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Helgi Þormar Þorbjörnsson
 
Making the Most of Plug-ins - WordCamp Toronto 2008
Making the Most of Plug-ins - WordCamp Toronto 2008Making the Most of Plug-ins - WordCamp Toronto 2008
Making the Most of Plug-ins - WordCamp Toronto 2008Brendan Sera-Shriar
 
Php Best Practices
Php Best PracticesPhp Best Practices
Php Best PracticesAnsar Ahmed
 
Php Best Practices
Php Best PracticesPhp Best Practices
Php Best PracticesAnsar Ahmed
 
Deploy a PHP App on Google App Engine
Deploy a PHP App on Google App EngineDeploy a PHP App on Google App Engine
Deploy a PHP App on Google App EngineMichele Orselli
 

Similar to Introducing XDebug - The Powerful PHP Debugging and Profiling Tool (20)

Php through the eyes of a hoster phpbnl11
Php through the eyes of a hoster phpbnl11Php through the eyes of a hoster phpbnl11
Php through the eyes of a hoster phpbnl11
 
Php through the eyes of a hoster confoo
Php through the eyes of a hoster confooPhp through the eyes of a hoster confoo
Php through the eyes of a hoster confoo
 
Php
PhpPhp
Php
 
Diagnosing WordPress: What to do when things go wrong
Diagnosing WordPress: What to do when things go wrongDiagnosing WordPress: What to do when things go wrong
Diagnosing WordPress: What to do when things go wrong
 
Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10Php through the eyes of a hoster: PHPNW10
Php through the eyes of a hoster: PHPNW10
 
PHP
PHPPHP
PHP
 
Getting started with WordPress development
Getting started with WordPress developmentGetting started with WordPress development
Getting started with WordPress development
 
Php Debugger
Php DebuggerPhp Debugger
Php Debugger
 
Use Xdebug to profile PHP
Use Xdebug to profile PHPUse Xdebug to profile PHP
Use Xdebug to profile PHP
 
Php Ppt
Php PptPhp Ppt
Php Ppt
 
How to? Drupal developer toolkit. Dennis Povshedny.
How to? Drupal developer toolkit. Dennis Povshedny.How to? Drupal developer toolkit. Dennis Povshedny.
How to? Drupal developer toolkit. Dennis Povshedny.
 
Drupal development
Drupal development Drupal development
Drupal development
 
TDC 2015 - POA - Trilha PHP - Shit Happens
TDC 2015 - POA - Trilha PHP - Shit HappensTDC 2015 - POA - Trilha PHP - Shit Happens
TDC 2015 - POA - Trilha PHP - Shit Happens
 
PHP tutorials , php tutorials for beginners , tutorials for php
PHP tutorials , php tutorials for beginners , tutorials for phpPHP tutorials , php tutorials for beginners , tutorials for php
PHP tutorials , php tutorials for beginners , tutorials for php
 
Session10-PHP Misconfiguration
Session10-PHP MisconfigurationSession10-PHP Misconfiguration
Session10-PHP Misconfiguration
 
Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009
 
Making the Most of Plug-ins - WordCamp Toronto 2008
Making the Most of Plug-ins - WordCamp Toronto 2008Making the Most of Plug-ins - WordCamp Toronto 2008
Making the Most of Plug-ins - WordCamp Toronto 2008
 
Php Best Practices
Php Best PracticesPhp Best Practices
Php Best Practices
 
Php Best Practices
Php Best PracticesPhp Best Practices
Php Best Practices
 
Deploy a PHP App on Google App Engine
Deploy a PHP App on Google App EngineDeploy a PHP App on Google App Engine
Deploy a PHP App on Google App Engine
 

Recently uploaded

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Hyundai Motor Group
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 

Recently uploaded (20)

08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 

Introducing XDebug - The Powerful PHP Debugging and Profiling Tool

  • 2. Xdebug is an extension for PHP to assist with debugging and development. it upgrades PHP's var_dump() function; it adds stack traces for Notices, Warnings, Errors and Exceptions What is XDebug? • Debugging • Stack Tracing • Profiling @Kayleighthorpe
  • 3. Installation https://xdebug.org/docs/install Most installations require downloading the XDebug package and enabling it within your php.ini file XDebug is an advanced tool and can only be installed if you have server side access or your hosting provider installs it for you. @Kayleighthorpe
  • 4. MAMP Download and Install MAMP: https://www.mamp.info/en/ Start server @Kayleighthorpe
  • 5. @Kayleighthorpe MAMP Use phpinfo to find out where your PHP.ini is: MAMP
  • 6. @Kayleighthorpe MAMPMAMP Open PHP.ini and this will be at the bottom of the file: Uncomment to enable and add the following options:
  • 7. MAMP @Kayleighthorpe Check Debug is enabled in php.ini: Optional: Enable display errors:
  • 9. [root@34SP:.../albinofruit.com/statistics/logs]$ tail -n50 php-error.log [06-Apr-2018 13:37:55 UTC] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple- lightbox/includes/class.utilities.php on line 1411 [root@34SP:.../albinofruit.com/statistics/logs]$ Basic error log example: Shows a warning, nothing breaking the site currently, but it might cause problems in newer PHP versions or the error might slow my site down. @Kayleighthorpe
  • 10. [06-Apr-2018 13:37:55 UTC] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple- lightbox/includes/class.utilities.php on line 1411 [06-Apr-2018 13:37:55 UTC] PHP Stack trace: [06-Apr-2018 13:37:55 UTC] PHP 1. {main}() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp- admin/options-general.php:0 [06-Apr-2018 13:37:55 UTC] PHP 2. require_once() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp- admin/options-general.php:10 [06-Apr-2018 13:37:55 UTC] PHP 3. require_once() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp- admin/admin.php:216 [06-Apr-2018 13:37:55 UTC] PHP 4. do_action() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp- admin/admin-header.php:97 [06-Apr-2018 13:37:55 UTC] PHP 5. WP_Hook->do_action() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/plugin.php:453 [06-Apr-2018 13:37:55 UTC] PHP 6. WP_Hook->apply_filters() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/class-wp-hook.php:310 [06-Apr-2018 13:37:55 UTC] PHP 7. SLB_Admin->enqueue_client_files() /var/www/vhosts/albinofruit.com/httpdocs/wp/wp-includes/class-wp-hook.php:284 [06-Apr-2018 13:37:55 UTC] PHP 8. SLB_Utilities->is_context() /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple-lightbox/includes/class.base.php:365 [06-Apr-2018 13:37:55 UTC] PHP 9. SLB_Utilities->get_context() /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple- lightbox/includes/class.utilities.php:996 [06-Apr-2018 13:37:55 UTC] PHP 10. SLB_Utilities->get_action() /var/www/vhosts/albinofruit.com/httpdocs/wp-content/plugins/simple- lightbox/includes/class.utilities.php:921 Stack Tracing Same log with XDebug enabled: Loads everything in order @Kayleighthorpe
  • 11. Profiling php_value[xdebug.profiler_enable]=1 php_value[xdebug.profiler_output_dir]=/var/www/vhosts/theresite.c o.uk/httpdocs/ Creates a cachegrind file You can cat the file, but it’ll not make a lot of sense. Helps to find out where memory issues lie, by saving data about your called functions in a cachegrind file. @Kayleighthorpe
  • 12. To view cachegrind file you can use: Webgrind: https://github.com/jokkedk/webgrind Or: brew install qcachegrind brew install graphviz Qcachegrind: On Mac @Kayleighthorpe qcachegrind ~/Downloads/cachegrind.out.21991
  • 13. @Kayleighthorpe Displays how long individual functions take to run.
  • 15. Keep Debug switched off unless it is being used. @Kayleighthorpe Run on development site.

Editor's Notes

  1. name is kayleigh From 34SP MANCHESTER today talking about a tool really useful called xdebug
  2. module you can install on web server Extends PHP's var_dump Adds stack tracing and profiling which helps find bugs and boost performance
  3. need server side access Would read recommend local environment as resource intensive and can slow live sites down Will show on my web server but showing how easy it is to get started on local environment
  4. Mamp for Mac Program to create local dev sites Easy to set up, just download and install Press start server to begin developing a local site on your computer you can upload later
  5. When MAMP is set up get this screen To enable xdebug Check phpinfo to find where our php.ini config file is
  6. Shows me where my php.ini is Open that, the bottom line has xdebug extension commented out Uncomment to enable and set the xdebug settings you want to use Available settings in documentation link I will show at the end
  7. Will need to restart the web server Check xdebug is enabled by going back to phpinfo I'm also enabling on site errors here just to show you it working on MAMP
  8. This is my local environments home page, purposely created a PHP error just to show you how it looks on site, you don't have to display errors on sight you can just put them in a log file which is less intrusive
  9. Example of stack tracing - here's what my web servers error log looks like without xdebug Basic error information
  10. With xdebug, shows the full stack trace and I can pinpoint where errors occur easier
  11. Profiling also useful tool for finding performance issues Profile takes a bunch of information from your initiated php code and puts it in a file called cachegrind Enable profiling and setting where to put cachegrind file - pretty unreadable
  12. Can read cachegrind file using a program - webgeind is popular but I'm showing qcachegrind because it's the easiest to set up on mac
  13. Gives visual representation of your php functions and execution times so you can pick up where issues lie easier
  14. Full screen of left panel - lists functions in order of time taken to run so for example if you see a plugins function takin forever in here you know it's a culprit for slowing things down - useful
  15. Reason use on development site is its resource intensive, constantly checking things when it's enabled, so remember to switch off if running on live servers
  16. Here's the link to docs so you can find out more about installing and debugging using this pretty great took
  17. Thanks