1
0

exception.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2012-2015 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. /** @var array $_ */
  8. /** @var \OCP\IL10N $l */
  9. style('core', ['styles', 'header', 'exception']);
  10. require_once __DIR__ . '/print_exception.php';
  11. ?>
  12. <div class="guest-box wide">
  13. <h2><?php p($l->t('Internal Server Error')) ?></h2>
  14. <p><?php p($l->t('The server was unable to complete your request.')) ?></p>
  15. <p><?php p($l->t('If this happens again, please send the technical details below to the server administrator.')) ?></p>
  16. <p><?php p($l->t('More details can be found in the server log.')) ?></p>
  17. <?php if (isset($_['serverLogsDocumentation']) && $_['serverLogsDocumentation'] !== ''): ?>
  18. <p><a href="<?php print_unescaped($_['serverLogsDocumentation']) ?>" target="_blank" rel="noopener"><?php p($l->t('For more details see the documentation ↗.')) ?></a></p>
  19. <?php endif; ?>
  20. <h3><?php p($l->t('Technical details')) ?></h3>
  21. <ul>
  22. <li><?php p($l->t('Remote Address: %s', [$_['remoteAddr']])) ?></li>
  23. <li><?php p($l->t('Request ID: %s', [$_['requestID']])) ?></li>
  24. <?php if (isset($_['debugMode']) && $_['debugMode'] === true): ?>
  25. <li><?php p($l->t('Type: %s', [$_['errorClass']])) ?></li>
  26. <li><?php p($l->t('Code: %s', [$_['errorCode']])) ?></li>
  27. <li><?php p($l->t('Message: %s', [$_['errorMsg']])) ?></li>
  28. <li><?php p($l->t('File: %s', [$_['file']])) ?></li>
  29. <li><?php p($l->t('Line: %s', [$_['line']])) ?></li>
  30. <?php endif; ?>
  31. </ul>
  32. <?php if (isset($_['debugMode']) && $_['debugMode'] === true): ?>
  33. <br />
  34. <h3><?php p($l->t('Trace')) ?></h3>
  35. <?php print_exception($_['exception'], $l); ?>
  36. <?php endif; ?>
  37. </div>