HEX
Server: Apache
System: Linux webm019.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: petsclubcc (68997)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/petsclubcc/prestashop1.8.2/installl/theme/views/system.php
<?php
/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * 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.md.
 * 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://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 */
?>

<h2><?php echo $this->translator->trans('We are currently checking PrestaShop compatibility with your system environment', [], 'Install'); ?></h2>

<?php if ($this->tests['required']['success']) { ?>
  <h3 class="okBlock">
    <?php echo $this->translator->trans('PrestaShop compatibility with your system environment has been verified!', [], 'Install'); ?>
  </h3>
<?php } else { ?>
  <h3 class="errorBlock">
    <?php echo $this->translator->trans('Oops! Please correct the item(s) below, and then click "%refresh_label%" to test the compatibility of your new system.', ['%refresh_label%' => $this->translator->trans('Refresh information', [], 'Install')], 'Install'); ?>
  </h3>
<?php } ?>

<hr />

<!-- Display tests results -->
<?php foreach ($this->tests_render as $type => $categories): ?>
  <ul id="<?php echo $type; ?>">
    <?php foreach ($categories as $category): ?>
      <li class="title <?php if ($category['success'] == 1): ?>ok<?php endif; ?>"><?php echo $category['title']; ?></li>
      <?php $i = 0; ?>
      <?php foreach ($category['checks'] as $id => $lang): ?>
        <li class="required <?php if ($i == 0): ?>first<?php endif; ?> <?php echo isset($this->tests[$type]['checks'][$id]) ? $this->tests[$type]['checks'][$id] : 'fail'; ?>">
          <?php echo $lang; ?>
        </li>
        <?php ++$i; ?>
      <?php endforeach; ?>
    <?php endforeach; ?>
  </ul>
<?php endforeach; ?>

<hr />

<p><input class="button button--secondary" value="<?php echo $this->translator->trans('Refresh information', [], 'Install'); ?>" type="submit" id="req_bt_refresh" /></p>