public/index.php line 41

Open in your IDE?
  1. <?php
  2. ini_set('display_errors'1);
  3. ini_set('display_startup_errors'1);
  4. error_reporting(E_ALL);
  5. ini_set('memory_limit''-1');
  6. #phpinfo();
  7. #die("pim production");
  8. /**
  9.  * Pimcore
  10.  *
  11.  * This source file is available under two different licenses:
  12.  * - GNU General Public License version 3 (GPLv3)
  13.  * - Pimcore Enterprise License (PEL)
  14.  * Full copyright and license information is available in
  15.  * LICENSE.md which is distributed with this source code.
  16.  *
  17.  * @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  18.  * @license    http://www.pimcore.org/license     GPLv3 and PEL
  19.  */
  20. use Pimcore\Tool;
  21. use Symfony\Component\HttpFoundation\Request;
  22. include __DIR__ "/../vendor/autoload.php";
  23. \Pimcore\Bootstrap::setProjectRoot();
  24. \Pimcore\Bootstrap::bootstrap();
  25. $request Request::createFromGlobals();
  26. // set current request as property on tool as there's no
  27. // request stack available yet
  28. Tool::setCurrentRequest($request);
  29. /** @var \Pimcore\Kernel $kernel */
  30. $kernel \Pimcore\Bootstrap::kernel();
  31. // reset current request - will be read from request stack from now on
  32. Tool::setCurrentRequest(null);
  33. $response $kernel->handle($request);
  34. $response->send();
  35. $kernel->terminate($request$response);