Uninstall Magento 2.3 module (including database data) Getting Exceptions Errordesign_config_grid_flat' doesn't existWhy do i have to always run the commands to clean cache in Magento 2.1.8?I installed mageplaza smtp extension on m2 EE 2.2.3 (via composer)Magneto2 CatalogSearchMagento 2.1.3: Overriding of vendor layout file with my custom layout file in Magento 2.1.3 is not working?Magento 2: Magento UI is not working properly. After deleting all productsWhen using Magento 2 the admin panel buttons are un-responsiveMy custom module working fine in Magento 2 all version (2.1 to 2.3) expected 2.0 anyone has any idea?Error while running bin/magento setup:di:compileOverwrite magento_theme adminhtml ui_component xml file
Fix /dev/sdb after using dd with no device inserted
Measuring mystery distances
Why the term 'unified' in "unified mass unit"?
Construct a pentagon avoiding compass use
How to make 1,1-diphenyl-1-butene from benzophenone and 1-bromopropane?
P-MOSFET failing
TikZ Can I draw an arrow by specifying the initial point, direction, and length?
Alternatives to using writing paper for writing practice
Won 50K! Now what should I do with it
Find the wrong number in the given series: 6, 12, 21, 36, 56, 81?
Should you avoid redundant information after dialogue?
Why would guns not work in the dungeon?
Why does the trade federation become so alarmed upon learning the ambassadors are Jedi Knights?
Where is my understanding of TikZ styles wrong?
Back to the nineties!
Was the Ford Model T black because of the speed black paint dries?
Cubic programming and beyond?
Professor falsely accusing me of cheating in a class he does not teach, two months after end of the class. What precautions should I take?
Did any of the founding fathers anticipate Lysander Spooner's criticism of the constitution?
How can an advanced civilization forget how to manufacture its technology?
A DVR algebra with weird automorphisms
Help with understanding nuances of extremely popular Kyoto-ben (?) tweet
How to convert 1k to 1000 and 1m to 1000000 in Excel
Rearranging the formula
Uninstall Magento 2.3 module (including database data) Getting Exceptions Error
design_config_grid_flat' doesn't existWhy do i have to always run the commands to clean cache in Magento 2.1.8?I installed mageplaza smtp extension on m2 EE 2.2.3 (via composer)Magneto2 CatalogSearchMagento 2.1.3: Overriding of vendor layout file with my custom layout file in Magento 2.1.3 is not working?Magento 2: Magento UI is not working properly. After deleting all productsWhen using Magento 2 the admin panel buttons are un-responsiveMy custom module working fine in Magento 2 all version (2.1 to 2.3) expected 2.0 anyone has any idea?Error while running bin/magento setup:di:compileOverwrite magento_theme adminhtml ui_component xml file
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to uninstall some modules in my Magento 2.3.1, I followed the following steps:
Remove the module Vendor_% from appetcconfig.php
Drop module tables or columns from database, please check appcodeVendorModuleSetup folder for more information
Remove the folder appcodevendor/%
Remove module configuration settings from core_config_data table by running the following query
DELETE FROM core_config_data WHERE path LIKE 'vendor%';
Remove module from setup_module table by running the following query
DELETE FROM setup_module WHERE module LIKE 'vendor_%';
SSH Server
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
The problem is that after doing all this I receive the following error message:
Any idea how I can fix this problem?
UPDATE 1
Now I have the following error, but nothing appears in table eav_attribute, any idea of how to fix it?
magento2 database uninstall-module
add a comment |
I am trying to uninstall some modules in my Magento 2.3.1, I followed the following steps:
Remove the module Vendor_% from appetcconfig.php
Drop module tables or columns from database, please check appcodeVendorModuleSetup folder for more information
Remove the folder appcodevendor/%
Remove module configuration settings from core_config_data table by running the following query
DELETE FROM core_config_data WHERE path LIKE 'vendor%';
Remove module from setup_module table by running the following query
DELETE FROM setup_module WHERE module LIKE 'vendor_%';
SSH Server
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
The problem is that after doing all this I receive the following error message:
Any idea how I can fix this problem?
UPDATE 1
Now I have the following error, but nothing appears in table eav_attribute, any idea of how to fix it?
magento2 database uninstall-module
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41
add a comment |
I am trying to uninstall some modules in my Magento 2.3.1, I followed the following steps:
Remove the module Vendor_% from appetcconfig.php
Drop module tables or columns from database, please check appcodeVendorModuleSetup folder for more information
Remove the folder appcodevendor/%
Remove module configuration settings from core_config_data table by running the following query
DELETE FROM core_config_data WHERE path LIKE 'vendor%';
Remove module from setup_module table by running the following query
DELETE FROM setup_module WHERE module LIKE 'vendor_%';
SSH Server
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
The problem is that after doing all this I receive the following error message:
Any idea how I can fix this problem?
UPDATE 1
Now I have the following error, but nothing appears in table eav_attribute, any idea of how to fix it?
magento2 database uninstall-module
I am trying to uninstall some modules in my Magento 2.3.1, I followed the following steps:
Remove the module Vendor_% from appetcconfig.php
Drop module tables or columns from database, please check appcodeVendorModuleSetup folder for more information
Remove the folder appcodevendor/%
Remove module configuration settings from core_config_data table by running the following query
DELETE FROM core_config_data WHERE path LIKE 'vendor%';
Remove module from setup_module table by running the following query
DELETE FROM setup_module WHERE module LIKE 'vendor_%';
SSH Server
php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento indexer:reindex
php bin/magento cache:clean
php bin/magento cache:flush
The problem is that after doing all this I receive the following error message:
Any idea how I can fix this problem?
UPDATE 1
Now I have the following error, but nothing appears in table eav_attribute, any idea of how to fix it?
magento2 database uninstall-module
magento2 database uninstall-module
edited yesterday
Despotars
asked Jul 5 at 12:15
DespotarsDespotars
10613 bronze badges
10613 bronze badges
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41
add a comment |
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41
add a comment |
1 Answer
1
active
oldest
votes
Run below query in MySQL its issue comming due to attribute exist in database.
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE 'RokanthemesCategorytabModelCategoryAttributeBackendThumbnailimage'
Then delete that row it will fixed issue.
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f280975%2funinstall-magento-2-3-module-including-database-data-getting-exceptions-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Run below query in MySQL its issue comming due to attribute exist in database.
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE 'RokanthemesCategorytabModelCategoryAttributeBackendThumbnailimage'
Then delete that row it will fixed issue.
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
add a comment |
Run below query in MySQL its issue comming due to attribute exist in database.
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE 'RokanthemesCategorytabModelCategoryAttributeBackendThumbnailimage'
Then delete that row it will fixed issue.
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
add a comment |
Run below query in MySQL its issue comming due to attribute exist in database.
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE 'RokanthemesCategorytabModelCategoryAttributeBackendThumbnailimage'
Then delete that row it will fixed issue.
Run below query in MySQL its issue comming due to attribute exist in database.
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE 'RokanthemesCategorytabModelCategoryAttributeBackendThumbnailimage'
Then delete that row it will fixed issue.
answered Jul 5 at 12:46
Ansar HusainAnsar Husain
1,8713 silver badges18 bronze badges
1,8713 silver badges18 bronze badges
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
add a comment |
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Yes! Thank you very much!!! :-)
– Despotars
Jul 8 at 5:48
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
Hi, I have another error (you can see my update in my question), but nothing appears in table eav_attribute, any idea of how to fix it?
– Despotars
yesterday
1
1
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
@Despotars check this in same table with frontend_model column
– Ansar Husain
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
ok thanks! Finally there were more rows that can be detected by the source_model column. Thank you very much again! :)
– Despotars
yesterday
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f280975%2funinstall-magento-2-3-module-including-database-data-getting-exceptions-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Delete generated folder, clear cache and run "bin/magento setup:upgrade --keep-generated" and let me know if that works. Please cross verify that no other module was dependent on the module you uninstalled.
– Rishabh Dwivedi
Jul 5 at 12:41