Store Export or Import not working

FAQ Viewed: 958

If the stores export or import is not working you should first enable WP_DEBUG log. Therefore you should add the following lines into your wp-config.php

define( 'WP_DEBUG', true );
define( 'WP_DEBUG_DISPLAY', false );
define( 'WP_DEBUG_LOG', true );

Then reload the stores export / import action and look into the debug file at wp-content/debug.log.

If you find an error like “PHP Fatal error:  Uncaught Error: Class ‘ZipArchive’ not found” then you need to install the PHP zip extension like this:

apt-get install php-zip

One thought on “Store Export or Import not working

Leave a Reply

Your email address will not be published. Required fields are marked *