- Please backup your database and script files before upgrading.
- You need to activate your license before doing upgrade.
- If you don't need this 1-click update, you can disable it in .env by adding CMS_ENABLE_SYSTEM_UPDATER=false
- It will override all files in platform/core, platform/packages, all plugins developed by us in platform/plugins and theme developed by us in platform/themes.
@if ($updateData['status'])
{!! trim($updateData['changelog']) !!}
@if (request()->input('update_id'))
@php
$updateId = strip_tags(trim(request()->input('update_id')));
$version = strip_tags(trim(request()->input('version')));
echo '
';
$api->downloadUpdate($updateId, $version);
@endphp
@else
@endif
@endif