Magento2: Product backend page error The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)SQL error during installing “Charity Checkout” extentionwhen setup upgrade after add extention module, error occurError in product attribute creationModify product attribute programmatically in Magento2 (2.1.0)Error while editing product from backendMagento : Error Backend Opening ProductError after installing the auto currency switcherMagento2: Cant access customers grid on backendOrder saving error: Class NamespaceModuleObserverOrderCancelled does not existMagento 2 Error: Class does not exist
How do you keep chess fun when your opponent constantly beats you?
Is there a writing software that you can sort scenes like slides in PowerPoint?
ELI5: Why do they say that Israel would have been the fourth country to land a spacecraft on the Moon and why do they call it low cost?
Python - Fishing Simulator
How to read αἱμύλιος or when to aspirate
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Deal with toxic manager when you can't quit
Is an up-to-date browser secure on an out-of-date OS?
Button changing its text & action. Good or terrible?
Can a flute soloist sit?
Using dividends to reduce short term capital gains?
Mortgage adviser recommends a longer term than necessary combined with overpayments
Do working physicists consider Newtonian mechanics to be "falsified"?
different output for groups and groups USERNAME after adding a username to a group
What was the last x86 CPU that did not have the x87 floating-point unit built in?
Example of compact Riemannian manifold with only one geodesic.
Do warforged have souls?
should truth entail possible truth
Why can't wing-mounted spoilers be used to steepen approaches?
Would an alien lifeform be able to achieve space travel if lacking in vision?
How to determine omitted units in a publication
Huge performance difference of the command find with and without using %M option to show permissions
Is this wall load bearing? Blueprints and photos attached
Are there continuous functions who are the same in an interval but differ in at least one other point?
Magento2: Product backend page error
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)SQL error during installing “Charity Checkout” extentionwhen setup upgrade after add extention module, error occurError in product attribute creationModify product attribute programmatically in Magento2 (2.1.0)Error while editing product from backendMagento : Error Backend Opening ProductError after installing the auto currency switcherMagento2: Cant access customers grid on backendOrder saving error: Class NamespaceModuleObserverOrderCancelled does not existMagento 2 Error: Class does not exist
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I uninstalled MageWorx SEO extension and I am experiencing the following error.
Class MageWorxSeoBaseModelSourceCrossDomainStore does not exist
Checking the error report, I get this
{"0":"Class MageWorx\SeoBase\Model\Source\CrossDomainStore does not exist",
How do I fix this?
magento2 product extensions
add a comment |
I uninstalled MageWorx SEO extension and I am experiencing the following error.
Class MageWorxSeoBaseModelSourceCrossDomainStore does not exist
Checking the error report, I get this
{"0":"Class MageWorx\SeoBase\Model\Source\CrossDomainStore does not exist",
How do I fix this?
magento2 product extensions
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48
add a comment |
I uninstalled MageWorx SEO extension and I am experiencing the following error.
Class MageWorxSeoBaseModelSourceCrossDomainStore does not exist
Checking the error report, I get this
{"0":"Class MageWorx\SeoBase\Model\Source\CrossDomainStore does not exist",
How do I fix this?
magento2 product extensions
I uninstalled MageWorx SEO extension and I am experiencing the following error.
Class MageWorxSeoBaseModelSourceCrossDomainStore does not exist
Checking the error report, I get this
{"0":"Class MageWorx\SeoBase\Model\Source\CrossDomainStore does not exist",
How do I fix this?
magento2 product extensions
magento2 product extensions
asked Apr 8 at 6:21
felixnyamweyafelixnyamweya
465
465
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48
add a comment |
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48
add a comment |
2 Answers
2
active
oldest
votes
I fixed this by dropping the cross domain store
attribute from the eav_attribute
table.
add a comment |
Goto table eav_attribute and search for backend_model, frontend_model and source_model
MageWorxSeoBaseModelSourceCrossDomainStore like below:
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `frontend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `source_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
And delete those attributes if those are not magento's default attribute or place NULL instead of MageWorxSeoBaseModelSourceCrossDomainStore
Run di:compile and other required commands then test.
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%2f269081%2fmagento2-product-backend-page-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I fixed this by dropping the cross domain store
attribute from the eav_attribute
table.
add a comment |
I fixed this by dropping the cross domain store
attribute from the eav_attribute
table.
add a comment |
I fixed this by dropping the cross domain store
attribute from the eav_attribute
table.
I fixed this by dropping the cross domain store
attribute from the eav_attribute
table.
answered Apr 8 at 7:11
felixnyamweyafelixnyamweya
465
465
add a comment |
add a comment |
Goto table eav_attribute and search for backend_model, frontend_model and source_model
MageWorxSeoBaseModelSourceCrossDomainStore like below:
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `frontend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `source_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
And delete those attributes if those are not magento's default attribute or place NULL instead of MageWorxSeoBaseModelSourceCrossDomainStore
Run di:compile and other required commands then test.
add a comment |
Goto table eav_attribute and search for backend_model, frontend_model and source_model
MageWorxSeoBaseModelSourceCrossDomainStore like below:
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `frontend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `source_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
And delete those attributes if those are not magento's default attribute or place NULL instead of MageWorxSeoBaseModelSourceCrossDomainStore
Run di:compile and other required commands then test.
add a comment |
Goto table eav_attribute and search for backend_model, frontend_model and source_model
MageWorxSeoBaseModelSourceCrossDomainStore like below:
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `frontend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `source_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
And delete those attributes if those are not magento's default attribute or place NULL instead of MageWorxSeoBaseModelSourceCrossDomainStore
Run di:compile and other required commands then test.
Goto table eav_attribute and search for backend_model, frontend_model and source_model
MageWorxSeoBaseModelSourceCrossDomainStore like below:
SELECT * FROM `eav_attribute` WHERE `backend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `frontend_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
SELECT * FROM `eav_attribute` WHERE `source_model` LIKE '%MageWorxSeoBaseModelSourceCrossDomainStore%';
And delete those attributes if those are not magento's default attribute or place NULL instead of MageWorxSeoBaseModelSourceCrossDomainStore
Run di:compile and other required commands then test.
answered Apr 8 at 7:49
Sukumar GoraiSukumar Gorai
6,9803729
6,9803729
add a comment |
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%2f269081%2fmagento2-product-backend-page-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
Did you checked the class letters with folder name?...it is case sensitive
– Ranganathan
Apr 8 at 6:48