{#** * 2007-2019 PrestaShop and Contributors * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://www.prestashop.com for more information. * * @author PrestaShop SA * @copyright 2007-2019 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA *#} {% extends '@PrestaShop/Admin/layout.html.twig' %} {% trans_default_domain "Admin.Advparameters.Feature" %} {% block content %}

info_outline {{ 'Configuration information'|trans }}

{{ 'This information must be provided when you report an issue on our bug tracker or forum.'|trans }}

{% if system.notHostMode %}

info_outline {{ 'Server information'|trans }}

{% if system.uname is not empty %}

{{ 'Server information'|trans }} {{ system.uname }}

{% endif %}

{{ 'Server software version:'|trans }} {{ system.server.version }}

{{ 'PHP version:'|trans }} {{ system.server.php.version }}

{{ 'Memory limit:'|trans }} {{ system.server.php.memoryLimit }}

{{ 'Max execution time:'|trans }} {{ system.server.php.maxExecutionTime }}

{{ 'Upload Max File size:'|trans }} {{ system.server.php.maxFileSizeUpload }}

{% if system.instaWebInstalled %}

{{ 'PageSpeed module for Apache installed (mod_instaweb)'|trans }}

{% endif %}

info_outline {{ 'Database information'|trans({}, 'Admin.Advparameters.Feature') }}

{{ 'MySQL version:'|trans }} {{ system.database.version }}

{{ 'MySQL server:'|trans }} {{ system.database.server }}

{{ 'MySQL name:'|trans }} {{ system.database.name }}

{{ 'MySQL user:'|trans }} {{ system.database.user }}

{{ 'Tables prefix:'|trans }} {{ system.database.prefix }}

{{ 'MySQL engine:'|trans }} {{ system.database.engine }}

{{ 'MySQL driver:'|trans }} {{ system.database.driver }}

{% endif %}

info_outline {{ 'Store information'|trans }}

{{ 'PrestaShop version:'|trans }} {{ system.shop.version }}

{{ 'Shop URL:'|trans }} {{ system.shop.url }}

{{ 'Shop path:'|trans }} {{ system.shop.path }}

{{ 'Current theme in use:'|trans }} {{ system.shop.theme }}

info_outline {{ 'Mail configuration'|trans }}

{{ 'Mail method:'|trans }} {% if system.isNativePHPmail %} {{ 'You are using the PHP mail() function.'|trans }} {% else %} {{ 'You are using your own SMTP parameters.'|trans }}

{{ 'SMTP server:'|trans }} {{ system.smtp.server }}

{{ 'SMTP username:'|trans }} {% if system.smtp.user is not empty %} {{ 'Defined'|trans }} {% else %} {{ 'Not defined'|trans }} {% endif %}

{{ 'SMTP password:'|trans }} {% if system.smtp.password is not empty %} {{ 'Defined'|trans }} {% else %} {{ 'Not defined'|trans }} {% endif %}

{{ 'Encryption:'|trans }} {{ system.smtp.encryption }}

{{ 'SMTP port:'|trans }} {{ system.smtp.port }}

{% endif %}

info_outline {{ 'Your information'|trans }}

{{ 'Your web browser:'|trans }} {{ userAgent }}

info_outline {{ 'Check your configuration'|trans }}

{{ 'Required parameters:'|trans }} {% if requirements.failRequired == false %} {{ 'OK'|trans({}, 'Admin.Advparameters.Notification') }}

{% else %} {{ 'Please fix the following error(s)'|trans({}, 'Admin.Advparameters.Notification') }}

    {% for key, value in requirements.testsRequired %} {% if 'fail' == value %}
  • {{ requirements.testsErrors[key] }}
  • {% endif %} {% endfor %}
{% endif %} {% if requirements.failOptional is defined %}

{{ 'Optional parameters:'|trans }} {% if requirements.failOptional == false %} {{ 'OK'|trans({}, 'Admin.Advparameters.Notification') }}

{% else %} {{ 'Please fix the following error(s)'|trans({}, 'Admin.Advparameters.Notification') }}

    {% for key, value in requirements.testsOptional %} {% if 'fail' == value %}
  • {{ requirements.testsErrors[key] }}
  • {% endif %} {% endfor %}
{% endif %} {% endif %}
{% if system.notHostMode %}

info_outline {{ 'List of changed files'|trans }}

loop {{ 'Checking files...'|trans({}, 'Admin.Advparameters.Notification') }}
{% endif %} {% if system.notHostMode %} {% endif %} {% endblock %}