Files
librenms-librenms/resources/views/errors/file_permissions.blade.php
Tony Murray 607a567090 Don't check file permissions on every request, handle failures (#9264)
* Don't check file permissions on every request, handle failures
Improve error page visually

* only print minimal mkdir

* invert file_exists check, whoops

* docblock

* revert accidental changes

* rename variable

* Change database errors to use the new layout

* Add support url to the default layout

* Replaced \n for && in fix for user perms

* fix web output
2018-10-18 21:08:46 -05:00

17 lines
544 B
PHP

@extends('layouts.error')
@section('title')
@lang('Whoops, the web server could not write required files to the filesystem.')
@endsection
@section('content')
<h3>@lang('Running the following commands will fix the issue most of the time:')</h3>
@foreach($commands as $command)
<p>{{ $command }}</p>
@endforeach
<hr class="separator"/>
<p>@lang("If that doesn't fix the issue. You can find how to get help at") <a href="https://docs.librenms.org/Support">https://docs.librenms.org/Support</a>.</p>
@endsection