cancel
Showing results for 
Search instead for 
Did you mean: 

how to find all installed paid extensions from backend or front end

how to find all installed paid extensions from backend or front end

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. 

 

 

4 REPLIES 4

Re: how to find all installed paid extensions from backend or front end

@aromalcarm216b 

You can see the third-party extension from the backend.
 
If the extension is payment related then you can review it from 
strores > configuration > sales > payment methods
 
If it's other kind of extension then you can review it under store > configuration > Company name.
and if you've rights to refer to the code or detail, then go to app > etc >config.php. Here you can find the list of paid extensions
In the database, it reside on setup_module 
Problem solved? Click Kudos and "Accept as Solution".
200+ Magento 2 Extensions for Enhanced Shopping Experience.

Re: how to find all installed paid extensions from backend or front end

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/

Re: how to find all installed paid extensions from backend or front end

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.

Anees

Re: how to find all installed paid extensions from backend or front end

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.