David Daugreilh
Forum Replies Created
-
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Dont clone WooCommerce tableHello,
Woocommerce tables are not in the default tables from wordpress database, and have to be declared to be used with Multisite Clone Duplicator.
In your functions.php, add this filter :
function mucd_primary_table_to_copy($primary_tables) { $primary_tables[] = 'woocommerce_api_keys'; $primary_tables[] = 'woocommerce_attribute_taxonomies'; $primary_tables[] = 'woocommerce_downloadable_product_permissions'; $primary_tables[] = 'woocommerce_log'; $primary_tables[] = 'woocommerce_order_itemmeta'; $primary_tables[] = 'woocommerce_order_items'; $primary_tables[] = 'woocommerce_payment_tokenmeta'; $primary_tables[] = 'woocommerce_payment_tokens'; $primary_tables[] = 'woocommerce_sessions'; $primary_tables[] = 'woocommerce_shipping_zones'; $primary_tables[] = 'woocommerce_shipping_zone_locations'; $primary_tables[] = 'woocommerce_shipping_zone_methods'; $primary_tables[] = 'woocommerce_tax_rates'; $primary_tables[] = 'woocommerce_tax_rate_locations'; return $primary_tables; } add_filter('mucd_default_primary_tables_to_copy', 'mucd_primary_table_to_copy');Regards,
David- This reply was modified 7 years, 3 months ago by David Daugreilh.
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Incorrect Hook DefinitionsHello @tigerrockmartialarts,
Thank you for reporting this mistake. We will consider it in the next release.
Best regards,
DavidForum: Plugins
In reply to: [MultiSite Clone Duplicator] Custom Post TypeHello @gb3k,
Yes this plugin does it. It duplicates all your data from an existing site to a new site.
Best regards,
DavidForum: Plugins
In reply to: [MultiSite Clone Duplicator] Duplicating primary siteYou have to replace ‘ma_table_*’ with your own tables names you want to duplicate.
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Duplicating primary siteHello,
Here is an exemple to how to use mucd_default_primary_tables_to_copy filter.
In your theme’s functions.php file :function exemple_mucd_primary_table_to_copy($primary_tables) { $primary_tables[] = 'ma_table_1'; $primary_tables[] = 'ma_table_2'; $primary_tables[] = 'ma_table_3'; return $primary_tables; } add_filter('mucd_default_primary_tables_to_copy', 'exemple_mucd_primary_table_to_copy');Do not define database prefix in tables name
I hope this will help you.
Best regards,
David- This reply was modified 7 years, 10 months ago by David Daugreilh.
- This reply was modified 7 years, 10 months ago by David Daugreilh.
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] WP-admin 500 error since last updateHello,
Your PHP version seems to be less than 5.4, is it true ?
We will fix this issue soon.Best regards,
DavidForum: Plugins
In reply to: [MultiSite Clone Duplicator] Duplication failed – Error Table ViewHello,
We assigned the bug to next release 1.5.1 https://github.com/globalis-ms/multisite-clone-duplicator/milestone/4 and we will try to fix it a soon as possible.
Bests regards,
David
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Is it compatible with 4.9.2Hello here,
Thanks @lauradiaz for your post !
We just published a new version 1.5.0 who ensure compatibility with WP 4.9.5, and solved some issues.
Bests regards,
David
Forum: Plugins
In reply to: [MultiSite Clone Duplicator] Duplicate uses same uploads folderHello here,
We just published a new version 1.5.0 of this plugin, who solved some issues and ensure the compatibility with WP 4.9.5.
At this moment, I can’t tell you if is a MUCD or WPML issue.
We have to make some new tests to check compatibility with WPML.
If we can solved this issue, we will introduce the fix in the next release of this plugin.Bests regards,
David
Forum: Reviews
In reply to: [MultiSite Clone Duplicator] Doesn’t work…Hello,
Please be more specific about your trouble, we would try to help you..
Do you have errors when you duplicate a site ?
What is your WP version ?
Do you have access to logs file ?Bests regards,
David
Forum: Reviews
In reply to: [MultiSite Clone Duplicator] Great but outdated for core/compatibilityHello,
We just published a new release of this plugin.
We do our best to provide this free plugin (no premium version, no paid support, 100% free and open-source).Some issues have been solved and WP 4.9.5 is supported.
Indeed, the purpose of that plugin is to produce an identical copy from an instance. I dont know what happens with your MultilingualPress, and i will try to make some tests with this plugin. I just created an issue on Github.
Bests regards,
David
Forum: Reviews
In reply to: [MultiSite Clone Duplicator] Don’t wast your time…Hello
We just published a new release of this plugin.
It works with WP 4.9.5.
Please be more specific about your trouble.Bests regards,
David