- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2020
04:45 AM
07-07-2020
04:45 AM
Extension Manager keep loading
Labels:
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2020
06:03 AM
07-07-2020
06:03 AM
Re: Extension Manager keep loading
Reloaded a backup edition of my site and this now seems to be working. Seems to be down to an extension that I installed via composer which was not agreeing with the magento system.
After some additional research this issue could be caused by the repositories in the composer.json file. Removing all but the primary repository seems to fix the issue.
An example is given below.
Before:
"repositories": { "0": { "type": "composer", "url": "https://repo.magento.com/" }, "data-migration-tool": { "type": "git", "url": "https://github.com/magento/data-migration-tool" } }
After:
"repositories": [ { "type": "composer", "url": "https://repo.magento.com/" } ]
It may help you to resolve issue.
If issue resolve, please click on 'Kudos' & Accept as Solution!
Problem solved? Click Accept as Solution!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2020
06:28 AM
07-07-2020
06:28 AM
Re: Extension Manager keep loading
Can I keep this?
"version": "2.3.5-p1",
"minimum-stability": "stable",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"extra": {
"magento-force": "override"
}