Skip to Content
Reizor PanelFile Management

File Management

Master the file manager to efficiently manage your server files.

Overview

The file manager provides a web-based interface to browse, edit, upload, and manage all your server files without needing FTP software.

File Browser

  • Click folders to open them
  • Use breadcrumb navigation at top

Quick Actions

Click the ellipses (…) next to a file or folder to show the following options:

  • Rename
  • Move
  • Permissions
  • Copy (Files only)
  • Archive
  • Download (Files only)
  • Delete

Editing Files

In-Browser Editor

Features:

  • Syntax highlighting for common formats
  • Line numbers
  • Search and replace (Ctrl + F)
  • Auto-save drafts
  • Multiple file tabs

Editing Process

  1. Navigate to file
  2. Click file name to open
  3. Make changes in editor
  4. Click Save Content button
  5. Restart server if needed

Uploading Files

Web Upload

For files under 1GB:

  1. Navigate to target folder
  2. Click Upload button
  3. Drag files or click to browse
  4. Wait for upload to complete
  5. Refresh if files don’t appear

Large Files & Uploading Multiple Files

For files over 1GB, or if you’re trying to upload an entire folder, use SFTP:

  • Get credentials from Settings tab
  • Use FileZilla, WinSCP, or any other SFTP client
  • Connect and transfer files

Creating Files & Folders

New File

  1. Navigate to desired location
  2. Click New File button
  3. Enter filename with extension
  4. Click create
  5. Edit in browser

New Folder

  1. Click New Folder
  2. Enter folder name
  3. Click create

File Operations

Copy Files

  1. Click the ellipses (…) next to the file
  2. Select Copy
  3. This will create a file called file copy.txt
  4. Click the ellipses (…) next to the copied file
  5. Select Move
  6. Navigate to destination
  7. Click Move

Move Files

  1. Click the ellipses (…) next to the file
  2. Select Move
  3. Navigate to destination
  4. Click Move

Delete Files

⚠️ Warning: Deletion is permanent!

We do plan to add a Recycle Bin feature in the future, but for now, deletion is permanent.

  1. Click the ellipses (…) next to the file/folder
  2. Select Delete
  3. Confirm deletion

Working with Archives (.zip, .tar.gz, .tar, .7z, .rar, .gz, .bz2, .xz)

Extract Archives

Upload and extract .zip, .tar.gz, .tar, .7z, .rar, .gz, .bz2, .xz:

  1. Upload archive file
  2. Click the ellipses (…) next to the archive
  3. Select Unarchive
  4. Wait for extraction
  5. Delete archive if no longer needed

Create Archive

Compress files for download:

  1. Select the checkboxes to the left of the files/folders you want to archive
  2. Select Archive from the menu that appears at the bottom of the viewport
  3. Wait for compression
  4. A file called archive2025-01-01T000000-0400.tar.gz will be created in same directory as the files/folders you archived. (The date and time is the date and time of the archive creation)

Permissions

It is very rare that you will need to change permissions, but if you do, you can do so by following the steps below.

Understanding Permissions

Unix permissions format: rwxrwxrwx

  • r = read (4)
  • w = write (2)
  • x = execute (1)

Common values:

  • 644 - Read/write for owner, read for others
  • 755 - Full for owner, read/execute for others
  • 777 - Full permissions (use carefully)

Changing Permissions

  1. Click the ellipses (…) next to the file/folder
  2. Select Permissions
  3. Enter the numeric value you want to set the permissions to
  4. Click Update

Common File Locations

Minecraft Servers

/ ├── backups/ # Backup files ├── logs/ # Server logs ├── mods/ # Mod files (.jar) ├── plugins/ # Plugin files (.jar, for servers running Bukkit/Spigot/Paper/etc. servers) ├── config/ # Configuration files ├── world/ # Main world data ├── banned-players.json # Banned players ├── banned-ips.json # Banned IPs ├── ops.json # Operator permissions ├── server-icon.png # Server icon ├── server.properties # Server settings └── whitelist.json # Whitelist players

Best Practices

Before Editing

  1. Create backup first
  2. Copy original file as .bak
  3. Test changes gradually

File Organization

  • Keep mods organized in folders
  • Remove unused files regularly
  • Name backups clearly
  • Document custom configurations

Safety

  • Never edit while server is running (configs). This is mainly because sometimes on server shutdown the server will save the configuration it had loaded while it was running, and your changes may be overwritten.
  • Keep backups of working configs. This is important because if you make a mistake, you can restore to the working config.

Troubleshooting

Can’t Edit File

Possible causes:

  • File too large for web editor

Solutions:

  • Use SFTP for large files

Upload Failed

Common issues:

  • File too large (use SFTP)

Changes Not Applied

  • Ensure you clicked Save
  • Restart server to apply
  • Review server logs

Tips & Tricks

  1. Bookmark important folders - Browser bookmarks
  2. Multiple tabs - Edit multiple files
  3. Archive downloads - Download folders as zip

Next Steps

Last updated on