I am trying to install the slider extension in Magento 2 on ubuntu manually. I am new to Magento, if anyone has a solution please let me know.
Thanks.
I am trying to install the slider extension in Magento 2 on ubuntu manually. I am new to Magento, if anyone has a solution please let me know.
Thanks.
2
Answers
Copy the extension code to app/code/[EXTENSION_PROVIDER]/[EXTENSION_NAME] (create the
directories). You can find exactly the extension provider and name inside the
module/registration.php.
MagentoFrameworkComponentComponentRegistrar::register(
MagentoFrameworkComponentComponentRegistrar::MODULE,
‘PROVIDER_NAME‘,
add and customize your slide.
That’s it
Copy contents of the extension to your Magento app/code folder. Once completed, the folder
structure should be “app/code/[vendor_name]/[module_name]” (without quotes and square brackets).
VENDOR_NAME and MODULE_NAME, you can find from module/registration.php
Example :-
VENDOR_NAME :- Invigorate
MODULE_NAME :- Imageslider
In the command line console (in the magento root directory), run bin/magento setup:upgrade to
enable and install the module.
Flush your Magento caches, e.g. bin/magento cache:flush
The module is now installed. Please login to the admin to verify.
you can check if module is installed and enabled by bin/magento module:status Invigorate_Imageslider