- Please back up 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 (($memoryLimit && $memoryLimit != -1 && $memoryLimit < $requiredMemoryLimit) || ($maximumExecutionTime && $maximumExecutionTime < $requiredMaximumExecutionTime))
Your server does not meet the minimum requirements for this update, hence you may not be able to
update to the latest version. Please enhance the following:
@if ($memoryLimit && $memoryLimit < $requiredMemoryLimit)
memory_limit
: {{ $memoryLimit }}M
=>
{{ $requiredMemoryLimit }}M
@endif
@if ($maximumExecutionTime && $maximumExecutionTime < $requiredMaximumExecutionTime)
max_execution_time
: {{ $maximumExecutionTime }}
=> {{ $requiredMaximumExecutionTime }}
@endif
Need help editing the memory_limit
or max_execution_time
config?
Check out the PHP Memory Limit Configuration Guide (CPanel) for step-by-step instructions.
Or, find helpful tutorials by searching 'edit memory_limit config in PHP' online.
@endif
@if (! $activated)
We are required to activate your license before doing upgrade.
Please go to settings page
to activate your license.
@endif
@if($isOutdated && $latestUpdate)
Latest changelog ({{ BaseHelper::formatDate($latestUpdate->releasedDate) }})
{{ __('A new version (:version / released on :date) is available to update!', ['version' => $latestUpdate->version, 'date' => BaseHelper::formatDate($latestUpdate->releasedDate)]) }}
{!! $changelog !!}
@endif
@if(request()->query('no-ajax') != 1)
OneClick System Updater
@if (!empty($latestUpdate))
@if (!$isOutdated)
{{ __('The system is up-to-date. There are no new versions to update!') }}
@endif
@if (! $activated)
@endif
@if(! $isOutdated)
This won't touch or reset your data - it just reinstall the latest version of the system.
@endif
@else
{{ __('The system is up-to-date. There are no new versions to update!') }}
@endif
@endif
@if($latestUpdate)
Manual System Updater
Having trouble with the One-Click System Updater? No worries! Check out the manual updater below - it's easy, just follow the steps!
@endif
@if (isset($isOutdated) && isset($latestUpdate) && !$isOutdated && $latestUpdate)
Latest changelog ({{ BaseHelper::formatDate($latestUpdate->releasedDate) }})
{!! $changelog !!}
@endif
@endsection