Skip to content

How to remove Magefan Blog extension

Magefan edited this page Mar 6, 2017 · 3 revisions

1. Make Full Backup

Just in case please make full backup of your Magento 2 file system & Data Base.

2. Remove Magefan_Blog files

Please connect over FTP or SSH and remove Magefan_Blog extension folder. It can be found in one of this locations:

  • path_to_your_magento2/app/code/Magefan/Blog
  • path_to_your_magento2/vendor/magefan/module-blog

3. Remove all Magefan_Blog information in the Data Base

Please run next MySql queries. You can use phpMyAdmin for this purpose.

DELETE FROM setup_module WHERE module = "Magefan_Blog";

DELETE FROM core_config_data WHERE path LIKE 'mfblog/%'

DROP TABLE IF EXISTS magefan_blog_category;

DROP TABLE IF EXISTS magefan_blog_category_store;

DROP TABLE IF EXISTS magefan_blog_post;

DROP TABLE IF EXISTS magefan_blog_post_category;

DROP TABLE IF EXISTS magefan_blog_post_relatedpost;

DROP TABLE IF EXISTS magefan_blog_post_relatedproduct;

DROP TABLE IF EXISTS magefan_blog_post_store;

DROP TABLE IF EXISTS magefan_blog_post_tag;

DROP TABLE IF EXISTS magefan_blog_tag;

4. Flush Magento Cache

Clone this wiki locally