Internet
-
Build Your Own Python Chatbot with the Telegram API
·
In this tutorial, you will learn how to create your own chatbot using the Python programming language and the Telegram API. Chatbots are increasingly popular and can have a wide range of applications, from automating tasks to interacting with users in real-time. I will guide you step-by-step through the development process, from the initial setup…
-
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…
-
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.
-
Magento Left Join on Attribute filters with EAV tables
·
One of the most used method when developing Magento (both 1 and 2) is to filter collections, by attributes or fields. But sometimes, when working with multiple models and complex queries, we need to identify how to make in Magento Left Join on Attribute filters with EAV tables. addAttributeToFilter is a method that can be…
-
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.
-
Security tips for Web Services
·
A Web service is a method of communication between two electronic devices over a network. I explain the main security problems and I present some technologies and mechanisms to ensure safety in your Web Services.
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