Fix HTML entity formatting in FAQ - replace entities with actual HTML tags

Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-08 21:28:30 +00:00
parent 1503f6840f
commit eeb9543dec

View file

@ -191,17 +191,17 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The Game Monitor is your main control center for managing your game server. From here you can: The Game Monitor is your main control center for managing your game server. From here you can:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Server Status:&lt;/strong&gt; View real-time information about your server including player count, map, and server status <strong>Server Status:</strong> View real-time information about your server including player count, map, and server status
&lt;br&gt; <br />
&lt;strong&gt;Start/Stop/Restart:&lt;/strong&gt; Control your server's power state with dedicated buttons <strong>Start/Stop/Restart:</strong> Control your server's power state with dedicated buttons
&lt;br&gt; <br />
&lt;strong&gt;Update Server:&lt;/strong&gt; Keep your game server files up to date with automatic or manual updates <strong>Update Server:</strong> Keep your game server files up to date with automatic or manual updates
&lt;br&gt; <br />
&lt;strong&gt;View Logs:&lt;/strong&gt; Monitor server logs to troubleshoot issues or track player activity <strong>View Logs:</strong> Monitor server logs to troubleshoot issues or track player activity
&lt;br&gt; <br />
&lt;strong&gt;RCON Console:&lt;/strong&gt; Send commands directly to your server if supported by the game <strong>RCON Console:</strong> Send commands directly to your server if supported by the game
&lt;br&gt;&lt;br&gt; <br /><br />
The monitor refreshes automatically to give you up-to-date information about your server's performance and status. The monitor refreshes automatically to give you up-to-date information about your server's performance and status.
</content:encoded> </content:encoded>
</item> </item>
@ -212,15 +212,15 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
From the Game Monitor page: From the Game Monitor page:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Start:&lt;/strong&gt; Click the "Start" button to launch your server. Wait for the status to show as "Online" <strong>Start:</strong> Click the "Start" button to launch your server. Wait for the status to show as "Online"
&lt;br&gt; <br />
&lt;strong&gt;Stop:&lt;/strong&gt; Click the "Stop" button to safely shut down your server <strong>Stop:</strong> Click the "Stop" button to safely shut down your server
&lt;br&gt; <br />
&lt;strong&gt;Restart:&lt;/strong&gt; Click "Restart" to stop and start your server in one action <strong>Restart:</strong> Click "Restart" to stop and start your server in one action
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Important:&lt;/strong&gt; Always use these controls rather than killing processes directly. This ensures proper shutdown and prevents data corruption. <strong>Important:</strong> Always use these controls rather than killing processes directly. This ensures proper shutdown and prevents data corruption.
&lt;br&gt;&lt;br&gt; <br /><br />
If your server fails to start, check the server logs for error messages that can help identify configuration issues. If your server fails to start, check the server logs for error messages that can help identify configuration issues.
</content:encoded> </content:encoded>
</item> </item>
@ -231,16 +231,16 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The Scheduler is a cron-like system that allows you to automate server tasks at specific times or intervals. The Scheduler is a cron-like system that allows you to automate server tasks at specific times or intervals.
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;What is Cron?&lt;/strong&gt; Cron is a time-based job scheduler used in Unix-like systems (Linux). The panel's Scheduler brings this functionality to game server management. <strong>What is Cron?</strong> Cron is a time-based job scheduler used in Unix-like systems (Linux). The panel's Scheduler brings this functionality to game server management.
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Common uses:&lt;/strong&gt; <strong>Common uses:</strong>
&lt;br&gt;• Automatic server restarts (daily, weekly, etc.) <br />• Automatic server restarts (daily, weekly, etc.)
&lt;br&gt;• Scheduled server updates <br />• Scheduled server updates
&lt;br&gt;• Backup creation at regular intervals <br />• Backup creation at regular intervals
&lt;br&gt;• Sending automated messages to players <br />• Sending automated messages to players
&lt;br&gt;• Running custom scripts or commands <br />• Running custom scripts or commands
&lt;br&gt;&lt;br&gt; <br /><br />
Access the Scheduler from the main menu to create, edit, or delete scheduled tasks for your servers. Access the Scheduler from the main menu to create, edit, or delete scheduled tasks for your servers.
</content:encoded> </content:encoded>
</item> </item>
@ -251,25 +251,25 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The Scheduler uses cron syntax, which may be unfamiliar to Windows users. Here's a simple guide: The Scheduler uses cron syntax, which may be unfamiliar to Windows users. Here's a simple guide:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Cron Format:&lt;/strong&gt; * * * * * (5 fields separated by spaces) <strong>Cron Format:</strong> * * * * * (5 fields separated by spaces)
&lt;br&gt;Position 1: Minute (0-59) <br />Position 1: Minute (0-59)
&lt;br&gt;Position 2: Hour (0-23, where 0 = midnight) <br />Position 2: Hour (0-23, where 0 = midnight)
&lt;br&gt;Position 3: Day of month (1-31) <br />Position 3: Day of month (1-31)
&lt;br&gt;Position 4: Month (1-12) <br />Position 4: Month (1-12)
&lt;br&gt;Position 5: Day of week (0-7, where 0 and 7 = Sunday) <br />Position 5: Day of week (0-7, where 0 and 7 = Sunday)
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Examples:&lt;/strong&gt; <strong>Examples:</strong>
&lt;br&gt;&lt;code&gt;0 6 * * *&lt;/code&gt; - Every day at 6:00 AM <br /><code>0 6 * * *</code> - Every day at 6:00 AM
&lt;br&gt;&lt;code&gt;0 0 * * 0&lt;/code&gt; - Every Sunday at midnight <br /><code>0 0 * * 0</code> - Every Sunday at midnight
&lt;br&gt;&lt;code&gt;*/30 * * * *&lt;/code&gt; - Every 30 minutes <br /><code>*/30 * * * *</code> - Every 30 minutes
&lt;br&gt;&lt;code&gt;0 4 * * 1&lt;/code&gt; - Every Monday at 4:00 AM <br /><code>0 4 * * 1</code> - Every Monday at 4:00 AM
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Special characters:&lt;/strong&gt; <strong>Special characters:</strong>
&lt;br&gt;&lt;code&gt;*&lt;/code&gt; means "every" (every minute, hour, etc.) <br /><code>*</code> means "every" (every minute, hour, etc.)
&lt;br&gt;&lt;code&gt;*/X&lt;/code&gt; means "every X units" (*/15 = every 15 minutes) <br /><code>*/X</code> means "every X units" (*/15 = every 15 minutes)
&lt;br&gt;&lt;code&gt;X,Y&lt;/code&gt; means "at X and Y" (1,15 = 1st and 15th) <br /><code>X,Y</code> means "at X and Y" (1,15 = 1st and 15th)
&lt;br&gt;&lt;code&gt;X-Y&lt;/code&gt; means "from X to Y" (9-17 = 9 AM to 5 PM) <br /><code>X-Y</code> means "from X to Y" (9-17 = 9 AM to 5 PM)
</content:encoded> </content:encoded>
</item> </item>
@ -279,27 +279,27 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
Here are practical examples for common server management tasks: Here are practical examples for common server management tasks:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Daily Restart at 6 AM:&lt;/strong&gt; <strong>Daily Restart at 6 AM:</strong>
&lt;br&gt;Schedule: &lt;code&gt;0 6 * * *&lt;/code&gt; <br />Schedule: <code>0 6 * * *</code>
&lt;br&gt;Action: Restart Server <br />Action: Restart Server
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Weekly Restart (Sunday 3 AM):&lt;/strong&gt; <strong>Weekly Restart (Sunday 3 AM):</strong>
&lt;br&gt;Schedule: &lt;code&gt;0 3 * * 0&lt;/code&gt; <br />Schedule: <code>0 3 * * 0</code>
&lt;br&gt;Action: Restart Server <br />Action: Restart Server
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Hourly Server Update Check:&lt;/strong&gt; <strong>Hourly Server Update Check:</strong>
&lt;br&gt;Schedule: &lt;code&gt;0 * * * *&lt;/code&gt; <br />Schedule: <code>0 * * * *</code>
&lt;br&gt;Action: Update Server <br />Action: Update Server
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Daily Backup at Midnight:&lt;/strong&gt; <strong>Daily Backup at Midnight:</strong>
&lt;br&gt;Schedule: &lt;code&gt;0 0 * * *&lt;/code&gt; <br />Schedule: <code>0 0 * * *</code>
&lt;br&gt;Action: Create Backup <br />Action: Create Backup
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Maintenance Window (2 AM - 4 AM daily):&lt;/strong&gt; <strong>Maintenance Window (2 AM - 4 AM daily):</strong>
&lt;br&gt;Stop: &lt;code&gt;0 2 * * *&lt;/code&gt; <br />Stop: <code>0 2 * * *</code>
&lt;br&gt;Start: &lt;code&gt;0 4 * * *&lt;/code&gt; <br />Start: <code>0 4 * * *</code>
&lt;br&gt;&lt;br&gt; <br /><br />
Remember to consider your server's time zone and peak player hours when scheduling restarts or maintenance. Remember to consider your server's time zone and peak player hours when scheduling restarts or maintenance.
</content:encoded> </content:encoded>
</item> </item>
@ -310,19 +310,19 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The Dashboard is your overview page that displays key information about all your servers and account: The Dashboard is your overview page that displays key information about all your servers and account:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Server Status Widgets:&lt;/strong&gt; Quick view of all your servers' online/offline status <strong>Server Status Widgets:</strong> Quick view of all your servers' online/offline status
&lt;br&gt; <br />
&lt;strong&gt;Resource Usage:&lt;/strong&gt; CPU, memory, and disk usage for your servers <strong>Resource Usage:</strong> CPU, memory, and disk usage for your servers
&lt;br&gt; <br />
&lt;strong&gt;Player Activity:&lt;/strong&gt; Current player counts across all your game servers <strong>Player Activity:</strong> Current player counts across all your game servers
&lt;br&gt; <br />
&lt;strong&gt;Recent Events:&lt;/strong&gt; Server starts, stops, updates, and other activities <strong>Recent Events:</strong> Server starts, stops, updates, and other activities
&lt;br&gt; <br />
&lt;strong&gt;Quick Actions:&lt;/strong&gt; Fast access to common tasks like starting/stopping servers <strong>Quick Actions:</strong> Fast access to common tasks like starting/stopping servers
&lt;br&gt; <br />
&lt;strong&gt;System Alerts:&lt;/strong&gt; Important notifications about your servers or account <strong>System Alerts:</strong> Important notifications about your servers or account
&lt;br&gt;&lt;br&gt; <br /><br />
The Dashboard refreshes automatically and serves as your central command center for monitoring multiple game servers at a glance. The Dashboard refreshes automatically and serves as your central command center for monitoring multiple game servers at a glance.
</content:encoded> </content:encoded>
</item> </item>
@ -333,19 +333,19 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The panel provides several ways to edit your server configuration files: The panel provides several ways to edit your server configuration files:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Config Files Editor:&lt;/strong&gt; Built-in editor for game-specific configuration files with syntax highlighting <strong>Config Files Editor:</strong> Built-in editor for game-specific configuration files with syntax highlighting
&lt;br&gt; <br />
&lt;strong&gt;File Manager:&lt;/strong&gt; Browser-based file manager to upload, download, edit, and organize all server files <strong>File Manager:</strong> Browser-based file manager to upload, download, edit, and organize all server files
&lt;br&gt; <br />
&lt;strong&gt;FTP Access:&lt;/strong&gt; Use your favorite FTP client to manage files directly <strong>FTP Access:</strong> Use your favorite FTP client to manage files directly
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Important Tips:&lt;/strong&gt; <strong>Important Tips:</strong>
&lt;br&gt;• Always backup configuration files before making changes <br />• Always backup configuration files before making changes
&lt;br&gt;• Stop your server before editing critical config files <br />• Stop your server before editing critical config files
&lt;br&gt;• Some files are protected and cannot be modified for security reasons <br />• Some files are protected and cannot be modified for security reasons
&lt;br&gt;• Test configuration changes carefully - invalid configs can prevent server startup <br />• Test configuration changes carefully - invalid configs can prevent server startup
&lt;br&gt;• Use the built-in editor when possible as it provides validation and syntax checking <br />• Use the built-in editor when possible as it provides validation and syntax checking
</content:encoded> </content:encoded>
</item> </item>
@ -355,21 +355,21 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The File Manager is a web-based interface for managing your server files: The File Manager is a web-based interface for managing your server files:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Navigation:&lt;/strong&gt; Click folders to browse your server directory structure <strong>Navigation:</strong> Click folders to browse your server directory structure
&lt;br&gt; <br />
&lt;strong&gt;Upload Files:&lt;/strong&gt; Drag and drop files or use the upload button to add files to your server <strong>Upload Files:</strong> Drag and drop files or use the upload button to add files to your server
&lt;br&gt; <br />
&lt;strong&gt;Edit Files:&lt;/strong&gt; Click on text files to open the built-in editor <strong>Edit Files:</strong> Click on text files to open the built-in editor
&lt;br&gt; <br />
&lt;strong&gt;Download Files:&lt;/strong&gt; Right-click files to download them to your computer <strong>Download Files:</strong> Right-click files to download them to your computer
&lt;br&gt; <br />
&lt;strong&gt;Create Folders:&lt;/strong&gt; Use the "New Folder" button to organize your files <strong>Create Folders:</strong> Use the "New Folder" button to organize your files
&lt;br&gt; <br />
&lt;strong&gt;Delete Files:&lt;/strong&gt; Select files and click delete (be careful - this is permanent!) <strong>Delete Files:</strong> Select files and click delete (be careful - this is permanent!)
&lt;br&gt; <br />
&lt;strong&gt;Permissions:&lt;/strong&gt; View and modify file permissions if your game requires specific settings <strong>Permissions:</strong> View and modify file permissions if your game requires specific settings
&lt;br&gt;&lt;br&gt; <br /><br />
The File Manager supports most common file operations and is perfect for quick changes without needing a separate FTP client. The File Manager supports most common file operations and is perfect for quick changes without needing a separate FTP client.
</content:encoded> </content:encoded>
</item> </item>
@ -380,22 +380,22 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The panel provides comprehensive backup and restore functionality: The panel provides comprehensive backup and restore functionality:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Automatic Backups:&lt;/strong&gt; Schedule regular backups of your server files and data <strong>Automatic Backups:</strong> Schedule regular backups of your server files and data
&lt;br&gt; <br />
&lt;strong&gt;Manual Backups:&lt;/strong&gt; Create instant backups before making major changes <strong>Manual Backups:</strong> Create instant backups before making major changes
&lt;br&gt; <br />
&lt;strong&gt;Database Backups:&lt;/strong&gt; Export MySQL databases associated with your game servers <strong>Database Backups:</strong> Export MySQL databases associated with your game servers
&lt;br&gt; <br />
&lt;strong&gt;Selective Restore:&lt;/strong&gt; Restore specific files or folders rather than entire server <strong>Selective Restore:</strong> Restore specific files or folders rather than entire server
&lt;br&gt; <br />
&lt;strong&gt;Download Backups:&lt;/strong&gt; Download backup files to your local computer for safekeeping <strong>Download Backups:</strong> Download backup files to your local computer for safekeeping
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Best Practices:&lt;/strong&gt; <strong>Best Practices:</strong>
&lt;br&gt;• Always backup before major updates or configuration changes <br />• Always backup before major updates or configuration changes
&lt;br&gt;• Keep multiple backup versions (daily, weekly, monthly) <br />• Keep multiple backup versions (daily, weekly, monthly)
&lt;br&gt;• Test restore procedures periodically to ensure backups work <br />• Test restore procedures periodically to ensure backups work
&lt;br&gt;• Store important backups offline for maximum protection <br />• Store important backups offline for maximum protection
</content:encoded> </content:encoded>
</item> </item>
@ -405,22 +405,22 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
The panel provides multiple update options for keeping your servers current: The panel provides multiple update options for keeping your servers current:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Automatic Updates:&lt;/strong&gt; Enable automatic Steam updates when new game versions are released <strong>Automatic Updates:</strong> Enable automatic Steam updates when new game versions are released
&lt;br&gt; <br />
&lt;strong&gt;Manual Updates:&lt;/strong&gt; Check for and apply updates on-demand from the Game Monitor <strong>Manual Updates:</strong> Check for and apply updates on-demand from the Game Monitor
&lt;br&gt; <br />
&lt;strong&gt;Scheduled Updates:&lt;/strong&gt; Use the Scheduler to update servers during low-traffic periods <strong>Scheduled Updates:</strong> Use the Scheduler to update servers during low-traffic periods
&lt;br&gt; <br />
&lt;strong&gt;Validation:&lt;/strong&gt; Verify and repair corrupted game files using Steam's validation system <strong>Validation:</strong> Verify and repair corrupted game files using Steam's validation system
&lt;br&gt; <br />
&lt;strong&gt;Rollback:&lt;/strong&gt; Restore previous game versions if needed (when backups are available) <strong>Rollback:</strong> Restore previous game versions if needed (when backups are available)
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Update Tips:&lt;/strong&gt; <strong>Update Tips:</strong>
&lt;br&gt;• Monitor update logs for any errors during the process <br />• Monitor update logs for any errors during the process
&lt;br&gt;• Consider backing up before major game updates <br />• Consider backing up before major game updates
&lt;br&gt;• Some updates may require server restart or configuration changes <br />• Some updates may require server restart or configuration changes
&lt;br&gt;• Test servers after updates to ensure mods and plugins still work <br />• Test servers after updates to ensure mods and plugins still work
</content:encoded> </content:encoded>
</item> </item>
@ -430,19 +430,19 @@ As always, if you need help just ask on Discord.
<content:encoded> <content:encoded>
RCON (Remote Console) allows you to send commands directly to your game server: RCON (Remote Console) allows you to send commands directly to your game server:
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Accessing RCON:&lt;/strong&gt; Click the "Console" or "RCON" button in your Game Monitor <strong>Accessing RCON:</strong> Click the "Console" or "RCON" button in your Game Monitor
&lt;br&gt; <br />
&lt;strong&gt;Authentication:&lt;/strong&gt; RCON may require a password set in your server configuration <strong>Authentication:</strong> RCON may require a password set in your server configuration
&lt;br&gt; <br />
&lt;strong&gt;Common Commands:&lt;/strong&gt; <strong>Common Commands:</strong>
&lt;br&gt;&lt;code&gt;say [message]&lt;/code&gt; - Send message to all players <br /><code>say [message]</code> - Send message to all players
&lt;br&gt;&lt;code&gt;kick [player]&lt;/code&gt; - Remove a player from the server <br /><code>kick [player]</code> - Remove a player from the server
&lt;br&gt;&lt;code&gt;ban [player]&lt;/code&gt; - Permanently ban a player <br /><code>ban [player]</code> - Permanently ban a player
&lt;br&gt;&lt;code&gt;status&lt;/code&gt; - Show server status and player list <br /><code>status</code> - Show server status and player list
&lt;br&gt;&lt;code&gt;changelevel [map]&lt;/code&gt; - Change to a different map <br /><code>changelevel [map]</code> - Change to a different map
&lt;br&gt;&lt;br&gt; <br /><br />
&lt;strong&gt;Note:&lt;/strong&gt; Available commands vary by game. Not all games support RCON functionality. Check your specific game's documentation for supported commands. <strong>Note:</strong> Available commands vary by game. Not all games support RCON functionality. Check your specific game's documentation for supported commands.
</content:encoded> </content:encoded>
</item> </item>