woman with monitors

(Part 1 – The Features Everyone Uses… and the Ones Almost No One Does)

If you’ve ever managed a website, chances are you’ve logged into cPanel at least once. For many, cPanel is simply “that blue page where I upload files and make email accounts.” In reality, it’s one of the most feature-dense control panels in the hosting industry, with literally hundreds of tools—many of which sit untouched for years, even by experienced users.

In this two-part series, we’re going to pull back the curtain on the overlooked, under-appreciated, and sometimes downright misunderstood features of cPanel that can save you time, secure your site, improve performance, and even rescue you from disaster.

Part 1: The Everyday Features (and Their Hidden Depth)

1. File Manager – Yes, It’s More Than a Web-Based FTP

Everyone uses File Manager to upload a quick file or edit wp-config.php when SSH is blocked. But did you know:

  • You can right-click → “Compress” and create password-protected ZIP files directly on the server.
  • You can edit files with syntax highlighting and search/replace across multiple files.
  • You can set file permissions numerically or recursively on entire directories without a single command line.
  • Hidden feature: Hold Ctrl (or Cmd) to select multiple non-adjacent files for batch download/delete/move.

Most people close File Manager the moment they’re done. Power users live in it.

2. Email Accounts – The Feature Everyone Creates, Few Secure

Creating an email is easy. What most miss:

  • Per-account disk quotas (stop one mailbox from filling your entire hosting space).
  • Automatic forwarding + SMTP “send as” using Roundcube or external clients without exposing your main password.
  • Email authentication settings (SPF, DKIM, DMARC) under “Email Deliverability”—turn these on or your mail goes straight to spam in 2025.
  • SpamAssassin + BoxTrapper. Yes, they’re old, but a correctly configured BoxTrapper challenge-response system still obliterates 99% of spam with zero false positives.

3. Domains Section – Way Beyond “Add-on Domains”

  • Addon Domains, Subdomains, Aliases, Redirects… most people stop there.
  • Overlooked gem: The “Zone Editor” (DNS management). You can:
    • Create custom TTLs for fast DNS propagation during migrations.
    • Add CAA records to lock which SSL providers can issue certificates for your domain.
    • Set up DNSSEC signing in two clicks (most hosts charge extra for this).
  • Redirects with/without www, with permanent (301) or temporary (302)—and yes, you can wildcard redirect (*.olddomain.com → newdomain.com).

4. Softaculous / Installatron – The One-Click Installer Almost Everyone Uses Wrong

You click “Install WordPress” and walk away. You’re missing:

  • Staging clones: create an exact copy of your live site in a subdirectory in 30 seconds.
  • Automatic backups before updates.
  • Selective restore: restore only the database or only wp-content from last week’s backup.
  • Import from remote server: move an entire site from another cPanel host without downloading a single file.

5. Backup & Backup Wizard – The Feature That Saves Lives (When Used)

cPanel’s backup tool is criminally underused because “my host does backups.” Host backups are for host disasters, not user error. What you should be doing:

  • Use “Download a Full Account Backup” once a month and store it off-site.
  • Use the Partial Backup options to download just your database or just your email forwarders/configs.
  • Home directory backups exclude dotfiles by default—make sure to include .htaccess, .user.ini, and wp-config.php manually.

Pro tip: The Backup Wizard lets you generate and download a backup without overwriting the daily one the host keeps.

6. Security Section – Where Most Sites Are Still Vulnerable in 2025

  • Two-Factor Authentication (TFA): Still optional for many. Turn it on. Takes 45 seconds.
  • IP Blocker: Block entire countries or known bad IP ranges.
  • SSL/TLS: AutoSSL is great, but you can force HSTS, choose specific cipher suites, or install paid certificates.
  • ModSecurity: Turn it on, then use “ModSecurity Tools” to whitelist false positives instead of disabling it completely.
  • Directory Privacy: Password-protect folders (great for staging sites or client preview areas).
  • Hotlink Protection: Stops people stealing your bandwidth by embedding your images.
  • Leech Protection: Locks out users who share their cPanel password on forums.

7. Metrics & Resource Usage – The Dashboard No One Looks At (Until Suspension)

  • CPU, RAM, Entry Processes, I/O—these are the limits that get you suspended.
  • “Resource Usage” shows a beautiful graph of the last 24 hours. Check it weekly.
  • “Errors” tab in Metrics shows the last 300 Apache errors. Faster than digging through raw logs.

The Features You’re Probably Ignoring Completely (But Shouldn’t)

8. Cron Jobs – Automation Heaven

Most people never set a single cron job. Meanwhile power users:

  • Run WP-Cron properly (disable wp-cron.php and trigger it every 5–15 minutes via cPanel cron).
  • Auto-empty cache, auto-prune database, auto-backup to Dropbox/Amazon S3 via simple wget/curl scripts.
  • Example that takes 10 seconds to set up:
Bash
0 */6 * * * php /home/username/public_html/wp-cron.php >/dev/null 2>&1

9. PHP Configuration (MultiPHP Manager & Select PHP Version)

You’re probably still on PHP 7.4 because “it works.” Meanwhile:

  • Switch to PHP 8.2 or 8.3 in one click and watch your site run 30–100% faster.
  • MultiPHP INI Editor lets you tweak max_execution_time, memory_limit, upload_max_filesize per domain.
  • Enable OPcache, redis, or memcached extensions if your host allows.

10. MySQL Databases & phpMyAdmin – Beyond “Create Database”

  • Remote MySQL: Allow trusted IPs (like your home IP or Cloudflare) to connect directly—great for desktop database tools.
  • phpMyAdmin’s “Operations” tab lets you rename an entire database (impossible in raw MySQL without dumping).
  • Repair and optimize tables in two clicks.

Part 1 Wrap-Up

If you only use cPanel for File Manager, Email Accounts, and Softaculous, you’re getting maybe 15% of what you’re already paying for. The tools we just covered are the “daily drivers” that still have hidden depth most users never explore.

In Part 2, we’re going deep into the truly overlooked sections:

  • Advanced DNS tools almost no one uses
  • Git Version Control integration
  • Node.js, Python, and Ruby app hosting
  • Email routing tricks even pros miss
  • The magical “Terminal” feature (when your host enables it)
  • Application Manager, SiteJet Builder, and WP Toolkit
  • How to use cPanel to run Laravel, Django, or static sites profitably

Stay tuned—Part 2 will turn you from a cPanel tourist into a cPanel black belt.

By staff