phpmyadmin limit - Increase PHPMyAdmin upload limit in cPanel

Increase PHPMyAdmin upload limit in cPanel

To increase PHPMyAdmin upload limit in cPanel edit the following file:

nano /usr/local/cpanel/3rdparty/etc/php.ini

and change the following values:

upload_max_filesize = 150M
post_max_size = 150M

apache - How to Auto-Renew SSL on Password Protected 🔒 site Apache ✔️

How to Auto-Renew SSL on Password Protected 🔒 site Apache ✔️

On a website that is password protected using Apache basic authentication to auto-renew SSL we need to make the .well-known folder to be accessible without password. Password protected Apache website: <Directory "/var/www/html/"> AuthType...

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...