Skip to content

Repository files navigation

🎮 EasyTeam Panel

Professional Minecraft Server Management Panel

Modern Web Panel — SPA Architecture — Dual Language (فارسی / English)

PHP SQLite SPA License


🇬🇧 English

📋 Table of Contents


📖 Overview

EasyTeam Panel is a professional, lightweight Minecraft server management panel built with PHP and SQLite. It features:

  • Single Page Application (SPA) architecture — no page refreshes, smooth transitions like Pterodactyl/PufferPanel
  • Dual language support — Persian (فارسی, RTL) and English (LTR)
  • Local-first design — runs entirely on your machine with no external dependencies
  • Cross-platform — works on Linux, Windows, and macOS
  • Sanctions-resistant — uses GitHub mirror for Iranian users

✨ Features

Feature Description
Server Management Create, start, stop, restart, and delete Minecraft servers
Real-time Console Live console output with command sending via AJAX polling
File Manager Browse, upload, edit, rename, delete server files
Version Installer Download & install Paper/Vanilla Minecraft versions automatically
User System Register, login, admin/user roles with permissions
Dual Language Full Persian (RTL) and English support with Vazir font
SPA Navigation No full page reloads — smooth transitions with history.pushState
Google reCAPTCHA Bot protection on login page
SVG Icon System 50+ SVG icons replacing all emojis for better performance
Installation Wizard Step-by-step guided setup
Security CSRF tokens, SQL injection protection, path traversal prevention
Java Auto-installer Automated JDK 17+ installation on Linux
Sanctions Support GitHub download mirror for users in Iran

💻 System Requirements

Requirement Details
PHP 8.0 or higher (8.1+ recommended)
Extensions sqlite3, pdo_sqlite, json, mbstring, curl, openssl
Storage At least 1GB free space (more for Minecraft servers)
Java JDK 17+ (only needed for running Minecraft servers, not the panel itself)
OS Linux, Windows 10/11, macOS

🚀 Quick Start

# Clone the repository
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel

# Start the panel (Linux/macOS)
php -S 0.0.0.0:8080 server.php

# Start the panel (Windows - PowerShell)
powershell -ExecutionPolicy Bypass -File server.ps1

# Or double-click install_windows.bat on Windows

Then open http://localhost:8080 in your browser and follow the installation wizard.


🐧 Linux Installation

Linux: Automatic Installation

# 1. Install PHP and required extensions (Debian/Ubuntu)
sudo apt update
sudo apt install -y php php-cli php-sqlite3 php-json php-mbstring php-curl php-xml php-intl

# CentOS/RHEL/Fedora
sudo dnf install -y php php-cli php-sqlite php-mbstring php-curl php-xml php-intl

# Alpine
sudo apk add php php-pdo_sqlite php-json php-mbstring php-curl php-openssl

# 2. Install Java (for Minecraft servers)
sudo apt install -y openjdk-17-jdk-headless   # Debian/Ubuntu
sudo dnf install -y java-17-openjdk-headless  # Fedora/RHEL

# 3. Clone and run
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel
php -S 0.0.0.0:8080 server.php

Linux: Manual Installation

# 1. Download
cd /var/www/html
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel

# 2. Set permissions
chmod -R 755 .
chmod -R 777 storage/

# 3. Verify PHP requirements
php -m | grep -E 'sqlite|json|mbstring|curl|openssl'

# 4. Start development server
php -S 0.0.0.0:8080 server.php

# 5. Open http://your-server-ip:8080 and follow installation wizard

Apache Setup

<VirtualHost *:80>
    ServerName panel.yourdomain.com
    DocumentRoot /var/www/html/easyteam-panel

    <Directory /var/www/html/easyteam-panel>
        Options -Indexes +FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/easyteam-error.log
    CustomLog ${APACHE_LOG_DIR}/easyteam-access.log combined
</VirtualHost>

Make sure .htaccess files are enabled: sudo a2enmod rewrite && sudo systemctl restart apache2

Nginx Setup

