Correct WordPress permissions for directories and files

Changing permissions for directories and files in WordPress is an advanced task that may be required in certain situations. For example, if you are having problems installing plugins or themes, or you are seeing error messages indicating incorrect file permissions, changing permissions can help resolve these issues. It is also […]

Read More

Tutorial – How to install Apache, PHP 8.2, MariaDB and Let's Encrypt

Apache Installation and Configuration 1. First update your system's package list: sudo apt update 2. Install the Apache web server: sudo apt install apache2 PHP 8.2 Installation and Configuration 1. Add the Ondrej sury PPA repository: sudo add-apt-repository ppa:ondrej/php sudo apt update 2. Install PHP 8.2: sudo apt install php8.2 libapache2-mod-php8.2 MariaDB Installation and Configuration 1. Install […]

Read More

The 10 most commonly used Linux commands and how to use them – Part2

Here are 10 more commonly used Linux commands with three examples of each command: 1. chmod The “chmod” command stands for “change mode” and is used to change the permissions of files and directories. Examples: chmod 755 file.txt – Changes the permissions of the file “file.txt” to rwxr-xr-x. chmod u+x file.txt – Adds the user the […]

Read More

The 10 most commonly used Linux commands and how to use them – Part1

Linux is an operating system that is preferred by many professionals and developers due to its security, performance and powerful command line. It is important to be familiar with the common Linux commands in order to work more effectively. This article introduces the most commonly used Linux commands and gives three examples of each command. 1. cd The “cd” command […]

Read More