/** * Public alias for the application entry point * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ use Magento\Framework\App\Bootstrap; // >>> HIER ZWEI ZEILEN EINFÜGEN! <<< ini_set('display_errors', 1); error_reporting(E_ALL); // >>> ENDE EINFÜGUNG <<< try { require __DIR__ . '/../app/bootstrap.php'; } catch (\Exception $e) { // ... der Rest des Codes