MagicStick
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Post Duplicator] MPD is not workingYeah well you disabled the image duplication stuff so the reason the error disappeared is because you are no longer trying to use the functions for copying images. As I said you’ll have to speak to your host to get these working. They should be ok with it. This is the first I’ve seen of a host disabling this functionality.
Forum: Plugins
In reply to: [Multisite Post Duplicator] MPD is not workingHi Duttlinger. Unfortunately it seems a core php function that mpd uses has been disabled by your web site host (allow_url_fopen=0). To fix this error you would need to contact your host provider and speak to them about enabling the functionality. The function in question file_get_conents(). Alternatively you could disable all the image duplication options in the plugin settings.
Good luck mate!
Forum: Plugins
In reply to: [Multisite Post Duplicator] MPD not working properly/errorThanks walter. I’m looking into this right now and can’t replicate for the life of me. Gimme a few hours and I’ll see whats up.
Forum: Plugins
In reply to: [Multisite Post Duplicator] MPD not working properly/errorHi Walter. Thanks for the follow up. Can you turn off debug mode and and report back if there are still problems?
Go into your wp-config.php file on your site root directory and change line:
define( 'WP_DEBUG', true );to
define( 'WP_DEBUG', false );Forum: Plugins
In reply to: [Multisite Post Duplicator] MPD not working properly/errorThank you very much for the info Walter. These are actually only Warning messages because you have ‘debug mode’ on. MDP should still function as expected. I will add a fix to ensure the warning messages don’t appear in debug mode in a future release!
Thanks again!
Forum: Plugins
In reply to: [Multisite Post Duplicator] HTML messed up with batch copyI was just referring to the semicolon issue in your previous post. 🙂
I’ll try and replicate your problem and get back to you.
Forum: Plugins
In reply to: [Multisite Post Duplicator] HTML messed up with batch copyAh. I think know what’s happening here. You are pasting html into the visual editor. You should be pasting HTML code into the text editor tab.
Forum: Plugins
In reply to: [Multisite Post Duplicator] HTML messed up with batch copyWow. That is a very strange one. I’ll need to do some debugging on this. Is it just this post or is it other posts that have the same issue? Looks like a bad regular expression match but this is exactly the same function I use on batch processing with normal.
Forum: Plugins
In reply to: [Multisite Post Duplicator] Behaviour if post already exists in target site?Hi Luca. If i understand correctly I will be adding this functionality in a future release. Stay tuned!
Forum: Plugins
In reply to: [Multisite Post Duplicator] Update Changes In Posts / PagesHi mskeim. What I have been working on to achieve this functionality will be a lot smarter than that. You will have ‘persist management tools’ available also 😉
Stay tuned!
Forum: Plugins
In reply to: [Multisite Post Duplicator] Transfer images in Advanced Custom FieldsThanks guys. I’m aware of this and currently looking into solutions on how to deal with the ACF image logic appropriately.
Forum: Plugins
In reply to: [Multisite Post Duplicator] Batch duplication not available after page searchThis code is now in the latest release! You may update! 🙂
Forum: Plugins
In reply to: [Multisite Post Duplicator] Deactivated Multisites still shown in listThis issue should now be fixed on todays release!
Forum: Plugins
In reply to: [Multisite Post Duplicator] Deactivated Multisites still shown in listHi Mattce. Thank you so much for your message. I looked into the code around your issue and I have indeed found a bug that will have to be fixed. Can only apologise about this.
I’m out of office for a couple of days so will be unable to push a fix until then. I hope this is acceptable? Thanks again for taking the time to alert me about this issue.
Stay tuned also as there will be a big update with lots of new features coming soon! 🙂
Forum: Plugins
In reply to: [Multisite Post Duplicator] Batch duplication not available after page searchHey Rob. If you want to get this functionality working before an update you can do the following:
Edit my plugin file
addons/bulkaction-mpd-addon.php
find line with code:
<?php if(!$post_status && $active_mpd): ?>and replace with:
<?php if($_REQUEST["post_status"] != 'trash' && $active_mpd): ?>