Hallo Shopware Community !
Glaubt mir ich habe sehr lange versucht den „Fehler“ durch Selbstrecherche zu finden und nahezu jeden Thread gelesen den es gibt und/oder auch Google dazu oft befragt. Leider finde ich zu diesem Problem keine Lösung.
Vielleicht klappt es ja jetzt.
Zuerst die Fakten:
Shopwaredaten: per FTP auf den Host gezogen und in einem Unterorder installiert.
- Ergebnis: meinedomain.de/test_enviro/shops/sw5/ - Demostart lässt sich aufrufen, ohne Probleme! AAAABER -> es lädt einfach immer und unendlich … ohne das was passiert. Klickt man dann auf einen Reiter oder sonst was landet man im Nirvana auf der Hostdefault-Seite. Ende
Und die Htacces dazu ist folgende:
RewriteEngine on
#RewriteBase /shopware/
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]
RewriteRule custom/.\*(config|menu|services|plugin)\.xml ./shopware.php?controller=Error&action=pageNotFoundError [NC,L]
RewriteCond %{REQUEST_URI} !(/(engine|files|templates|themes|web)/)
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]
# Restrict access to VCS directories
RedirectMatch 404 /\.(svn|git|hg|bzr|cvs)(/|$)
# Restrict access to root folder files
RedirectMatch 404 /(autoload.php|composer.(json|lock|phar)|README.md|UPGRADE-(.*).md|CONTRIBUTING.md|eula.*.txt|.gitignore|.*.dist|.env.*)$
# Restrict access to shop configs files
RedirectMatch 404 /(web/cache/(config_\d+.json|all.less))$
# Restrict access to theme configurations
RedirectMatch 404 /themes/(.*)(.*.lock|package.json|.gitignore|Gruntfile.js|all.less|node_modules/.*)$
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.
Deny from all
Enable gzip compression
AddOutputFilterByType DEFLATE text/html text/xml text/plain text/css text/javascript application/javascript application/json application/font-woff application/font-woff2 image/svg+xml
Ich würde mich über hilfreiche Hinweise freuen. Danke Matt