File Manager¶
The integrated file manager allows you to manage files and directories directly in the browser without an FTP client.
Overview¶
The file manager displays the contents of the selected subscription's home directory in a table:
| Column | Description |
|---|---|
| Name | File or directory name |
| Type | File or directory (with icon) |
| Size | File size |
| Permissions | Unix permissions (e.g. 755) |
| Modified | Last modification date |
Navigation¶
- Click on a folder to display its contents
- Use the breadcrumb navigation at the top to return to parent directories
- The Back button navigates one level up
Upload Files¶
- Click Upload
- Select one or more files
- The files are uploaded to the current directory
Upload Limit
The maximum file size for uploads via the file manager is configured server-side. For larger files, use FTP/SFTP.
Download Files¶
- Select a file in the table
- Click Download
- The file is downloaded through the browser
Edit Files¶
The file manager includes an integrated text editor:
- Select a text file (e.g.
.php,.html,.css,.js,.txt,.conf) - Click Edit
- The editor opens with syntax highlighting
- Make your changes
- Click Save
Supported file types:
- PHP, HTML, CSS, JavaScript
- Configuration files (.conf, .ini, .env)
- Text files (.txt, .md, .log)
- XML, JSON, YAML
Binary Files
Binary files (images, archives, etc.) cannot be opened in the text editor. Use download and upload instead.
Create File¶
- Click New File
- Enter the file name
- Click Create
- The empty file is created and can be edited immediately
Create Directory¶
- Click New Folder
- Enter the directory name
- Click Create
Delete Files and Directories¶
- Select the entries to delete
- Click Delete
- Confirm the deletion
Irreversible
Deleted files cannot be recovered. Create a backup beforehand.
Change Permissions¶
- Select a file or directory
- Click Permissions
- Set the Unix permissions (octal format, e.g.
755) - Optional: Apply recursively to subdirectories
- Click Save
Common Permissions¶
| Value | Meaning | Usage |
|---|---|---|
| 755 | rwxr-xr-x | Directories, executable files |
| 644 | rw-r--r-- | Standard files |
| 600 | rw------- | Sensitive configurations |
| 777 | rwxrwxrwx | Not recommended (security risk) |
chmod 777
NEVER set files to 777. This poses a significant security risk. Use specific permissions instead.
Extract Archives¶
- Select an archive file (
.zip,.tar.gz,.tar.bz2,.tar) - Click Extract
- The archive is extracted in the current directory
Website Migration
To migrate a website, upload the archive via FTP and extract it using the file manager. This is faster than uploading many individual files via FTP.
Rename Files¶
- Select the file or directory
- Click Rename
- Enter the new name
- Confirm the change
Move / Copy Files¶
- Select the entries to move
- Click Move or Copy
- Select the target directory
- Confirm the action