Shopware auf anderen Server transferieren

Nach einem Shopware Transfer zwischen All-inkl zu Timmehosting bekomme ich so einige Fehler. Am Anfang stand nginx vs htacess im Weg welches behoben wurde. Dann waren da Schreibrechte nicht übernommen worden, auch das ist behoben. Nun hab ich im Frontend allerdings eine 302 Status auf den Shop der unter dev.example.de läuft und eine leere Seite (gefolgt von einem 200er Status ?). Das Backend funktioniert ebenfalls nur teilweise. So kann ich Herstellerlisten und Marketingdinge aufrufen,einiges andere nicht. Einige auffällige Errormeldungen hab ich rot markiert. Dabei fehlt immer eine JOIN-ende Tabelle. Woran kann das liegen? Vielen Dank für Eure Hilfe. PS: Der all-inkl Account existiert nicht mehr. ich habe nur noch einen damaligen SQL-Export sowie die Dateistruktur in einer Zip-Datei. Artikel: [quote]SELECT count(DISTINCT s0_.id) AS sclr0 FROM s_articles_details s0_ [color=red]INNER JOIN LEFT JOIN[/color] s_articles s2_ ON s0_.articleID = s2_.id WHERE s0_.kind = 1[/quote] Kategorien: [quote]SELECT DISTINCT s0_.id AS id0 FROM s_categories s0_ [color=red]LEFT JOIN LEFT JOIN[/color] s_emotion_categories s3_ ON s0_.id = s3_.category_id LEFT JOIN s_emotion s2_ ON s2_.id = s3_.emotion_id LEFT JOIN s_media s4_ ON s0_.mediaID = s4_.id LEFT JOIN s_categories_avoid_customergroups s6_ ON s0_.id = s6_.categoryID LEFT JOIN s_core_customergroups s5_ ON s5_.id = s6_.customergroupID WHERE s0_.id = ? LIMIT 1 OFFSET 0’[/quote] Bestellungen: [quote]SELECT count(DISTINCT s0_.id) AS sclr0 FROM s_order s0_ LEFT JOIN s_core_paymentmeans s1_ ON s0_.paymentID = s1_.id LEFT JOIN s_core_states s2_ ON s0_.cleared = s2_.id LEFT JOIN s_core_states s3_ ON s0_.status = s3_.id LEFT JOIN s_order_billingaddress s4_ ON s0_.id = s4_.orderID LEFT JOIN s_user s5_ ON s0_.userID = s5_.id LEFT JOIN s_order_details s6_ ON s0_.id = s6_.orderID LEFT JOIN s_core_countries s7_ ON s4_.countryID = s7_.id LEFT JOIN s_core_countries_states s8_ ON s4_.stateID = s8_.id LEFT JOIN s_core_shops s9_ ON s0_.subshopID = s9_.id LEFT JOIN s_premium_dispatch s10_ ON s0_.dispatchID = s10_.id [color=red]LEFT JOIN LEFT JOIN[/color] WHERE s0_.status NOT IN (’-1’) AND s0_.ordernumber IS NOT NULL[/quote] Benutzerverwaltung: [quote]SELECT s0_.id AS id0, s0_.roleID AS roleID1, s0_.localeID AS localeID2, s0_.username AS username3, s0_.password AS password4, s0_.encoder AS encoder5, s0_.apiKey AS apiKey6, s0_.sessionID AS sessionID7, s0_.lastlogin AS lastlogin8, s0_.name AS name9, s0_.email AS email10, s0_.active AS active11, s0_.failedlogins AS failedlogins12, s0_.lockeduntil AS lockeduntil13, s0_.extended_editor AS extended_editor14, s0_.disabled_cache AS disabled_cache15, s1_.id AS id16, s1_.authID AS authID17 FROM s_core_auth s0_ [color=red]LEFT JOIN [/color]WHERE s0_.id = ?’ with params [“50”]: [/quote]

schups

Hallo, was passiert denn, wenn man die Datenbanktabellen in eine frische Shopware-Installation importiert (Shopware installieren, alle Tabellen in der DB löschen und den SQl-Dump der Tabellen (!) in die DB importieren)? Die Folge 302 und anschließend 200 Statuscode kommt wahrscheinlich dadurch, dass ein Redirect angefordert wird, der findet statt (=302) und anschließend wird die neue URL vom Server korrekt ausgeliefert (200). Der Response ist einfach leer, weil Shopware intern keinen Inhalt zusammenstellen kann. Aber ein Response wird erstellt und nichts anderes sagt ja der 200 Status.