June 11, 2018 — Error establishing database connection? White screen of death? Memory exhausted error? Plugin conflicts? No need to panic. Learn where to look first to solve the most common WordPress issues, as well as “insurance”-like best practices for your site like working with staging environments and utilizing backups.
February 3, 2018 — This is what this talk will help you with. We’ll look at the tools that you can use to solve this tricky issue. But we won’t stop there either We’ll also go over how to interpret what these tools are telling you. Because that’s how you’ll get to the root of the issue so that you can fix it.
March 29, 2017 — JavaScript is awesome when it works, but when it doesn’t, it can be extremely frustrating. How do you troubleshoot an AJAX call? How do you know if your JavaScript is even on the page? How do you know if it is executing when and how it should? We will walk through some of the best practices for finding and identifying problems with your JavaScript inside WordPress.
November 20, 2016 — En este taller se verán los siguientes aspectos:
Prevención: qué hacer para evitar o estar preparado ante errores
Elementos básicos: herramientas y rutas
Procedimientos ante errores: detallar procedimientos básicos para cuando se da un error solucionarlo o identificarlo
Errores comunes: ejemplos
Recursos: recopilación de dónde encontrar ayuda
November 20, 2016 — In this talk we’ll discuss common WordPress performance issues and how to troubleshoot them. Then we’ll dive into New Relic and how to leverage this powerful tool to monitor, troubleshoot and optimize your site.
November 5, 2016 — Learning to write code is easy. Learning to fix broken code is really hard. Whether you’re pasting code from a tutorial or writing your own code, figuring out why something doesn’t work as expected and how to fix it is difficult. In this talk, I will walk you through some basic methods for troubleshooting PHP and JS in your WordPress site, and introduce you to some helpful tools.
November 1, 2016 — Скачать Notepad++
https://notepad-plus-plus.org/
Скачать FileZilla
http://filezilla.ru/
Код для первого способа
define(‘WP_HOME’,’http://wptest.local’ );
define(‘WP_SITEURL’,’http://wptest.local’ );
Код для второго способа
update_option(‘siteurl’, ‘http://wptest.local’ );
update_option(‘home’, ‘http://wptest.local’ );
Код для третьего способа
define(‘RELOCATE’, true);
Запрос для четвертого способа
UPDATE `wp_options` SET `option_value`=’http://wptest.local’ WHERE `option_name`=’siteurl’ OR `option_name`=’home’;
June 8, 2016 — Bugs frustrate your clients and cause unnecessary costs for everyone. A bug caught by a client is more embarrassing and will take multiple times as long to fix as one found in development.
Find out how to increase your QA and decrease time spent on expensive bug fixes. In this talk, we’ll cover the workflows, testing methods, and tools that you need to keep bugs from making it into production. Everything from automated QA testing to why you should create your own in-house frameworks. You’ll walk away with a more accurate picture on testing and the ability to work towards eliminating all the bugs on your next project.
September 11, 2015 — This talk highlights some of the most common problems faced while working with WordPress and lists simple ways to overcome them.
April 4, 2015 — We all love WordPress but know that things can go wrong from time to time. What if you knew exactly what to do whenever a WordPress issue arises? This can include anything from a theme or plugin issue all the way to those really bizarre things that can happen leaving you clueless how to troubleshoot them. No high level amount of technical experience needed with the tricks you will learn. Being equipped to handle WordPress issues can really help you keep things running smoothly on your site and focus on the fun stuff rather than hair pulling and other madness.