SYSTEMS OPERATIONAL
Hosting

cPanel Web Disk: Mount Your Hosting Account as a Network Drive

Getwebup 6 min read

If you've ever wished you could just drag files into your hosting account the way you drag them into any other folder on your computer, that's exactly what cPanel's Web Disk does. It's built on WebDAV, it's already enabled on most Getwebup accounts, and most people have never touched it because FTP and File Manager get all the attention. Here's how to set it up, connect from Windows, macOS, and Linux, and fix the handful of errors that trip people up.

What Web Disk actually is

Web Disk mounts your cPanel home directory (or a subfolder of it) as a network drive on your local machine, using the WebDAV protocol over HTTPS. Once it's connected, the remote folder shows up in Windows Explorer or macOS Finder like any local or network drive — you can open, edit, copy, and delete files directly, with no separate FTP client running in the background.

It uses your cPanel login (or a restricted sub-account you create just for this) and talks over port 2078 (SSL) or 2077 (non-SSL, best avoided). Unlike FTP, there's no third-party app to install on most platforms — the OS handles it natively.

Web Disk vs FTP vs File Manager

FeatureWeb DiskFTPFile Manager
Client neededNone (native OS support)FileZilla, WinSCP, etc.Browser only
Feels likeA local folder / network driveA separate upload windowA web-based file browser
Best forEveryday drag-and-drop editingBulk uploads, scripted transfers, dev toolsQuick one-off edits, permissions, zipping
EncryptionHTTPS (with SSL option)Only if using FTPS/SFTPHTTPS (via cPanel login)

None of these replace the others — Web Disk is just the most convenient option when you want your hosting account to behave like local storage, especially for content editors who aren't comfortable with an FTP client.

Step 1: Find Web Disk in cPanel

Log in to cPanel and search for Web Disk (it's under the Files section). You'll see two things here: an option to create additional Web Disk accounts scoped to a specific directory, and quick-connect buttons for your main account.

Don't hand out your main cPanel password for something as routine as file access. Create a dedicated account instead:

  1. In the Web Disk page, fill in a username and the Domain the account belongs to.
  2. Set the Directory — this locks the account to that folder and everything below it, same idea as a scoped FTP account.
  3. Set a strong password (or use the generator) and click Create.
  4. Leave permissions as Read-Write unless this is for someone who should only be able to view files.

Step 3: Connect from Windows

Windows has a quirk worth knowing about upfront: it blocks Basic Authentication over plain HTTP by default, which is why the SSL/TLS connection matters here.

  1. From the Web Disk page in cPanel, find your account in the list and click the gear icon, then Configure Client Access.
  2. Under Web Disk Login, click the Windows icon for Windows 8 or later to download a small connection script, or set it up manually.
  3. Manual method: open This PC, click Map network drive, and enter https://yourdomain.com:2078 as the folder. Check Connect using different credentials and enter the Web Disk username and password.
  4. If Windows complains about the certificate or refuses the connection, apply this registry fix first (it enables Basic Auth for WebDAV over SSL) via regedit: set HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel to 2, then restart the WebClient service.

Step 3: Connect from macOS

  1. Open Finder, then Go > Connect to Server (or press Cmd+K).
  2. Enter https://yourdomain.com:2078 and click Connect.
  3. Enter the Web Disk username and password when prompted, and choose to save it to your keychain if you'll be reconnecting often.
  4. The drive appears in Finder's sidebar under Locations.

Step 3: Connect from Linux

Most desktop file managers (Nautilus, Dolphin) support WebDAV natively through the address bar:

davs://yourdomain.com:2078/

For command-line mounting, install davfs2 and mount it like a regular filesystem:

sudo apt install davfs2
sudo mount -t davfs https://yourdomain.com:2078/ /mnt/webdisk

You'll be prompted for the Web Disk username and password, and davfs2 will offer to cache them for future mounts.

Common Web Disk errors and how to fix them

"The folder you entered does not appear to be valid" (Windows)

This is almost always the Basic Auth over SSL restriction mentioned above. Apply the BasicAuthLevel registry fix and restart the WebClient service, or connect using the auto-generated script from cPanel instead of mapping manually.

Login keeps failing even though the password is correct

Check for a leading or trailing space copied along with the password, and confirm you're using the Web Disk account's username, not your main cPanel username — they're separate credentials once you've created a scoped account. If the account was created recently, it can take a minute or two to propagate.

Connects, but the folder is empty or files are missing

You're likely connected to the correct account but the wrong directory scope. Check the Directory field you set when creating the Web Disk account — if it points to public_html/uploads, that's all you'll see, by design.

Works on the office network but not from home (or vice versa)

Port 2078 (or 2077) is being blocked somewhere along the path — a corporate firewall, a hotel network, or an ISP that filters non-standard ports. Test from a different network to confirm, and if it's consistently blocked, ask your network admin to allow outbound traffic on that port.

"SSL required" or certificate warnings

Always connect using the HTTPS/2078 endpoint, not the unencrypted 2077 one — most current cPanel configurations reject or discourage the plain HTTP option anyway. If you get a certificate warning, make sure you're connecting to the exact domain the SSL certificate was issued for, not a raw IP address.

Security notes

  • Always create scoped Web Disk accounts for anyone other than yourself — never share your primary cPanel login for routine file access.
  • Remove Web Disk accounts you're not using anymore; an old account with a weak password is one more way into the server.
  • Stick to the SSL port (2078). The non-SSL option sends credentials in the clear.
  • If a Web Disk account only needs to read files (e.g. for a backup script pulling exports), set its permission to Read-Only.

Prevention: keep it tidy

Web Disk accounts don't show up in most people's mental model of "who has access to my site," which means they're easy to forget about. Do a quick audit alongside your FTP accounts every few months — same page in cPanel, same principle: delete what you don't use, scope what you keep.

Frequently asked questions

Is Web Disk the same as FTP?

No. FTP needs a separate client like FileZilla and transfers files in discrete upload/download actions. Web Disk uses WebDAV to mount your hosting account as a network drive your operating system treats like local storage, with no extra software needed on Windows, macOS, or most Linux desktops.

Which port should I use for Web Disk?

Use port 2078, the SSL-encrypted endpoint. Port 2077 is unencrypted and sends your login credentials in plain text, so avoid it unless you're on a fully trusted local network for testing.

Why does Windows refuse to connect even with the right password?

Windows blocks Basic Authentication over WebDAV by default unless the connection is over HTTPS, and even then it sometimes needs the WebClient BasicAuthLevel registry value set to 2 before it will accept the login. Restart the WebClient service after changing it.

Can I limit a Web Disk account to just one folder?

Yes. When you create the account in cPanel's Web Disk page, set the Directory field to the specific folder you want it scoped to. The account will only be able to see and edit that folder and anything below it.

Do I need Web Disk if I already use FTP or File Manager?

Not strictly, but it's worth having for editors or clients who need routine access to files without learning an FTP client. It's especially handy for anyone who just wants to drag and drop files the way they would on their own computer.

#cpanel #web-disk #webdav #network-drive #remote-access #file-manager

Keep reading

Chat with Support