Hi @voodoojones
We’ve been able to replicate this, but only in certain environments. Our developer is looking into it and I will update you as soon as we know more about the issue.
Tagging along here. I’m also interested in the outcome of this.
@wpallimport has there been any news regarding this issue?
@wpallimport We have to have this working – now! The publicly available export file is NOT being updated even though new exports are being run. And it’s not a client caching problem (we’ve tried hard refreshing, different browsers etc.).
Need a reply on this ASAP.
Hi @voodoojones
In the environments we were able to replicate this on, we found that it was actually the server caching the file. So, this isn’t specifically a WP All Export issue and you should be able to fix it by modifying your caching configuration (tell it not to cache the file).
If that’s not possible for some reason, we’ve implemented a new hook in the latest BETA version of WP All Export that’s available here: https://downloads.wp.xz.cn/plugin/wp-all-export.zip. Once you’ve installed that, you’ll need to add this code to your child themes functions.php file:
add_filter( 'wp_all_export_no_cache', 'my_no_cache', 10, 1 );
function my_no_cache( $cache ) {
return TRUE;
}
Thanks for answering, we’ll check it out.
I’m marking this as resolved since we haven’t heard back. @voodoojones please reply here if you’re still having this issue, anyone else please open a new thread.