No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
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.