View Issue Details

IDProjectCategoryView StatusLast Update
0006827OXID eShop (all versions)6. ------ Setup -------public2019-05-07 11:22
Reportermf 
PriorityhighSeveritycriticalReproducibilityalways
Status resolvedResolutionfixed 
Product Version6.0.2 
Target VersionFixed in Version6.1.4 
Summary0006827: Upgrade CE/PE to EE leads to empty article list in backend
DescriptionAfter upgrade from CE/PE to EE the article list in backend is empty. The reason is an empty oxarticles2shop table.
Steps To Reproduceexecuting following commands in the directory of a CE/PE:

composer config repositories.oxid-esales composer https://enterprise-edition.packages.oxid-esales.com
composer require oxid-esales/oxideshop-metapackage-ee
vendor/bin/oe-eshop-db_migrate migrations:migrate
vendor/bin/oe-eshop-db_views_generate

TagsNo tags attached.
ThemeNot defined
BrowserNot defined
PHP VersionNot defined
Database VersionNot defined

Activities

michael_keiluweit

2018-05-04 14:45

administrator   ~0012474

Last edited: 2018-12-05 12:52

View 3 revisions

Database state after the migration.
mysql> select count(oxid) from oxarticles;
+-----------------+
| count(oxid) |
+-----------------+
|             217 |
+-----------------+
1 row in set (0,01 sec)

mysql> select count(oxshopid) from oxarticles2shop;
+-----------------+
| count(oxshopid) |
+-----------------+
|               0 |
+-----------------+
1 row in set (0,00 sec)

mysql>


edit: framed the code into pre tags for a better formatting. -MK