File manager & SFTP

Two ways to manage your server files: the in-panel file manager (fast for everyday edits) and SFTP (the right tool for large uploads, mass changes and modpack imports).

Game Panel Last updated May 19, 2026 ~7 min read

Opening the file manager

From your server's dashboard, click Files in the left rail. You'll land in the root directory — this is your server's /, where you'll find server.properties, world/, plugins/, logs/ and so on.

Everyday file tasks

The file manager covers everything you'd do over SFTP, but faster for one-off changes:

Web upload limits

The web file manager caps single-file uploads at 100 MB. For anything larger — full modpacks, big worlds, jar collections — use SFTP instead.

Editing config files in the browser

Click any text file (.yml, .toml, .properties, .json, .cfg) and you'll get a full-screen editor with:

server.properties
motd=A Pulsar-powered Minecraft Server
difficulty=normal
max-players=40
view-distance=10
simulation-distance=8
spawn-protection=0
enable-command-block=true
white-list=false

When to use SFTP instead

SFTP (Secure FTP) connects to your server over an encrypted channel from a desktop app. Reach for it when you need to:

Finding your SFTP credentials

In your server dashboard, scroll down or open the Settings tab. The SFTP block shows everything you need:

sftp
Host:     sftp.pulsarservers.com
Port:     2022
Username: yourname.a1b2c3
Password: (your Game Panel password)
Use the panel password

Your SFTP password is the same as your Game Panel password — not your billing password. The username has a suffix like .a1b2c3 which identifies your specific server.

Connecting with FileZilla

FileZilla is free, cross-platform and the most popular client. Download it from filezilla-project.org, then:

  1. Open File → Site Manager → New Site.
  2. Set the protocol to SFTP – SSH File Transfer Protocol.
  3. Fill in Host, Port, Username from your panel.
  4. Logon Type: Ask for password (or Normal if you want it saved).
  5. Click Connect — accept the host key on first connection.

Drag files from the left pane (your computer) to the right pane (your server). That's it.

FileZilla speed tips

Editing with VS Code

For long config-editing sessions, VS Code with the SFTP extension beats every other workflow:

  1. Install the extension.
  2. Open Command Palette (Ctrl+Shift+P) → SFTP: Config.
  3. Fill in the snippet that opens.
sftp.json
{
  "name": "Pulsar — Survival Server",
  "host": "sftp.pulsarservers.com",
  "port": 2022,
  "username": "yourname.a1b2c3",
  "password": "your-panel-password",
  "protocol": "sftp",
  "remotePath": "/",
  "uploadOnSave": true
}

With uploadOnSave: true, every save in VS Code pushes the file to the server instantly. Perfect for iterating on plugin configs.

File permissions

You generally don't need to touch permissions — PulsarServers sets them correctly for every file by default. The exceptions:

Stop the server before big writes

Editing world/, level.dat or modpack jars while the server is running can cause corruption. Always stop the server, make your changes, then start again.