cancel
Showing results for 
Search instead for 
Did you mean: 

Post Magento 2.1.x to 2.2.x upgrade, product export does not work

SOLVED

Post Magento 2.1.x to 2.2.x upgrade, product export does not work

If you try to export product data after upgrade (Admin -> System -> Export), user get redirected to dashboard.

- Tarandeep
Problem solved?Please give 'Kudos' and accept 'Answer as Solution'.
1 ACCEPTED SOLUTION

Accepted Solutions

Re: Post Magento 2.1.x to 2.2.x upgrade, product export does not work

Solution:

Root cause of the issue: Usage of deprecated config setting.

You may be having config value in core_config_data table for modules output restrictions. This functionality was deprecated in 2.2.0 and the config menu system -> advanced -> advanced was removed.

However the logic for processing existing settings was preserved. It should be removed in future releases of Magent. This is an issue with Core Magento

Since those options are deprecated and can be safely deleted. Below are the steps for the same:

1) Remove deprecated "modules_disable_output" values from core_config_data table:

DELETE FROM core_config_data WHERE path LIKE "advanced/modules_disable_output/%";

2) Clean config cache:

php bin/magento cache:clean config

Note: Please try this in your dev or staging environment before deploying to your production environment.

- Tarandeep
Problem solved?Please give 'Kudos' and accept 'Answer as Solution'.

View solution in original post

1 REPLY 1

Re: Post Magento 2.1.x to 2.2.x upgrade, product export does not work

Solution:

Root cause of the issue: Usage of deprecated config setting.

You may be having config value in core_config_data table for modules output restrictions. This functionality was deprecated in 2.2.0 and the config menu system -> advanced -> advanced was removed.

However the logic for processing existing settings was preserved. It should be removed in future releases of Magent. This is an issue with Core Magento

Since those options are deprecated and can be safely deleted. Below are the steps for the same:

1) Remove deprecated "modules_disable_output" values from core_config_data table:

DELETE FROM core_config_data WHERE path LIKE "advanced/modules_disable_output/%";

2) Clean config cache:

php bin/magento cache:clean config

Note: Please try this in your dev or staging environment before deploying to your production environment.

- Tarandeep
Problem solved?Please give 'Kudos' and accept 'Answer as Solution'.