Home öffnet sich leider nicht, Shop-Unterseiten funktionieren aber!

Hallo zusammen,

sind ganz frisch hier, hab alles installiert bekommen, backend funktioniert. Frontend auch, wenn ich die Unterseite im Webbrowser direkt und gezielt eingebe.

Das heißt, wir kommen momentan nur so auf unsere Shopseite, indem wir www.blabla.de/bla eingeben. Bei www.blabla.de, also der Aufruf der Homeseite dann… geht NICHTS.

Schaut doch selbst unter www.meindeinshop.de . Wenn wir uns auf der Unterseite befinden und klicken dort auf Home im Menü, passiert dann natürlich das gleiche.

 

Sieht aus, als will er immer wieder auf den Install Wizward o.ä. zugreifen? Wie gesagt, sonst funktioniert alles tadellos, lediglich der Homeaufruf nicht.

 

Danke und Grüße

Timo & Christian

 

Hast du eine Index.php?

 

1 „Gefällt mir“

ja, die ist vorhanden.

<?php
/\*\*  \* Shopware 5  \* Copyright (c) shopware AG  \*  \* According to our dual licensing model, this program can be used either  \* under the terms of the GNU Affero General Public License, version 3,  \* or under a proprietary license.  \*  \* The texts of the GNU Affero General Public License with an additional  \* permission and of our proprietary license can be found at and  \* in the LICENSE file you have received along with this program.  \*  \* This program is distributed in the hope that it will be useful,  \* but WITHOUT ANY WARRANTY; without even the implied warranty of  \* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  \* GNU Affero General Public License for more details.  \*  \* "Shopware" is a registered trademark of shopware AG.  \* The licensing of the program under the AGPLv3 does not imply a  \* trademark license. Therefore any rights, title and interest in  \* our trademarks remain entirely with us.  \*/ $lockFile = \_\_DIR\_\_ . '/data/' . 'install.lock'; if (is\_file($lockFile)) {     header('Content-type: text/html; charset=utf-8', true, 503);     echo ' #### Der Installer wurde bereits ausgeführt. Wenn Sie den Installationsvorgang erneut ausführen möchten, löschen Sie die Datei recovery/install/data/install.lock! ';     echo ' #### The installation process has already been finished. If you want to run the installation process again, delete the file recovery/install/data/install.lock!';     exit; } // Check the minimum required php version if (version\_compare(PHP\_VERSION, '5.6.4', '     header('Content-type: text/html; charset=utf-8', true, 503);     echo ' ## Fehler ';     echo 'Auf Ihrem Server läuft PHP version ' . PHP\_VERSION . ', Shopware 5 benötigt mindestens PHP 5.6.4.';     echo ' ## Error ';     echo 'Your server is running PHP version ' . PHP\_VERSION . ' but Shopware 5 requires at least PHP 5.6.4.';     exit; } require\_once \_\_DIR\_\_ . '/../common/autoload.php'; error\_reporting(-1); ini\_set('display\_errors', 1); date\_default\_timezone\_set('UTC'); @set\_time\_limit(0); use Shopware\Recovery\Install\Console\Application; use Symfony\Component\Console\Input\ArgvInput; if (PHP\_SAPI === 'cli') {     $input = new ArgvInput();     $env = $input-\>getParameterOption(['--env', '-e'], 'production');     $application = new Application($env);     return $application-\>run($input); } //the execution time will be increased, because the import can take a while ini\_set('max\_execution\_time', 120); // Redirect to no mod rewrite path if (!isset($\_SERVER['MOD\_REWRITE']) && isset($\_SERVER['SCRIPT\_NAME']) && isset($\_SERVER['REQUEST\_URI'])) {     if (empty($\_SERVER['PATH\_INFO']) && strpos($\_SERVER['REQUEST\_URI'], $\_SERVER['SCRIPT\_NAME']) !== 0) {         header('Location: ' . $\_SERVER['SCRIPT\_NAME'], true);         return;     } } $app = require \_\_DIR\_\_ . '/src/app.php'; $app-\>run();

Hast du den shopware Installer bei einem bereits installierten system hochgeladen?

Eine index.php existiert im Standard nicht

1 „Gefällt mir“

Hallo nochmal,

habe nach Sicherung der Datei die index.php einfach mal gelöscht, weil du sagtest, die gehört nicht zum Standard, Jetzt geht es o.O

Wie wird jetzt die Homepage überhaupt aufgerufen ohne index.php im obersten Verzeichnisordner?

Fehlt bei Dir vielleicht die .htaccess Datei im Shopware Installationsverzeichnis ?

VG