cancel
Showing results for 
Search instead for 
Did you mean: 

Newb installing first extension

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Newb installing first extension

I'm having trouble installing my first extension.  This is the extension I'm trying to install.

https://marketplace.magento.com/absolute-design-absolute-slider.html#product.info.details.support

 

I'm getting a "we found conflicing component discrepancies" error message in the readiness check.

 

In the PDF user guide for this extension, there's installation instructions.  Do I need to use the extension manager first, or do I need to copy the contents of the extension to my Magento app/code folder first?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Newb installing first extension

Hi @keith_vonderhul 

 

You will found the "app/code" folder at magento2 codebase root directory.

You need to create two new folders there:

"Absolute" / "AdvancedSlider" 

Create "code" under app section folder if not exist.

Paste the downloaded code there.

Attachment attached for the reference.

Screenshot from 2020-01-25 07-35-10.png

Then run the commands as @Rahul Gupta mentioned.

php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush

I hope it will help you!

View solution in original post

5 REPLIES 5

Re: Newb installing first extension

Hi @keith_vonderhul 

You can try Magento app/code folder first.

Then re-deploy all magento commands.

Re: Newb installing first extension

@keith_vonderhul don't copy the code inside app/code.

Copy all the code inside app/code/Absolute/AdvancedSlider/

 

Then run the below commands.

php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush

Let me know if you stuck anywhere.

 

Thanks

Re: Newb installing first extension

Sorry.  I don't know where to find the app/code directory.  How do I get there?

Re: Newb installing first extension

Hi @keith_vonderhul 

 

You will found the "app/code" folder at magento2 codebase root directory.

You need to create two new folders there:

"Absolute" / "AdvancedSlider" 

Create "code" under app section folder if not exist.

Paste the downloaded code there.

Attachment attached for the reference.

Screenshot from 2020-01-25 07-35-10.png

Then run the commands as @Rahul Gupta mentioned.

php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush

I hope it will help you!

Re: Newb installing first extension

Got it working.  Thanks, Vimal and Rahul!  This was very confusing at first, but now that I've done it, the next extension should be pretty easy.

 

I didn't realize that the extension files needed to be FTP'd to my server.  I now know where the "root" directory is.

 

And I didn't realize that I needed to use Terminal to enter SSH commands.

 

Thanks again!