【发布时间】:2020-07-27 09:06:36
【问题描述】:
我有一个带有 shopware/development、shopware/platform 和 custom/plugins 的 monorepo。
应用程序在 Docker 上运行,并将当前版本显示为 v9999999 Developer Version。
删除了产品、属性和类别等演示数据并导入了新集合。
我正在尝试更新shopware/platform。我的步骤:
- 下载码表https://github.com/shopware/platform/releases/tag/v6.2.3
- 将其复制到“平台”文件夹
- 在容器
muenkel_app_server_1中运行命令
composer install
bin/console database:migrate --all
bin/console theme:refresh
bin/console cache:clear
正面展示
Notice: Undefined index: structs
in platform/src/Core/Framework/DataAbstractionLayer/FieldSerializer/ListingPriceFieldSerializer.php (line 30)
return new ListingPriceCollection();
}
$value = json_decode((string) $value, true);
return new ListingPriceCollection(unserialize($value['structs']));
}
}
后端不加载产品列表
38 b67864 POST xhr 500 http://muenkel.local.de/api/v2/search/product
我在更新过程中遗漏了什么?
【问题讨论】:
标签: shopware