{% extends 'baseone.html.twig' %} {% block stylesheets %} {{ encore_entry_link_tags('install') }} {% endblock %} {% block title %}{% endblock %} {% block body %}

Install Step 1 : checking Myddleware requirements

{{ 'install.requirements_checker' | trans }}

{{ 'install.requirements_info' | trans }}

{% if php_version %}

PHP version :

{{ php_version }}

{% else %}

{{ 'install.php_version_not_found' | trans }}

{% endif %}

{{ system_status }}

{% if error_messages %}

{{ 'install.errors_to_do_message' | trans }} :

    {% for message in error_messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% if recommendation_messages %}

{{ 'install.recommendations_to_do_message' | trans }} :

    {% for message in recommendation_messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% if env_local_file_rights and not env_local_file_writable %}

Error: your .env.local file is not writable

Rights of .env.local file:

{{ env_local_file_rights }}

The .env.local file is used to store the database credentials. It must be writable by the web server.

{% endif %}
{% if not error_messages %} {{ 'install.setup_database_button' | trans }} {% endif %}
{% block javascripts %} {{ encore_entry_script_tags('install') }} {% endblock %} {% endblock %}