@extends('installation.layout') @section('content')

Checking file permissions

1. current step: 2. 3. 4. 5. 6. 7.
Please review server requirements. If all items are checked, you may proceed to enter your database connection credentials.
    @php $phpVersion = number_format((float)phpversion(), 2, '.', ''); @endphp
  • Php version 8.0 +

    PHP v8.0 or higher is required for the application to work.
  • CURL Enabled

    cURL extension is required to fetch remote data.
  • .env File Permission

    .env file must be writable.
  • RouteServiceProvider.php File Permission

    app/Providers/RouteServiceProvider.php
    file must be writable.
  • Previous
  • @if ($permission['curl_enabled'] == 1 && $permission['db_file_write_perm'] == 1 && $permission['routes_file_write_perm'] == 1 && $phpVersion >= 8.0) @if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1')
  • @else
  • @endif @endif
@endsection