@extends('importer::app') @section('title', 'Import Configuration') @section('content')
{{ Form::open(['route' => 'importer.config', 'method' => 'POST']) }}

IMPORTANT NOTES

  • The first user's password (admin) will be "admin". Please change it after logging in
  • User passwords will be reset and they will need to use "Forgot Password" to reset it
  • If you have more than 1000 PIREPs or flights, it's best to use the command-line importer! Click here to see the documentation of how to use it.
  • THIS WILL WIPE OUT YOUR EXISTING DATA - this is required to make sure that things like pilot IDs match up

Database Config

Enter the database information for your legacy phpVMS installation

Database Host
{{ Form::input('text', 'db_host', '127.0.0.1', ['class' => 'form-control']) }}
Database Port
{{ Form::input('text', 'db_port', '3306', ['class' => 'form-control']) }}
Database Name
{{ Form::input('text', 'db_name', 'phpvms', ['class' => 'form-control']) }}
Database User
{{ Form::input('text', 'db_user', null, ['class' => 'form-control']) }}
Database Password
{{ Form::input('text', 'db_pass', null, ['class' => 'form-control']) }}
{{ Form::submit('Test Database Credentials', ['class' => 'btn btn-info', 'id' => 'dbtest_button']) }}
Database Prefix
{{ Form::input('text', 'db_prefix', 'phpvms_', ['class' => 'form-control']) }}

Prefix of the tables, if you're using one

{{ Form::submit('Start Importer >>', ['class' => 'btn btn-success']) }}

{{ Form::close() }}
@endsection @section('scripts') @endsection