Opening the File Manager
- Log in to your panel
- Navigate to your server from the dashboard
- Click on the File Manager tab in the server view
- The file manager will open showing your server's root directory
File Manager Interface
The file manager typically displays:
- Directory Tree: Shows folder structure on the left
- File List: Shows files and folders in the current directory
- Toolbar: Actions like upload, create folder, refresh
- File Actions: Right-click or use buttons to manage files
Basic Operations
Navigating Folders
- Click folders to enter them
- Use breadcrumbs at the top to navigate back
- Click "Up" or ".." to go to the parent directory
Viewing Files
- Click a file to view its contents (for text files)
- File icons indicate file types
- File sizes are shown next to each file
Creating Folders
- Click the New Folder button
- Enter a folder name
- Press Enter or click Create
- The folder will appear in the current directory
Uploading Files
- Click the Upload button
- Select files from your computer
- Wait for upload to complete
- Files will appear in the current directory
Note: Large files may take time to upload. Be patient and don't close the browser.
Downloading Files
- Right-click on a file
- Select Download
- Or click the file and use the download button
- The file will download to your computer
Editing Files
- Click on a text file (
.txt,.properties,.yml,.json, etc.) - The file editor will open
- Make your changes
- Click Save to apply changes
- Some changes may require a server restart
Deleting Files
- Select the file(s) or folder(s) you want to delete
- Click the Delete button or right-click and select Delete
- Confirm the deletion
- Warning: Deleted files cannot be recovered easily!
Important Server Directories
Root Directory
The main server folder containing your server's files. The exact contents depend on your server type and game:
- Configuration files (varies by game/server type)
- Server executables
logs/- Server logs- Game-specific data folders
- Mod/plugin folders (if applicable)
Common Folders
The folders you'll see depend on your server type:
logs/: Server log filesconfig/: Configuration files- Game data folders: Varies by game (worlds, saves, etc.)
- Mod/plugin folders: If your server supports mods or plugins
File Permissions
Some files may have restricted permissions:
- Read-only files: Can be viewed but not edited
- System files: May be protected from deletion
- Active files: Files in use by the server may not be editable
If you need to edit a protected file, you may need to:
- Stop the server first
- Make your changes
- Start the server again
Using the Code Editor
The built-in code editor supports:
- Syntax Highlighting: Color-coded code for easier reading
- Line Numbers: Helps locate specific lines
- Search: Find and replace text
- Multiple Tabs: Edit multiple files at once
Editor Tips
- Save Frequently: Don't lose your work
- Check Syntax: Invalid syntax can break your server
- Backup First: Always backup before major edits
- Test Changes: Test on a development server if possible
File Types You'll Encounter
Configuration Files
.properties: Server properties (Java format).ymlor.yaml: YAML configuration (plugins).json: JSON data files.conf: General configuration files
Game Data Files
- Game-specific formats: Each game has its own data file formats
.dat: Common data file format- Save files: Game-specific save file formats
Log Files
.log: Server log files.txt: Text logs
Executables
.jar: Java executable files (for Java-based servers).exe: Windows executables.sh: Shell scripts (Linux)- Game-specific executables: Varies by server type
Best Practices
Before Making Changes
- Backup Important Files: Download copies before editing
- Stop the Server: For major changes, stop the server first
- Read Documentation: Understand what you're changing
- Test on Development: Use a test server when possible
File Management
- Organize Files: Keep files in appropriate folders
- Name Clearly: Use descriptive file and folder names
- Remove Unused Files: Clean up old backups and logs regularly
- Document Changes: Note what files you've modified
Security
- Protect Sensitive Files: Don't share configuration files publicly
- Check Permissions: Ensure files have correct permissions
- Verify Downloads: Only download from trusted sources
- Backup Regularly: Maintain regular backups
Troubleshooting
File Manager Won't Load
- Refresh the page
- Clear browser cache
- Try a different browser
- Check your internet connection
- Contact support if the issue persists
Can't Edit a File
- Check if the server is running (some files can't be edited while running)
- Verify file permissions
- Try stopping the server first
- Check if the file is locked by another process
Upload Fails
- Check file size limits
- Verify file format is allowed
- Check available disk space
- Try uploading in smaller batches
- Use FTP for very large files
Changes Not Saving
- Ensure you clicked Save
- Check for syntax errors
- Verify file permissions
- Try refreshing the file manager
- Restart the server if needed
Alternative: Using SFTP
For advanced users or large file transfers, the panel supports SFTP:
- Get SFTP credentials from your panel (usually same as panel login)
- Use an SFTP client like FileZilla, WinSCP, or Cyberduck
- Connect using your panel hostname, username, and password
- Navigate to your server's directory
- Transfer files as needed
SFTP is often faster for:
- Large file uploads
- Bulk file operations
- Automated backups
- Using external tools
Note: SFTP credentials are typically the same as your panel login credentials.