You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Warning: explode() expects parameter 2 to be string, array given in /var/www/html/magento23/vendor/magento/module-configurable-import-export/Model/Import/Product/Type/Configurable.php on line 569
At line 569, below code is present. $variations = explode(ImportProduct::PSEUDO_MULTI_LINE_SEPARATOR, $rowData['configurable_variations']);
How to create a configurable product? Magento version is 2.3.1
The text was updated successfully, but these errors were encountered:
@amitnayak1 , you surely found a solution in the meantime, but maybe worth writing down the solution for others anyway.
This change from an array to the string, @erfanimani mentioned, can actually automatically be done, by including the NestedArrayAdapterFactory in the following way in your custom di.xml:
I am trying to create configurable products using below code and products array which is given in the demo module.
It is giving the error
At line 569, below code is present.
$variations = explode(ImportProduct::PSEUDO_MULTI_LINE_SEPARATOR, $rowData['configurable_variations']);
How to create a configurable product? Magento version is 2.3.1
The text was updated successfully, but these errors were encountered: