Rewrite rules and block installed if it's already installed

This commit is contained in:
Nabeel Shahzad
2017-12-17 11:29:11 -06:00
parent dcb34eedb8
commit abd2d8e8e2
6 changed files with 21 additions and 1 deletions

View File

@@ -31,6 +31,10 @@ class InstallerController extends AppBaseController
*/
public function index()
{
if(config('app.key') !== 'NOT_INSTALLED') {
return view('installer::errors/already-installed');
}
return view('installer::index-start');
}

View File

@@ -0,0 +1,11 @@
@extends('installer::app')
@section('content')
<h2>phpVMS already installed!</h2>
<p>phpVMS has already been installed! Please remove the modules/Installer folder.</p>
{!! Form::open(['url' => '/', 'method' => 'get']) !!}
<p style="text-align: right">
{!! Form::submit('Go to your site >>', ['class' => 'btn btn-success']) !!}
</p>
{!! Form::close() !!}
@endsection