Your Website’s Command Center
The FREAKHOSTING Web Hosting Control Panel at web.freakhosting.com includes a powerful, built-in File Manager that lets you manage all of your website files directly from your browser. No FTP clients, no extra software — just open your browser and go. Want to upload your company logo? Edit a typo on your homepage? Change who can access a config file? The File Manager handles it all.Difficulty
Time
Accessing the File Manager
There are two quick ways to open the File Manager from within your hosting control panel:Log In to the Control Panel
Open the File Manager
- From the navigation bar: Click the Files tab in the top navigation menu.
- From the dashboard: Click the File manager shortcut displayed on your dashboard overview.
Interface Overview
The File Manager uses a clean two-panel layout. Think of it like the file explorer on your computer — folders on the left, contents on the right.Left Panel — Directory Tree
The left side displays your directory tree. At the top you will see a home icon representing your account root, with folders nested below it:- public_html — Your website’s web root (more on this below)
- .mysql_backup_s3 — Automated MySQL backup storage
Right Panel — File and Folder Listing
The right side shows the contents of the currently selected folder in a table with four columns:| Column | Description | Example |
|---|---|---|
| Name | The file or folder name | index.html, public_html |
| Permissions | The CHMOD permission value | 755, 644, 600 |
| Size | The file size on disk | 306 b, 4.2 KB |
| Last Modified | When the file was last changed | Mar 15, 2026 2:30 PM |
| Name | Permissions | Size | Last Modified |
|---|---|---|---|
| .mysql_backup_s3 | 755 | — | folder |
| public_html | 750 | — | folder |
| .my.cnf | 600 | 306 b | file |
Top Bar — Tools and Navigation
At the top of the File Manager you will find:- Home icon + domain name — Shows your current location; click the home icon to jump back to root.
- Refresh button — Reload the current directory (handy after uploading files via FTP).
- New button — Create a new file or folder.
- Upload button — Upload files from your computer.
View Options
Next to the toolbar you will find view toggle icons that let you switch between:- List view — A detailed table layout showing all columns (the default). Best for managing files.
- Grid view — Larger icons for each file and folder. Great for quickly scanning through images or assets.
Creating Files and Folders
Need a new page for your site? A folder to organize your images? You can create both right from the File Manager.Navigate to the Desired Location
Click the New Button
Enter a Name
- New file:
contact.html,style.css,config.php - New folder:
images,assets,downloads
Uploading Files
Want to upload your website’s logo, a new HTML page, or an entire theme package? Here is how.Navigate to the Target Folder
public_html/images.Select Your Files
File and Folder Actions (Context Menu)
Every file and folder has a full set of actions. To access them, either right-click on the item or click the three-dot icon on its row. Here is every action in the context menu and exactly when you would use each one:Edit
Opens the file in a built-in code editor right in your browser with syntax highlighting. Perfect for quick fixes. When to use it: You spotted a typo on your homepage — right-clickindex.html, hit Edit, fix the text, save. Done in 30 seconds.
.htaccess, etc.). You cannot open images or archives in the editor.Download
Saves a copy of the file to your local computer. When to use it: You want a local backup of your.htaccess before making changes, or you need to grab a log file to send to support.
Get Info
Shows detailed metadata — full file path, exact size, permissions, and modification date. When to use it: You need to check a file’s exact permissions or confirm when it was last modified.Cut
Marks the file for moving. Navigate to the destination folder and paste to complete the move. When to use it: You accidentally uploadedlogo.png to public_html but it belongs in public_html/images. Cut it, navigate to the images folder, paste.
Copy
Marks the file for copying. Navigate to the destination and paste to create a duplicate. When to use it: You want to create a variation of an existing page — copyabout.html, paste it, then rename the copy to about-v2.html and edit it.
Rename
Lets you change the name of a file or folder. When to use it: You createdtset.html instead of test.html. Quick rename fixes it.
Compress
Creates a.zip archive from the selected file or folder.
When to use it: You want to back up your entire website. Here is a practical example:
- Right-click the public_html folder.
- Select Compress.
- The system creates a
.ziparchive (e.g.,public_html.zip). - Right-click the new
.zipfile and select Download. - You now have a full backup of your website on your local computer.
Uncompress
Extracts the contents of an archive (.zip, .tar.gz, etc.) into the current directory.
When to use it: You downloaded a WordPress theme as a .zip, uploaded it to public_html/wp-content/themes/, and now you need to extract it. Right-click the .zip, select Uncompress, and the theme folder appears ready to use.
.zip, .tar.gz, or similar compressed file.Permissions (CHMOD)
Opens a dialog to set the file permissions using the CHMOD system. This controls who can read, write, and execute a file. Think of permissions as a three-digit lock code. Each digit controls access for a different group of people:| Digit Position | Controls | Who? |
|---|---|---|
| First digit | Owner | You (the account holder) |
| Second digit | Group | Other users in your hosting group |
| Third digit | Others | Everyone else (website visitors) |
| Value | Meaning |
|---|---|
| 4 | Read (view the file) |
| 2 | Write (modify the file) |
| 1 | Execute (run the file as a program) |
| 0 | No access |
| Permission | Breakdown | Typical Use |
|---|---|---|
| 644 | Owner: read+write / Group: read / Others: read | Standard web files (HTML, CSS, PHP, images) |
| 755 | Owner: read+write+execute / Group: read+execute / Others: read+execute | Folders and executable scripts |
| 750 | Owner: read+write+execute / Group: read+execute / Others: none | Folders with restricted public access |
| 600 | Owner: read+write / Group: none / Others: none | Sensitive config files (like .my.cnf) |
public_html folder has permission 750. That means you (the owner) have full access, your hosting group can read and browse it, but random outsiders on the server cannot peek inside. Your web server is configured to serve files from it, so your website visitors still see your pages normally through the browser.
Delete
Permanently removes the selected file or folder. This action is shown in red in the context menu as a warning — there is no recycle bin here. When to use it: You are cleaning up old backups or removing files you no longer need. Always make sure you have a backup before deleting anything important.Understanding the Directory Structure
Think of your hosting account like a house. Each room has a purpose, and putting things in the right room keeps everything working.public_html — Your Website's Front Door
public_html — Your Website's Front Door
public_html/logo.png, your visitors can see it at https://yourdomain.com/logo.png. A file at public_html/about/team.html becomes https://yourdomain.com/about/team.html.All your HTML pages, CSS stylesheets, JavaScript files, images, and other web assets belong inside public_html or its subfolders.Quick test: Upload any file to public_html, then type https://yourdomain.com/filename in your browser. If you can see it, everything is working..mysql_backup_s3 — Database Backups
.mysql_backup_s3 — Database Backups
.my.cnf — MySQL Configuration
.my.cnf — MySQL Configuration
Hidden Files and Folders (Dot Files)
Hidden Files and Folders (Dot Files)
Backing Up Your Website (Step by Step)
Here is a complete walkthrough for creating a downloadable backup of your entire website:Go to Your Root Directory
Compress public_html
Download the Archive
.zip file appears in the listing, right-click it and select Download. Save it somewhere safe on your computer.Best Practices
Keep Regular Backups
Use public_html for Web Files
Understand Permissions
Use Meaningful Names
company-logo.png is much better than IMG_20260315_001.png when you are hunting for files six months later.Can I edit PHP files in the File Manager?
Can I edit PHP files in the File Manager?
What is the maximum file upload size?
What is the maximum file upload size?
Can I undo a file deletion?
Can I undo a file deletion?
Why is my website showing a blank page or error?
Why is my website showing a blank page or error?
- Missing
index.htmlorindex.phpin yourpublic_htmlfolder. - Wrong file permissions — try setting files to 644 and folders to 755.
- Syntax error in
.htaccess— if you recently edited this file, revert your changes.
How do I show hidden files in the File Manager?
How do I show hidden files in the File Manager?
I uploaded files but my website still shows the old version?
I uploaded files but my website still shows the old version?
- Hard refresh your browser — press
Ctrl + Shift + R(orCmd + Shift + Ron Mac). - Clear your browser cache — cached files can persist for hours.
- Click the refresh button in the File Manager to confirm the files actually uploaded.
- Check the file path — make sure you uploaded to
public_htmland not the account root by accident.
Need Extra Help?
If you encounter any issues, our support team is ready to assist:- Live Chat: Quick assistance via our website.
- Support Ticket: Open a Ticket
- Discord: Join our Community
- Email: support@freakhosting.com