You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.php 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  4. * @author Lukas Reschke <lukas@statuscode.ch>
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. * @author Robin Appelman <icewind@owncloud.com>
  7. * @author Thomas Müller <thomas.mueller@tmit.eu>
  8. * @author Vincent Petry <pvince81@owncloud.com>
  9. *
  10. * @copyright Copyright (c) 2016, ownCloud, Inc.
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. // Show warning if a PHP version below 5.4.0 is used, this has to happen here
  27. // because base.php will already use 5.4 syntax.
  28. if (version_compare(PHP_VERSION, '5.4.0') === -1) {
  29. echo 'This version of ownCloud requires at least PHP 5.4.0<br/>';
  30. echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
  31. return;
  32. }
  33. try {
  34. require_once 'lib/base.php';
  35. OC::handleRequest();
  36. } catch(\OC\ServiceUnavailableException $ex) {
  37. \OC::$server->getLogger()->logException($ex, ['app' => 'index']);
  38. //show the user a detailed error page
  39. OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
  40. OC_Template::printExceptionErrorPage($ex);
  41. } catch (\OC\HintException $ex) {
  42. OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
  43. OC_Template::printErrorPage($ex->getMessage(), $ex->getHint());
  44. } catch (Exception $ex) {
  45. \OC::$server->getLogger()->logException($ex, ['app' => 'index']);
  46. //show the user a detailed error page
  47. OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
  48. OC_Template::printExceptionErrorPage($ex);
  49. } catch (Error $ex) {
  50. \OC::$server->getLogger()->logException($ex, ['app' => 'index']);
  51. OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
  52. OC_Template::printExceptionErrorPage($ex);
  53. }