@extends('layouts.updater') @Push('updater-body')
tag_name; // Requests current version from the local version file and sets it as variable $Vlocal = 'v' . file_get_contents(base_path("version.json")); ?> @if(auth()->user()->role == 'admin' and $Vgit > $Vlocal or env('JOIN_BETA') === true) @if($_SERVER['QUERY_STRING'] === '')
Logo
l

Updater

@if(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN')

The updater only works on Linux based systems.

@else @if(env('JOIN_BETA') === true)

$Vlocal) {echo "You need to update to the latest mainline release";} else {echo "You're running the latest mainline release";} ?>

@else

You can update your installation automatically or download the update and install it manually:

@endif
   
@endif @endif @if($_SERVER['QUERY_STRING'] === 'backup') @Push('updater-head') @endpush
Logo
l

Creating backup

@endif @if($_SERVER['QUERY_STRING'] === 'backups') true]); $tst = base_path('backups/'); file_put_contents($tst.'CANUPDATE', ''); $URL = Route::current()->getName(); header("Location: ".$URL."?updating"); exit(); ?> @endif @if($_SERVER['QUERY_STRING'] === 'updating' and (file_exists(base_path("backups/CANUPDATE"))))
Logo
l

Updating

@Push('updater-head') @endpush @endif @endif @if($_SERVER['QUERY_STRING'] === 'finishing')
Logo
l

Finishing up

current() . "?success\" />"; ?> @endif @if($_SERVER['QUERY_STRING'] === 'success')
Logo
l

Success!

The update was successful, you can now return to the Admin Panel:


@endif @if($_SERVER['QUERY_STRING'] === 'error')
Logo
l

Error

Something went wrong with the update :(


@endif
@endpush