All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 30s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m37s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 4m36s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s
This is referenced in #211, but not the actual cause of that issue though
38 lines
887 B
PHP
38 lines
887 B
PHP
@extends('architect::layouts.error')
|
|
|
|
@section('error')
|
|
597: @lang('LDAP Server Unavailable')
|
|
@endsection
|
|
|
|
@section('content')
|
|
@switch($exception->getMessage())
|
|
@case("Can't contact LDAP server")
|
|
<table class="table table-sm table-borderless table-condensed">
|
|
<tr>
|
|
<th>@lang('Error')</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2">{{ $exception->getMessage() }}</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>@lang('Possible Causes')</th>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<ul class="ps-3">
|
|
<li>@lang('Your LDAP server is not connectable')</li>
|
|
<li>@lang('Your LDAP server hostname is incorrect')</li>
|
|
<li>@lang('Your DNS server cannot resolve that hostname')</li>
|
|
<li>@lang('Your Resolver is not pointing to your DNS server')</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
@break
|
|
|
|
@default
|
|
{{ $exception->getMessage() }}
|
|
@endswitch
|
|
@endsection |