mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-25 11:20:56 +03:00
Update fatal error - ApiKeyResource.php #471
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jvsod on GitHub (Oct 13, 2025).
Current Behavior
Updating the panel using the commands from the guide give the below error in the latest beta update
Expected Behavior
Update completes successfully
Steps to Reproduce
update from previous version to latest version
Panel Version
Failing to load panel so unsure
Wings Version
v1.0.0-beta18
Games and/or Eggs Affected
No response
Docker Image
No response
Error Logs
Is there an existing issue for this?
@notAreYouScared commented on GitHub (Oct 13, 2025):
Please read the announcements on the discord. Also please use the update script.
@zigzatuzoo commented on GitHub (Oct 15, 2025):
Had the same issue. For anyone who is wondering how to fix and doesn't want to join the discord server/doesn't use discord.
Issue is raised due to filament trying to be updated before the files are.
Fix (commands expected to be run as root and in your pelican root):
mv ./.env ../ && mv ./database/database.sqlite ../rm -rf ./*curl -L https://github.com/pelican-dev/panel/releases/latest/download/panel.tar.gz | tar -xzvrm .env && mv ../.env ./ && mv ../database.sqlite ./database/sudo chmod -R 755 storage/* bootstrap/cache/ && sudo chown -R www-data:www-data /var/www/pelicanphp artisan migrate && php artisan storage:link