server {
    listen 80;
    server_name panel.yourdomain.com;
    root /var/www/html/easyteam-panel;
    index index.php;

    # Static files
    location ~* \.(css|js|svg|woff2|woff|png|jpg|ico)$ {
        expires 30d;
        add_header Cache-Control "public, immutable";
    }

    # PHP processing
    location ~ \.php$ {
        fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    # Block storage access
    location ~ /storage/ {
        deny all;
        return 403;
    }

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
}

Install as System Service

To run the panel as a background service on Linux:

# Create systemd service file
sudo tee /etc/systemd/system/easyteam-panel.service > /dev/null <<EOF
[Unit]
Description=EasyTeam Minecraft Panel
After=network.target

[Service]
Type=simple
User=www-data
WorkingDirectory=/var/www/html/easyteam-panel
ExecStart=/usr/bin/php -S 0.0.0.0:8080 server.php
Restart=always
RestartSec=5

[Install]
WantedBy=multi-user.target
EOF

# Enable and start
sudo systemctl daemon-reload
sudo systemctl enable easyteam-panel
sudo systemctl start easyteam-panel

# Check status
sudo systemctl status easyteam-panel

Using screen/tmux:

# Create detached session
screen -dmS panel php -S 0.0.0.0:8080 server.php

# Reattach
screen -r panel

🪟 Windows Installation

Prerequisites for Windows

Software Download Link Notes
PHP 8.0+ windows.php.net/download Download non-thread-safe ZIP, extract to C:\php
JDK 17+ adoptium.net Required only for Minecraft servers
Git git-scm.com Optional, for cloning repository

After installing PHP:

  1. Extract the ZIP to C:\php
  2. Add C:\php to your system PATH:
    • Open System PropertiesAdvancedEnvironment Variables
    • Edit Path → Add C:\php
  3. Enable required extensions in C:\php\php.ini:
    extension=sqlite3
    extension=pdo_sqlite
    extension=mbstring
    extension=curl
    extension=openssl
    extension=json
  4. Verify: Open Command Prompt and run php -v

Method 1: One-Click Batch Installer ⭐ (Recommended)

install_windows.bat — The easiest way to get started.

Just double-click the file! It will:

  1. ✅ Check if PHP is installed and in PATH
  2. ✅ Check if Java is available
  3. ✅ Create all required storage directories
  4. ✅ Start the panel on http://localhost:8080
  5. ✅ Open your browser automatically
  6. ✅ Wait for you to complete installation
:: Navigate to the panel folder and double-click, or run:
install_windows.bat

If you see "PHP not found":

  • Download PHP from windows.php.net
  • Extract to C:\php
  • Add C:\php to PATH
  • Restart Command Prompt and run install_windows.bat again

Changing the port: The batch installer uses port 8080 by default. To use a different port, edit the file:

  • Change localhost:8080 to your preferred port
  • Change php -S localhost:8080 server.php to your preferred port

Method 2: PowerShell Runner

server.ps1 — More control and better output formatting.

# Basic usage
powershell -ExecutionPolicy Bypass -File server.ps1

# Custom port
powershell -ExecutionPolicy Bypass -File server.ps1 -Port 9090

# Custom directory
powershell -ExecutionPolicy Bypass -File server.ps1 -Port 8080

# Run from within PowerShell
.\server.ps1 -Port 8080

PowerShell features:

  • Color-coded output (green for success, red for errors, yellow for warnings)
  • Structured parameter handling
  • Proper error handling with $ErrorActionPreference = "Stop"
  • Supports custom port via -Port parameter
  • Automatic storage directory creation

If you get "execution policy" error:

# Run PowerShell as Administrator and run:
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned
# Then run:
.\server.ps1

Method 3: Manual Setup

:: Step 1: Clone or download the panel
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel

:: Or download ZIP and extract

:: Step 2: Create storage directories
mkdir storage\database
mkdir storage\servers
mkdir storage\logs
mkdir storage\versions

:: Step 3: Start the panel
php -S localhost:8080 server.php

Then open http://localhost:8080 in your browser.


Run as Windows Service

Using NSSM (Non-Sucking Service Manager):

:: Download NSSM from https://nssm.cc/download
:: Extract to C:\nssm

:: Install the service
C:\nssm\win64\nssm.exe install EasyTeamPanel

:: Configure:
::   Application Path: C:\php\php.exe
::   Startup Directory: C:\path\to\easyteam-panel
::   Arguments: -S 0.0.0.0:8080 server.php

:: Start the service
C:\nssm\win64\nssm.exe start EasyTeamPanel

:: The panel will now run as a background service
:: It will auto-start on system boot

Using Task Scheduler (no third-party tools):

# Create a scheduled task
$action = New-ScheduledTaskAction -Execute "php.exe" `
    -Argument "-S 0.0.0.0:8080 server.php" `
    -WorkingDirectory "C:\path\to\easyteam-panel"

$trigger = New-ScheduledTaskTrigger -AtStartup
$principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -LogonType ServiceAccount

Register-ScheduledTask -TaskName "EasyTeamPanel" `
    -Action $action `
    -Trigger $trigger `
    -Principal $principal `
    -Description "EasyTeam Minecraft Server Panel"

Firewall Configuration

To allow connections from other devices on your network:

# Run PowerShell as Administrator
New-NetFirewallRule -DisplayName "EasyTeam Panel" `
    -Direction Inbound -Protocol TCP -LocalPort 8080 -Action Allow
:: Command Prompt (as Administrator)
netsh advfirewall firewall add rule name="EasyTeam Panel" dir=in action=allow protocol=TCP localport=8080

📖 Usage Guide

Installation Wizard

When you first open the panel, the Installation Wizard will guide you through 4 steps:

  1. System Check — Verify PHP, SQLite, JSON, MBString, cURL, and OpenSSL
  2. Database Setup — Initialize the SQLite database
  3. Admin Account — Create your admin username, email, and password
  4. Complete — Ready to use!

Note: Java check can be skipped during installation. Install Java later from the Settings page.

Creating Your First Server

  1. Log in with your admin account
  2. Click "Create Server" from Dashboard or Servers page
  3. Fill in the details:
    • Server Name: e.g., "Survival World"
    • Minecraft Version: 1.20.1 (default)
    • Server Type: Paper (recommended) or Vanilla
    • Port: 25565 (default Minecraft port)
    • RAM: 1024 MB minimum (adjust based on your system)
    • Max Players: 20
    • Game Mode: Survival/Creative/Adventure/Spectator
    • Difficulty: Peaceful/Easy/Normal/Hard
    • MOTD: Server description shown in server list
  4. Click "Create Server"
  5. On the Servers page, click "Start" to launch the server
  6. Wait a moment — the server is starting!

Console & File Management

Console:

  • View real-time server output
  • Send commands like /op player, /gamemode creative, /stop
  • Auto-scroll follows new output
  • Clear console to remove clutter

File Manager:

  • Browse server directory structure
  • Edit files like server.properties, ops.json, bukkit.yml
  • Upload new files (plugins, configurations)
  • Create new files and folders
  • Rename and delete files

Installing Minecraft Versions

  1. Go to "Version Installer" in the sidebar
  2. Browse available Minecraft versions (PaperMC API)
  3. Click Paper or Vanilla button to install a version
  4. Wait for the download to complete
  5. The installed version will now appear when creating servers

For Iranian users: The panel uses GitHub mirror for downloads. Go to SettingsDownload Mirror → select "GitHub" if not already selected.


⚙️ Configuration

config.php

The panel is configured via config.php (auto-generated during installation):

define('DB_PATH', __DIR__ . '/storage/database/panel.sqlite');
define('SITE_NAME', 'EasyTeam Panel');
define('SITE_URL', 'http://localhost:8080');
define('TIMEZONE', 'Asia/Tehran');
define('LANGUAGE', 'fa');              // 'fa' or 'en'
define('MINECRAFT_BASE_PATH', __DIR__ . '/storage/servers');
define('MINECRAFT_VERSIONS_PATH', __DIR__ . '/storage/versions');
define('MINECRAFT_MIN_RAM', 256);
define('MINECRAFT_MAX_RAM', 8192);
define('JAVA_PATH', 'java');
define('SESSION_NAME', 'EASYTEAM_PANEL');
define('SESSION_LIFETIME', 86400);     // 24 hours
define('PANEL_VERSION', '1.0.0');

Environment Variables (Optional)

These can override config.php settings at runtime:

Variable Description
JAVA_HOME Path to JDK installation (Windows auto-detection)
JRE_HOME Path to JRE installation (Windows auto-detection)

🔧 Troubleshooting

Linux Issues

Problem Solution
Port 8080 in use php -S 0.0.0.0:9090 server.php (use any port)
"SQLite not found" sudo apt install php-sqlite3 php-pdo (Ubuntu) or sudo dnf install php-sqlite (Fedora)
"Permission denied" sudo chmod -R 777 storage/
"Class 'ServerManager' not found" Check that config.php exists and includes are loading correctly
Server won't start Install Java: sudo apt install openjdk-17-jdk-headless
Blank page Check PHP errors: php -l index.php and check storage/logs/error.log
PHP version too old Add PPA: sudo add-apt-repository ppa:ondrej/php && sudo apt update && sudo apt install php8.1

Windows Issues

Problem Solution
"PHP is not recognized" Add PHP to PATH or run set PATH=%PATH%;C:\php before running
"Access denied" on port Run Command Prompt as Administrator
Firewall blocking See Firewall Configuration above
PHP extensions missing Edit C:\php\php.ini and uncomment extension=sqlite3, extension=curl, etc.
"VCRUNTIME140.dll not found" Install VC Redistributable
Console shows Chinese/garbled text chcp 65001 (UTF-8) — already included in install_windows.bat
PowerShell execution policy powershell -ExecutionPolicy Bypass -File server.ps1
Slow PHP on Windows Use non-thread-safe PHP version for better performance
Port 8080 already in use Edit install_windows.bat and change to another port (e.g., 9090)
Java not found Install JDK from adoptium.net and add to PATH

Common Issues

Problem Solution
Console shows no output Start the server first, then open console
Version download fails Go to Settings → change Download Mirror to "GitHub"
Server stuck on "Starting" Check Java installation and server log file
Session expired frequently Increase SESSION_LIFETIME in config.php
reCAPTCHA not working Replace test keys with real ones from google.com/recaptcha
CSS/JS not loading Clear browser cache or hard refresh (Ctrl+Shift+R)
Can't log in after install Reset database: delete storage/database/panel.sqlite and re-run installation

🌐 API Reference

The panel provides JSON API endpoints for AJAX interactions:

Endpoint Method Parameters Description
index.php?page=api&action=console_command POST server_id, command Send command to server
index.php?page=api&action=console_output GET server_id Get server console output
index.php?page=api&action=server_status GET server_id Get server status
index.php?page=api&action=install_java POST Auto-install JDK 17+
index.php?page=api&action=set_language GET lang (fa/en) Change panel language

📁 Project Structure

easyteam-panel/
├── index.php              # Main SPA Router
├── install.php            # Installation Wizard
├── server.php             # PHP Dev Server Router
├── install_windows.bat    # Windows One-Click Installer
├── server.ps1             # PowerShell Runner
├── config.php             # Panel Configuration
├── config.example.php     # Configuration Template
├── .htaccess              # Apache Rewrite Rules
├── includes/
│   ├── bootstrap.php      # App Initialization
│   ├── database.php       # SQLite PDO Wrapper
│   ├── auth.php           # Authentication System
│   ├── language.php       # Dual Language System
│   ├── functions.php      # Helper Functions
│   └── server_manager.php # Minecraft Server Process Manager
├── pages/
│   ├── dashboard.php      # Dashboard with Stats
│   ├── login.php          # Login (with reCAPTCHA)
│   ├── register.php       # User Registration
│   ├── servers.php        # Server List & Create
│   ├── server-detail.php  # Server Details & Controls
│   ├── console.php        # Real-time Console
│   ├── files.php          # File Manager
│   ├── users.php          # User Management (Admin)
│   ├── settings.php       # Panel Settings
│   ├── versions.php       # Minecraft Version Installer
│   └── api.php            # JSON API Endpoints
├── templates/
│   ├── header.php         # Sidebar + Topbar + SVG Sprite
│   └── footer.php         # Footer + Scripts
├── lang/
│   ├── fa.php             # Persian Translations
│   └── en.php             # English Translations
├── assets/
│   ├── css/style.css      # SPA-Optimized Stylesheet
│   ├── js/app.js          # SPA Navigation Engine
│   ├── icons/sprite.svg   # SVG Icon Sprite (50+ icons)
│   └── fonts/             # Local Vazir Font Files
└── storage/
    ├── database/          # SQLite Database
    ├── servers/           # Minecraft Server Directories
    ├── logs/              # Error Logs
    └── versions/          # Downloaded Minecraft JARs

🔒 Security

  • CSRF Protection — Token-based form validation
  • SQL Injection Prevention — PDO prepared statements throughout
  • Path Traversal Protectionrealpath() + basename() validation
  • Password Hashing — bcrypt with cost factor 12
  • Session Security — httpOnly cookies, SameSite=Lax
  • Input Validation — All user inputs sanitized before processing
  • File Upload Safety — Restricted to server directories
  • reCAPTCHA — Google reCAPTCHA v2 on login form
  • Storage Protection — HTTP rules block direct database access

📄 License

MIT License — Free to use, modify, and distribute.

Built with ❤️ for Minecraft server administrators worldwide.



🇮🇷 فارسی

پنل ایزی‌تیم — یک پنل مدیریت سرور ماینکرفت حرفه‌ای، سبک و سریع


📋 فهرست مطالب


📖 معرفی

پنل ایزی‌تیم یک پنل مدیریت سرور ماینکرفت تحت وب است که با PHP و SQLite ساخته شده. این پنل از معماری تک صفحه‌ای (SPA) استفاده می‌کند یعنی بدون رفرش شدن صفحه، بین بخش‌های مختلف جابه‌جا می‌شوید — درست مثل پنل‌های Pterodactyl و PufferPanel.

✨ امکانات

  • مدیریت کامل سرور: ساخت، شروع، توقف، راه‌اندازی مجدد و حذف سرور
  • کنسول بی‌درنگ: مشاهده خروجی و ارسال دستور به سرور بدون تاخیر
  • مدیریت فایل: مرور، آپلود، ویرایش، تغییر نام و حذف فایل‌ها
  • نصب نسخه: نصب خودکار نسخه‌های Paper و Vanilla ماینکرفت
  • سیستم کاربری: ثبت‌نام، ورود، سطوح دسترسی ادمین/کاربر
  • دو زبانه: فارسی (راست‌چین) و انگلیسی با فونت وزیر
  • SPA: جابه‌جایی بین صفحات بدون رفرش
  • امنیت: محافظت CSRF، تزریق SQL، مسیریابی
  • Google reCAPTCHA: امنیت در ورود
  • آیکون‌های SVG: بیش از ۵۰ آیکون برداری به جای ایموجی

💻 نیازمندی‌های سیستم

نیازمندی توضیحات
PHP نسخه ۸.۰ یا بالاتر
افزونه‌ها sqlite3, pdo_sqlite, json, mbstring, curl, openssl
Java JDK 17+ (فقط برای اجرای سرور ماینکرفت)
فضا حداقل ۱ گیگابایت فضای خالی

🐧 نصب روی لینوکس

نصب خودکار

# نصب PHP و افزونه‌ها (Ubuntu/Debian)
sudo apt update
sudo apt install -y php php-cli php-sqlite3 php-json php-mbstring php-curl php-xml

# نصب جاوا
sudo apt install -y openjdk-17-jdk-headless

# دانلود و اجرا
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel
php -S 0.0.0.0:8080 server.php

نصب دستی

cd /var/www/html
git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel
chmod -R 755 .
chmod -R 777 storage/
php -S 0.0.0.0:8080 server.php

اجرا به عنوان سرویس

sudo tee /etc/systemd/system/easyteam-panel.service > /dev/null <<EOF
[Unit]
Description=EasyTeam Minecraft Panel
After=network.target

[Service]
Type=simple
User=www-data
WorkingDirectory=/var/www/html/easyteam-panel
ExecStart=/usr/bin/php -S 0.0.0.0:8080 server.php
Restart=always

[Install]
WantedBy=multi-user.target
EOF

sudo systemctl enable --now easyteam-panel

🪟 نصب روی ویندوز

روش ۱ - نصب با کلیک (پیشنهادی) ⭐

فایل install_windows.bat را دوبار کلیک کنید. خودکار:

  1. PHP و Java را بررسی می‌کند
  2. پوشه‌های مورد نیاز را می‌سازد
  3. پنل را روی http://localhost:8080 اجرا می‌کند
  4. مرورگر را باز می‌کند

اگر PHP نصب نیست: از windows.php.net دانلود کنید، به C:\php استخراج کنید و به PATH اضافه کنید.

روش ۲ - PowerShell

powershell -ExecutionPolicy Bypass -File server.ps1
:: یا با پورت دلخواه:
powershell -ExecutionPolicy Bypass -File server.ps1 -Port 9090

روش ۳ - دستی

git clone https://github.com/yourusername/easyteam-panel.git
cd easyteam-panel
mkdir storage\database storage\servers storage\logs storage\versions
php -S localhost:8080 server.php

نصب به عنوان سرویس ویندوز

با NSSM:

nssm.exe install EasyTeamPanel
# مسیر php: C:\php\php.exe
# آرگومان: -S 0.0.0.0:8080 server.php
# دایرکتوری: C:\path\to\easyteam-panel
nssm.exe start EasyTeamPanel

تنظیم فایروال

# PowerShell as Administrator
New-NetFirewallRule -DisplayName "EasyTeam Panel" -Direction Inbound -Protocol TCP -LocalPort 8080 -Action Allow

📖 راهنمای استفاده

ویزارد نصب

بار اول که پنل را باز می‌کنید، ویزارد نصب شما را راهنمایی می‌کند:

  1. بررسی سیستم — PHP، SQLite، JSON، MBString و... بررسی می‌شود
  2. دیتابیس — دیتابیس SQLite ساخته می‌شود
  3. حساب ادمین — نام کاربری، ایمیل و رمز عبور ادمین را تعریف کنید
  4. پایان — پنل آماده استفاده است!

ساخت اولین سرور

  1. وارد پنل شوید
  2. روی "ایجاد سرور" کلیک کنید
  3. اطلاعات را وارد کنید:
    • نام: مثلاً "Survival 1.20.1"
    • نسخه: 1.20.1 (پیش‌فرض)
    • نوع: Paper (پیشنهادی) یا Vanilla
    • پورت: 25565
    • RAM: حداقل ۱۰۲۴ مگابایت
    • حداکثر بازیکنان: ۲۰
  4. روی "ایجاد سرور" کلیک کنید
  5. روی "شروع" کلیک کنید تا سرور اجرا شود
  6. از کنسول برای ارسال دستور استفاده کنید

🔧 عیب‌یابی

مشکل راه حل
پورت 8080 اشغال است از پورت دیگر استفاده کنید: php -S 0.0.0.0:9090 server.php
SQLite کار نمی‌کند افزونه‌های php-sqlite3 و php-pdo را نصب کنید
خطای دسترسی sudo chmod -R 777 storage/ در لینوکس
PHP پیدا نمی‌شود (ویندوز) PHP را به PATH اضافه کنید
کنسول خالی است ابتدا سرور را روشن کنید، سپس کنسول را باز کنید
دانلود نسخه انجام نمی‌شود به تنظیمات بروید و آینه را به "گیت‌هاب" تغییر دهید
جاوا نصب نیست از صفحه تنظیمات روی دکمه "نصب JDK 17" کلیک کنید
VCRUNTIME140.dll not found VC Redistributable را نصب کنید

🇮🇷 نکات کاربران ایرانی

رفع تحریم و فیلتر بودن سایت‌ها:

پنل ایزی‌تیم به طور کامل برای کاربران ایرانی بهینه شده است:

  1. آینه گیت‌هاب: تمامی دانلودها از طریق گیت‌هاب انجام می‌شود که در ایران فیلتر نیست
  2. عدم نیاز به فیلترشکن: پنل بدون فیلترشکن کار می‌کند
  3. تنظیمات آینه: به بخش تنظیمات بروید و "گیت‌هاب" را انتخاب کنید
  4. دانلود نسخه‌ها: تمام نسخه‌های ماینکرفت از طریق گیت‌هاب قابل دانلود هستند
# دانلود مستقیم از گیت‌هاب (بدون تحریم)
git clone https://github.com/yourusername/easyteam-panel.git

# اگر git در دسترس نیست
wget https://github.com/yourusername/easyteam-panel/archive/refs/heads/main.zip
unzip main.zip
cd easyteam-panel-main

About

🎮 Minecraft server management panel in PHP with modern SPA dashboard.

Topics

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages