I configured a new version with different subtheme of Betheme on a testing server and when i use the mfn migrate tool to replace paths it cleans all pages content.
Using MFN Migrate tool 3.0 with Betheme 15.3
Is there a new version of MFN Migrate tool ? What is going on?
@CPA_Master No, we do not have any new version as the latest one is compatible with the newest version of BeTheme. We already checked this tool and it works fine with latest 15.3 version. Maybe you put wrong paths or special characters that does not work?
Hi..I've used Akeeba too and worked fine for backup and restore but on the restored website I don't see any page content bult with muffin builder:(( I can't really understand how this is possible.
@danielecusumano Did you used WP Migrate Plugin for migration? If not, you should use it because maybe the plugin you used broke something and that's why Muffin Builder content is invisible.
In less than an hour of debugging I found why your plugin is wiping out content. The problem is on line 79: unserialize( base64_decode( $result->meta_value ) );.
In some situations (such as after syncing a db) the value is not encoded so this returns 0... and you're updating the value with this. You need to check if it's simply serialized first and if not then try to decode and unserialize:
Well the only link I can find to download it is on the first page here and it still says 3.0. How is anyone supposed to know it was updated to 3.1? And why are people still having the issue? Looks like you just updated it overnight...
@pfmedia We do not have any information about updates because it's just an additional tool and maybe 1% of people are using it. And it is not true what you wrote and we didn't updated it overnight - this was updated quite long time ago.
Hi we just moved a website from tempoary hosting to the main domain, we used a find and replace on the site and for some reason everything is gone on the pages. The posts are all there, images etc have resolved to the correct domain name, but we cant see our main pages. Can you help? Presently the site is back to the default install style with betheme as the logo and blank site pages.
We do not recommend the find and replace plugin. It will mess up the database. What were you planning to do with that plugin?What plugin did you use to transfer the website.
Can you make this tool able to find and replace any string instead of just http or https urls? I need to mass change a name throughout the website, I've made the change in the DB, but it doesn't change anything that was created with the muffin builder. The migrate tool throws up a error if you try anything that doesn't start with an http or https.
this could be caused either by other plugins, you should disable them. Also, check your PHP version and make sure it is up to date, like WordPress and BeTheme as well.
Modifing the database manually could have lead to errors. The database is serialized and manual change of the values is not allowed.
No, at the moment I used it with all the other plugins activated. On most pages I'm using the same plugins where the url change with the tool was working. It tells me it was success, but I had no changes.
I'm trying to do a testimonial slider, and it works correctly, but on admin, on the page where you can introduce the testimonial info, I can't see the box of content. I can see Testimonial options but nothing else.
I could see in discussions that other users had had this problem, I tried to deactivate all the plugins and also activate the main theme instead the child, but the problem persist.
Comments
In some situations (such as after syncing a db) the value is not encoded so this returns 0... and you're updating the value with this. You need to check if it's simply serialized first and if not then try to decode and unserialize:
$meta_value = @unserialize( $result->meta_value );
if ($meta_value === false) {
$meta_value = unserialize( base64_decode( $result->meta_value ) );
}
Muffin Content Builder Migrate Tool 3.0 not change backgrounds urls. Are there any latest updates to the tool, please?
Yes, it does. If something does not work on your end, please send us private request with further details.
Hi,
I'm trying to do a testimonial slider, and it works correctly, but on admin, on the page where you can introduce the testimonial info, I can't see the box of content. I can see Testimonial options but nothing else.
I could see in discussions that other users had had this problem, I tried to deactivate all the plugins and also activate the main theme instead the child, but the problem persist.
You could see how it appears:
https://www.girafadigital.com/proves/
How can fix it? Thanks a lot.