Hallo, ich muss leider nochmal etwas an euch richten.
Ich möchte von www.WebseiteA.de weg und den Shop auf www.WebseiteB/shop.de ziehen.
Dazu habe ich heute ein FTP Backup sowie ein Datenbank-Backup gemacht. Das habe ich heruntergeladen und per console entpackt.
Es sind somit auch alle versteckten Dateien enthalten - .htaccess
Danach habe ich in der Datenbank die URL angepasst:
s_core_shops > host > www.WebsiteB.de
s_core_shops > base_path > /shop
s_core_shops > hosts > www.WebsiteB.de
s_core_shops > host > WebsiteB.de
Anschließend habe ich die config.php angepasst und mit error handlung ausgestattet:
<?php
return array (
'db' =>
array (
'username' => 'USERNAME',
'password' => 'PASSWORT',
'host' => 'localhost',
'port' => 'PORT',
'dbname' => 'DBNAME',
),
//Shopware Config Tweaks
'front' => [
'showException' => true,
'throwExceptions' => true,
'noErrorHandler' => false,
],
//Zeige Low-Level PHP-Fehler
'phpsettings' => [
'display_errors' => 1,
],
// Template-Cache
'template' => [
'forceCompile' => true,
],
// Backend-Cache
'cache' => [
'backend' => 'Black-Hole',
'backendOptions' => [],
'frontendOptions' => [
'write_control' => false
],
],
// Model-Cache
'model' => [
'cacheProvider' => 'Array' // supports Apc, Array, Wincache and Xcache
],
// Http-Cache
'httpCache' => [
'enabled' => true, // true or false
'debug' => true,
],
);
Danach habe ich die www.WebsiteB.de/shop seite aufgerufen und bekomme diesen fehler:
**Fatal error** : Declaration of Shopware_Plugins_Frontend_DreiscArticleTab_Bootstrap::update() must be compatible with Shopware_Components_Plugin_Bootstrap::update($version) in **/homepages/27/KDNR/htdocs/htdocs/wpsite/wordpress/shop/engine/Shopware/Plugins/Community/Frontend/DreiscArticleTab/Bootstrap.php** on line **56**
Das Backend (www.WebseiteB.de/shop/backend) zeigt mir direkt 404.
Zu guter Letzt wollte ich dann schauen, ob ich den Cache löschen kann, aber das funktioniert per console nicht (weil darin gar nichts geht:
(uiserver):3452354345:~/htdocs/wpsite/wordpress/shop$ php bin/console
Content-type: text/html
<br />
<b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_CONSTANT_ENCAPSED_STRING or '(' in <b>/homepages/27/3452354345/htdocs/htdocs/wpsite/wordpress/shop/bin/console</b> on line <b>30</b><br />
(uiserver):3452354345:~/htdocs/wpsite/wordpress/shop$
Puh, da melkt man lieber Mäuse, war das nicht so? Naja, hat jemand einen erlösenden Tipp?
Danke