Umzug CE_4.8.4

Hallo und guten Abend,

ich als Anfänger habe ein Problem. Umzug! Bin nach Anleitung vorgegangen. Der Shop geht während des kopierens des Ursprungsshop offline (http://XXXXXX.de/admin/offline.html bzw. http://XXXXXXX/offline.html).

Ich hab keine Ahnung was ich machen kann. Bitte um Hilfe.

Danke und Gruß

passiert gerne, wenn die Verbindung zur Datenbank verloren geht

Die Zugangsdaten dazu stehen in der config.inc.php - kopierst Du die mit?

*** von unterwegs via Tapatalk ***

Wie sieht es mit den oxv_… in der SQL aus? Vorhanden, nicht vorhanden, einfach mit kopiert?

Hallo,

Danke für die Antworten.

die config.inc sieht so aus:

/** @name database information */
    $this->dbHost = 'localhost'; // database host name
    $this->dbName = 'XXXX'; // database name
    $this->dbUser = 'XXX'; // database user name
    $this->dbPwd = 'XXXX'; // database user password
    $this->dbType = 'mysql';
    $this->sShopURL = 'http://XXXXX'; // eShop base url, required
    $this->sSSLShopURL  = null;            // eShop SSL url, optional
    $this->sAdminSSLURL = null;            // eShop Admin SSL url, optional
    $this->sShopDir = '/var/www/XXXXXX';
    $this->sCompileDir = '/var/www/XXX/html/XXX/tmp';

// UTF-8 mode in shop 0 - off, 1 - on
$this->iUtfMode = 1;

// File type whitelist for file upload
$this->aAllowedUploadTypes = array('jpg', 'gif', 'png', 'pdf', 'mp3', 'avi', 'mpg', 'mpeg', 'doc', 'xls', 'ppt');

// timezone information
date_default_timezone_set('Europe/Berlin');

// Search engine friendly URL processor
// After changing this value, you should rename oxid.php file as well
// Always leave .php extension here unless you know what you are doing
$this->sOXIDPHP = "oxid.php";

//  enable debug mode for template development or bugfixing
// -1 = Logger Messages internal use only
//  0 = off
//  1 = smarty
//  2 = SQL
//  3 = SQL + smarty
//  4 = SQL + smarty + shoptemplate data
//  5 = Delivery Cost calculation info
//  6 = SMTP Debug Messages
//  7 = oxDbDebug SQL parser
//  8 = display smarty template names (requires /tmp cleanup)
$this->iDebug = 0;

// Log all modifications performed in Admin
$this->blLogChangesInAdmin = false;

// Force admin email
$this->sAdminEmail = '';

// in case session must be started on first user page visit (not only on
// session required action) set this option value 1
$this->blForceSessionStart = false;

// Use browser cookies to store session id (no sid parameter in URL)
$this->blSessionUseCookies = true;

// The domain that the cookie is available: array( _SHOP_ID_ => _DOMAIN_ );
// check setcookie() documentation for more details @php.net
$this->aCookieDomains = null;

// The path on the server in which the cookie will be available on: array( _SHOP_ID_ => _PATH_ );
// check setcookie() documentation for more details @php.net
$this->aCookiePaths = null;

// uncomment the following line if you want to leave euro sign unchanged in output
// by default is set to convert euro sign symbol to html entity
// $this->blSkipEuroReplace = true;


// List of all Search-Engine Robots
$this->aRobots = array(
                    'googlebot',
                    'ultraseek',
                    'crawl',
                    'spider',
                    'fireball',
                    'robot',
                    'slurp',
                    'fast',
                    'altavista',
                    'teoma',
                    'msnbot',
                    'bingbot',
                    'yandex',
                    'gigabot',
                    'scrubby'
                    );

// Deactivate Static URL's for these Robots
$this->aRobotsExcept = array();

// IP addresses for which session/cookie id match and user agent change checks are off
$this->aTrustedIPs = array();

/**
 * Works only if basket reservations feature is enabled in admin.
 *
 * The number specifies how many expired basket reservations are
 * cleaned per one request (to the eShop).
 * Cleaning a reservation basically means returning the reserved
 * stock to the articles.
 *
 * Keeping this number too low may cause article stock being returned too
 * slowly, while too high value may have spiking impact on the performance.
 */
$this->iBasketReservationCleanPerRequest = 200;

// Trusted shops buyer protection wsdl url
$this->sTsProtectionUrl = "https://protection.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";
// This is only needed for testing during integration
$this->sTsTestProtectionUrl = "https://protection-qa.trustedshops.com/ts/protectionservices/ApplicationRequestService?wsdl";

// Trusted Shops Ratings login info
// The public username and password are provided in TrustedShops documentation and helps to identify the functionality provided by OXID eShop
// Do not change this information unless instructed otherwise
$this->sTsUser = "oxid_esales";
$this->sTsPass = "V1AoGEXm";

// Trusted Shops Ratings configuration array
$this->aTsConfig = array( "blTestMode"   => false, // set TRUE to enable testing mode
                          "sTsUrl"       => "https://www.trustedshops.com", // Trusted Shops Rating main url
                          "sTsTestUrl"   => "https://qa.trustedshops.com",  // Trusted Shops Rating test url
                          "sTsWidgetUri" => array( "bewertung/widget/widgets/%s.gif" ), // rating widget url
                          "sTsInfoUri"   => array( "de" => "bewertung/info_%s.html",  // DE rating info url
                                                   "en" => "buyerrating/info_%s.html" // EN rating info url
                                                 ),
                          "sTsRatingUri" => array( "de" => "bewertung/bewerten_%s.html", // DE rating url
                                                   "en" => "buyerrating/rate_%s.html"    // EN rating url
                                                 )
                         );
// Trusted Shops Ratings service wsdl
$this->sTsServiceWsdl = "https://www.trustedshops.de/ts/services/TsRating?wsdl";

// Trusted Shops Ratings test service wsdl
$this->sTsServiceTestWsdl = "https://qa.trustedshops.de/ts/services/TsRating?wsdl";

/**
 * should template blocks be highlighted in frontend ?
 * this is mainly intended for module writers in non productive environment
 */
$this->blDebugTemplateBlocks = false;

/**
 * should requests, coming via stdurl and not redirected to seo url be logged to seologs db table?
 * note: only active if in productive mode, as the eShop in non productive more will always log such urls
 */
$this->blSeoLogging = false;

/**
 * To override oxubase::_aUserComponentNames use this array option:
 * array keys are component(class) names and array values defines if component is cacheable (true/false)
 * e.g. array("user_class" => false);
 */
$this->aUserComponentNames = null;

/**
 * Default database conection character set
 */
$this->sDefaultDatabaseConnection = '';

/**
 * Additional multi language tables
 */
$this->aMultiLangTables = null;

/**
 * Instructs shop that price update is perfomed by cron (time based job sheduler)
 */
$this->blUseCron = false;


/**
 * Do not disable module if class from extension path does not exist.
 */
$this->blDoNotDisableModuleOnError = false;

Nei, die oxv_ hab ich nicht mitkopiert

Aber die oxv_… sind jetzt vorhanden?