mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* 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
17 lines
544 B
PHP
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
|