security
Tips to Install a Secure WordPress
All of us know that WordPress is the most common CMS and it is the easiest one ever, Now I will put here some tips to install a secure WordPress
- Install WordPress CMS platform Here is the link
- https://wordpress.org/plugins/advanced-nocaptcha-recaptcha
Important tips:
Wordpress htaccess configuration
as you know that WordPress is one of the most famous CMS in the world but unforunatily it is not secure enough and we have to protect it somehow abd also we need to setup some cache configuration in the htaccess
First thing you need to do is to disable directory listing by adding this line to .htaccess
Options All -Indexes
the other thing you need to do is to setup the objects cache (image/css files/ js files)
this is one of the best code we can use
How to apply the Magento 2 patches?
Most of Magento developer want to know exactly how they should apply the security patches on their websites
in this article we are going to talk about *.patch files
There are two ways to do this
1- using git command
git apply patch_filename.patch
or
2- using patch command
patch -p1 < patch_filename.patch
I hope this will be useful for you