index.php 735 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. *
  4. * PHP Pro Bid $Id$ plMS96f/yDsisTTgpH7ZWho1AIEg3mzqV+ngxNwN2fc=
  5. *
  6. * @link http://www.phpprobid.com
  7. * @copyright Copyright (c) 2017 Online Ventures Software & CodeCube SRL
  8. * @license http://www.phpprobid.com/license Commercial License
  9. *
  10. * @version 7.10 [rev.7.10.01]
  11. */
  12. ini_set('display_errors', 1);
  13. error_reporting(E_ALL);
  14. ini_set('gd.jpeg_ignore_warning', 1);
  15. define('APPLICATION_PATH', realpath(__DIR__));
  16. set_include_path(APPLICATION_PATH . DIRECTORY_SEPARATOR . 'library');
  17. require_once 'Cube/Application.php';
  18. $application = Cube\Application::init(array_merge(
  19. include 'config/global.config.php',
  20. include 'config/cache.config.php'));
  21. $application->bootstrap()
  22. ->run();