PHP
-
How to Test WordPress Plugins with PHPUnit in 2024: A Step-by-Step Guide
Testing your WordPress plugins is crucial for maintaining high-quality code. This guide walks you through setting up and running PHPUnit tests for your plugins, ensuring they are robust and bug-free. Follow these steps to create a comprehensive testing environment for your WordPress development projects.
-
How To Install WordPress on Debian 11 with Nginx and PHP-FPM
WordPress is the content management system (CMS) most used in the world. WordPress is used by 64% of all the CMS, the 43% of all websites in the web. WordPress is also Open Source, what means is free! and mainly oriented to the creation of blogs, content websites and eCommerce. This famous CMS is based…
-
Programando un bloque Gutenberg de WordPress en React desde cero
El día 21 de Enero de 2023 di una charla en la WordCamp Zaragoza 2023 sobre Bloques Gutenberg y React. Existe una sensación en la comunidad WordPress de que si no tengo un conocimiento avanzado de React y las tecnologías SPA, no podré crear un bloque Gutenberg… ¡Mentira! No necesitas ser un gurú de React…
-
Import customers with hashed passwords into Magento 2
Whether you are migrating your site from Magento 1, or from another platform, like WordPress, Prestashop, Symfony… you likely have a customer database you are interested in migrating to your new Magento 2 site. Once you have imported customers to Magento 2 with personal data, hashed passwords, addresses, etc.. If you have not taken into account…
-
The step-by-step guide to set up PhpStorm for Magento 2
Magento 2 is a complex platform/framework, therefore we need to use all of the tools we have to help us to develop Magento properly. I present you The step-by-step guide to set up PhpStorm for Magento 2 to help the developers to develop properly Magento 2 projects by following 4 easy steps.
-
Magento – show empty grouped products
·
Magento doesn’t show in the catalog view empty grouped products. In other words, Grouped products with no associated products. I’m showing how to show empty grouped products by removing the price index from the catalog query.
-
Running Cron Jobs in Magento 2
Running Cron Jobs in Magento 2 can be very useful to automate repetitive tasks. A cron is a Linux utility which schedules a command or script on your server to run automatically at a specified time and date.
-
Update WordPress without FTP
In some cases, WordPress asks you for your FTP details when trying to update the core or the plugins. This is a common issue whereby the WordPress system can’t write to your /wp-content folder. This post shows you How to Update WordPress Automatically Without Using FTP.
-
Cleaning Magento before going live
·
Cleaning Magento before going live is something you must do before going live in your production server. Magento 1.9 database structure is hard to understand, therefore if you don’t do this cleaning properly, you may end up with integrity database problems.
Search
Recent Posts
- How to Test WordPress Plugins with PHPUnit in 2024: A Step-by-Step Guide
- How to Create and Activate a Virtual Environment with Python venv
- Pillow Tutorial: Image Manipulation in Python
- PacMan – DFS Problem on HackerRank solved in Python 3
- Q-Learning from Scratch in Python