linux - Create a .zip or .tar.gz archive in Ubuntu Linux (command line)

Create a .zip or .tar.gz archive in Ubuntu Linux (command line)

With Gnome, this is as easy as opening a file browser > select file(s) > right click > Compress… Here are the simple cases for the command line.  For many more advanced options, check the man pages for zip and tar. zip -r...

linux - Linux / Unix rcp command

Linux / Unix rcp command

Copies files from one computer to another computer. Syntax rcp [-p] [-r] filename … directory -pAttempt to give each copy the same modification times, access times, modes, and ACLs if applicable as the original file.-rCopy each subtree rooted...

cpanel license verification - How to Verify the cPanel License ✔️

How to Verify the cPanel License ✔️

If you suspect that your cPanel and WHM license is not functioning: Run either of the following commands from your server’s command line interface: curl -L lynx -dump Next, visit . cPanel license verification Enter the IP address you obtained...

Install WordPress on cPanel - Remove WordPress Version Number 🔢

Remove WordPress Version Number 🔢

To remove the WordPress version number simply add the following code in your functions.php file or custom plugin: /** * Remove WordPress version number*/ function custom_remove_version() { return ''; } add_filter('the_generator'...

installation - Install 🛡️ CSF Firewall on RHEL / CentOS 8

Install 🛡️ CSF Firewall on RHEL / CentOS 8

ConfigServer (CSF) is advanced open-source firewall for Linux and here is how to install it on CENTOS 8 1. Disable firewalld systemctl stop firewalld systemctl disable firewalld systemctl mask firewalld 2. Install iptables yum -y install...

New interface - Handling Null in ColdFusion 👨‍💻

Handling Null in ColdFusion 👨‍💻

CF uses duck typing to deal with variable types: if it quacks like a date, it must be a date.  More on duck typing When ColdFusion gets a null back from a Java function, it is much like a duck through a jet engine.  It is going to...

comment - Display total number of 💬 comments in WordPress

Display total number of 💬 comments in WordPress

Add the following code to your active theme’s functions.php file and then add this shortcode [wpm_total_comments] anywhere on your website where you want the total number of comments to display. /** *Display total number of WordPress...