upgrade installer, fix TOS showing
This commit is contained in:
parent
8bff4f857b
commit
b69cbcfe65
7 changed files with 27 additions and 20 deletions
|
@ -3,15 +3,15 @@
|
|||
$required_extentions = ['openssl', 'gd', 'mysql', 'PDO', 'mbstring', 'tokenizer', 'bcmath', 'xml', 'curl', 'zip', 'intl'];
|
||||
|
||||
$requirements = [
|
||||
'minPhp' => '7.4',
|
||||
'maxPhp' => '8.1', // This version is not supported
|
||||
'minPhp' => '8.1',
|
||||
'maxPhp' => '8.1.9', // This version is not supported
|
||||
'mysql' => '5.7.22',
|
||||
];
|
||||
|
||||
function checkPhpVersion()
|
||||
{
|
||||
global $requirements;
|
||||
if (version_compare(phpversion(), $requirements['minPhp'], '>=') && version_compare(phpversion(), $requirements['maxPhp'], '<')) {
|
||||
if (version_compare(phpversion(), $requirements['minPhp'], '>=') && version_compare(phpversion(), $requirements['maxPhp'], '<=')) {
|
||||
return 'OK';
|
||||
}
|
||||
|
||||
|
|
|
@ -65,6 +65,7 @@ if (! isset($_GET['step'])) {
|
|||
|
||||
<p class="<?php echo checkPhpVersion() === 'OK' ? 'ok' : 'notok'; ?>"> php
|
||||
version: <?php echo phpversion(); ?> (minimum required <?php echo $requirements['minPhp']; ?>)</p>
|
||||
|
||||
<p class="<?php echo getMySQLVersion() === 'OK' ? 'ok' : 'notok'; ?>"> mysql
|
||||
version: <?php echo getMySQLVersion(); ?> (minimum required <?php echo $requirements['mysql']; ?>)</p>
|
||||
|
||||
|
|
|
@ -125,14 +125,14 @@
|
|||
{{-- imprint and privacy policy --}}
|
||||
<div class="fixed-bottom ">
|
||||
<div class="container text-center">
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
||||
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
||||
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS'))
|
||||
| <a href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
||||
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -70,12 +70,15 @@
|
|||
{{-- imprint and privacy policy --}}
|
||||
<div class="fixed-bottom ">
|
||||
<div class="container text-center">
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
||||
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
||||
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
||||
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -79,14 +79,17 @@
|
|||
<!-- /.login-box -->
|
||||
|
||||
{{-- imprint and privacy policy --}}
|
||||
<div class="fixed-bottom">
|
||||
<div class="fixed-bottom ">
|
||||
<div class="container text-center">
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
||||
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
||||
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
||||
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -179,13 +179,13 @@
|
|||
{{-- imprint and privacy policy --}}
|
||||
<div class="fixed-bottom ">
|
||||
<div class="container text-center">
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT'))
|
||||
<a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
||||
<a href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY'))
|
||||
<a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
||||
<a href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
||||
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@endif
|
||||
</div>
|
||||
|
|
|
@ -428,13 +428,13 @@
|
|||
|
||||
{{-- Show imprint and privacy link --}}
|
||||
<div class="float-right d-none d-sm-inline-block">
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
||||
<a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
||||
<a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
||||
@endif
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS'))
|
||||
@if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
||||
| <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
||||
@endif
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue