diff --git a/resources/views/settings/backups.blade.php b/resources/views/settings/backups.blade.php index 90d17b0d7c..004f4da50a 100644 --- a/resources/views/settings/backups.blade.php +++ b/resources/views/settings/backups.blade.php @@ -1,6 +1,4 @@ -@extends('layouts/default', [ - 'helpText' => 'Backup files are located in: '.$path.'', -]) +@extends('layouts/default') {{-- Page title --}} @section('title') @@ -26,7 +24,7 @@
-
+
@@ -92,7 +90,7 @@
-
+

Upload Backup

{{ Form::open([ @@ -100,7 +98,6 @@ 'route' => 'settings.backups.upload', 'files' => true, 'class' => 'form-horizontal' ]) }} - @csrf @@ -111,13 +108,14 @@
- +
@@ -126,13 +124,40 @@

{{ trans_choice('general.filetypes_accepted_help', 3, ['size' => Helper::file_upload_max_size_readable(), 'types' => '.zip']) }}

{!! $errors->first('image', '') !!} -
- - +
{{ Form::close() }} +

Restoring from Backup

+ +
+

You can use the restore () button to restore from a previous backup, however there are a few things you should know:

+
+ + + +
    +
  • + Your entire database and any uploaded files will be completely replaced by what's in the backup file. +

    +
  • +
  • + Very large backups may time out on the restore attempt and may still need to be run via command line. +

    +
  • +
  • + This does not currently work with S3 file storage. +

    +
  • +
  • + You will be logged out after your restore is complete.
  • +
+ + +

+

Backup files are located in: {{ $path }}

+
@@ -144,6 +169,25 @@ @stop @section('moar_scripts') + @include ('partials.bootstrap-table') + + @stop