Installation Shopware 5 RC2 schlägt fehl

[quote=„modsching“]Bin leider immer noch nicht weiter. Ich habe jetzt noch einmal auf die PHP Version 5.4 downgraded. Leider immer noch erfolglos. Es klappt leider auch nicht mit dem RC1. Da diese Installation bei anderen schon geklappt hat, denke ich, dass es ein Umgebungsproblem auf dem Server sein muss. Das an sich ist merkwürdig, da ich auf dem selben Server schon andere Shopware-Installationen lauffähig bekommen habe. Ich habe dazu noch diese Anleitung gefunden, aber die hilft mir hier leider auch nicht weiter: https://www.df.eu/forum/threads/67589-S … sanleitung[/quote] Hallo, bin auch bei DF und ich konnte alles problemlos nach einem Fehlversuch installieren. Du hast Dir ja die Installation Anleitung von DF durchgelesen. In der .htaccess (Root und /recovery/install/) hast Du alles richtig eingetragen? Ja auch ich hatte beim ersten mal das Problem mit der Fehlermeldung. Im Ordner /recovery/install/src/ fehlten eine ganze Menge an Dateien. Habe den Ordnerinhalt nochmals im Binär Modus übertragen, und schwups waren alle Daten da und die Installation lief durch. .htaccess im Root. Zeile 2-4 [code]
RewriteEngine on
#RewriteBase /shopware/
RewriteBase /

Https config for the backend

#RewriteCond %{HTTPS} !=on
#RewriteRule backend/(.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

RewriteRule shopware.dll shopware.php
RewriteRule files/documents/.* engine [NC,L]
RewriteRule backend/media/(.*) media/$1 [NC,L]

RewriteCond %{REQUEST_URI} !(/(engine|files|templates)/)
RewriteCond %{REQUEST_URI} !(/media/(archive|banner|image|music|pdf|unknown|video)/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ shopware.php [PT,L,QSA]

Fix missing authorization-header on fast_cgi installations

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

# Block access to VCS directories
RedirectMatch 404 /\.(svn|git|hg|bzr|cvs)(/|$)
# Staging environment #SetEnvIf Host „staging.test.shopware.in“ SHOPWARE_ENV=staging # Development environment #SetEnvIf Host „dev.shopware.in“ SHOPWARE_ENV=dev #SetEnv SHOPWARE_ENV dev DirectoryIndex index.html DirectoryIndex index.php DirectoryIndex shopware.php # Disables download of configuration
# Deny all requests from Apache 2.4+.

Require all denied

# Deny all requests from Apache 2.0-2.2.
<ifmodule>
    Deny from all
</ifmodule>

# Enable gzip compression
AddOutputFilterByType DEFLATE text/html text/xml text/plain text/css text/javascript application/json application/x-font-woff application/font-woff


ExpiresActive on
ExpiresDefault „access plus 1 month“
FileETag None

Header append Cache-Control „public“
Header unset ETag


# Disables auto directory index
Options -Indexes

Options -MultiViews

php_value memory_limit 256M

php_value max_execution_time 120

php_value upload_max_filesize 20M

php_flag phar.readonly off
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode off
# AddType x-mapp-php5 .php # AddHandler x-mapp-php5 .php [/code] .htaccess in recovery/install. Zeile 2 und 3 <ifmodule mod_rewrite.c> RewriteEngine On RewriteBase /recovery/install RewriteRule .* - [E=MOD_REWRITE:1] RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [QSA,L] </ifmodule>DirectoryIndex index.php Gruss Michael Nachtrag: richtig bei DF erfolgt der Aufruf zum Update: http://www.deineDomain.de/recovery/install/index.php

1 „Gefällt mir“