Hi,
Hope all of you are keeping safe,
I have received access to a magento 2 install of a friend of mine. The previous development team has installed extensions and configured it. Now they are out of business and we are not able to get the login to extensions portal from where the plugins were bought.
Can you tell me what would be the best way to retrieve this info. I have serve and admin backend. Thanks in advance.
Hey @aromalcarm216b
you can easily manage third-party module settings in the Magento configuration section.
Stores->Configuration
you can check out this link if you want to buy any module/Extension
https://marketplace.magento.com/extensions.html
https://cedcommerce.com/
If you just want to check which extensions have installed in system you can check it in App/config.php.In case if you required login access for extension website.Then you must aware of email which use for account creation.So in this way you can reset the password by forgoting password.
To check the all third party and Magento extension please go to the below path
app/etc/config.php file here you get all extension that is installed in your Magento, No matter that is enabled or disabled.
Or
you can run the following command on the Magento root directory.
bin/magento module:status
Using the above command you can see all the enabled and disabled extensions.
Thanks.