File Manager¶
The web-based file manager allows you to manage files and directories directly in the browser — without an FTP client. You can upload, download, edit, rename, move files and set permissions.
Overview¶
The file manager opens in the root directory of your webspace and shows:
| Column | Description |
|---|---|
| Name | File or directory name |
| Size | File size (directories show the number of entries) |
| Permissions | Unix permissions (e.g. 755, 644) |
| Modified | Date of last modification |
Navigation¶
- Click on a folder to open it
- The breadcrumb navigation at the top shows the current path
- Click on a path segment in the breadcrumb bar to navigate back to it
Upload Files¶
- Navigate to the desired target directory
- Click Upload
- Select one or more files
- The upload starts automatically
Upload Limit
The maximum upload size is limited by your hosting package and PHP settings (upload_max_filesize, post_max_size). For large files, using FTP is recommended.
Download Files¶
- Click the download icon next to the desired file
- The file is automatically downloaded in the browser
Edit Files¶
The integrated text editor allows direct editing of text files (PHP, HTML, CSS, JS, TXT, etc.).
- Click the edit icon next to the file
- The editor opens with the file contents
- Make your changes
- Click Save
Syntax Highlighting
The editor provides syntax highlighting for common programming languages and configuration files.
Create New Directory¶
- Click New Folder
- Enter the directory name
- Click Create
Create New File¶
- Click New File
- Enter the filename (including extension, e.g.
index.html) - Click Create
- The file is created as an empty file — open it to edit
Rename¶
- Click the rename icon next to the file or directory
- Enter the new name
- Confirm the change
Move and Copy¶
- Select the files/directories
- Click Move or Copy
- Navigate to the target directory
- Confirm the action
Delete¶
- Click the delete icon next to the file or directory
- Confirm the deletion in the dialog
Irreversible
Deleted files cannot be recovered unless a backup was created. Check before deleting whether you still need the file.
Set Permissions (chmod)¶
You can adjust the Unix permissions of files and directories.
- Click the permissions icon next to the file or directory
- Set the desired permissions:
Recommended Permissions¶
| File Type | Permission | Description |
|---|---|---|
| Directories | 755 |
Owner: Read/Write/Execute, Others: Read/Execute |
| PHP/HTML Files | 644 |
Owner: Read/Write, Others: Read Only |
| Configuration Files | 640 |
Owner: Read/Write, Group: Read Only, Others: No Access |
| Upload Directories | 755 |
Owner: Read/Write/Execute, Others: Read/Execute |
- Click Save
Permissions and Security
Never set permissions to 777. This allows every user on the system full access to the file. Use the recommended values above instead.
Extract ZIP Archives¶
- Navigate to the directory where the ZIP file is located
- Click the extract icon next to the ZIP file
- Select the target directory (default: current directory)
- Click Extract
Large Uploads
For uploading many files (e.g. a CMS installation package), it is more efficient to upload a ZIP file and then extract it on the server.
Disk Space Display¶
The file manager shows the used disk space relative to your disk quota in the status bar. This helps you keep track of your storage consumption.
| Display | Description |
|---|---|
| Used | Currently used disk space |
| Available | Remaining disk space |
| Quota | Maximum disk space according to your hosting package |