Recent articles
-
Server-to-Server File Transfer with PHP Script
When migrating a website, transferring files from the source server to the destination server is a key step. If you have SSH access, you can use commands like rsync, scp,…
-
How to hide a WordPress Plugin
When you develop a WordPress website, you may need to hide a plugin, so customers wonโt access it or change its settings. In this blog post, I will show how…
-
Upgrade MariaDB 10.3 to 10.5 on Ubuntu 20.04
Before upgrading, take a backup all databases. mysqldump –routines –triggers –all-databases | gzip -9 > “$(date +%F-%H%m%S)”-mysql-backup.sql.gz run these commands sudo apt-get install apt-transport-https curl sudo mkdir -p /etc/apt/keyrings sudo…
-
How to stop all services on a cpanel server
To stop all services on a cPanel server, you can follow commands in the command line interface. systemctl stop tailwatchd.service systemctl stop dnsadmin.service systemctl stop sw-engine.service systemctl stop dovecot systemctl…
-
Route Specific Subnet Through OpenVPN
Recently a customer send an ovpn file to connect to a server, which is on private netowrk. When i connect to the VPN, all my internet traffic get routed via…