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...
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'...
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...
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...
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...
This is due to an existing or previously existing RAID configuration typically found in onboard RAID and configured in the BIOS.
To enable /etc/rc.local file run on system startup for server runing systemd, run:
systemctl enable rc-local
Then create /etc/rc.local file with 755 permission
touch /etc/rc.local
chmod 755 /etc/rc.local
cp command copies files from one location to another. Syntax cp [OPTION]… SOURCE DEST cp [OPTION]… SOURCE… DIRECTORY cp [OPTION]… –target-directory=DIRECTORY SOURCE… -a, –archivesame as ...