Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
520B

  1. <section class="health-check">
  2. <h1>Health Check</h1>
  3. <ul class="health-list">
  4. <li><strong>PHP</strong> &mdash; <?= e(PHP_VERSION) ?> &mdash; OK</li>
  5. <li><strong>SQL Server</strong> &mdash;
  6. <?php if ($dbOk): ?>
  7. OK
  8. <?php else: ?>
  9. <span style="color:red">FAILED: <?= e($dbError ?? 'unknown error') ?></span>
  10. <?php endif; ?>
  11. </li>
  12. <li><strong>Environment</strong> &mdash; <?= e($appEnv) ?></li>
  13. </ul>
  14. </section>

Powered by TurnKey Linux.