cancel
Showing results for 
Search instead for 
Did you mean: 

Error! You need to resolve these issues to continue.

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

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

Error! You need to resolve these issues to continue.

When trying to install an extension in magento, I get an error in the cron script, and I do not know how to solve it, I tried to look in the documentation, but there seems to be nothing wrong

 

4.JPG 5.JPG

 

thanks!

1 REPLY 1

Re: Error! You need to resolve these issues to continue.

Hello @fanny_campos 

 

You are this is file permissions issues of your folders and files.

Please set the below permissions to the files and folders.

 

cd <your Magento install dir> 
find . -type f -exec chmod 644 {} \;                        // 644 permission for files
find . -type d -exec chmod 755 {} \;                        // 755 permission for directory 
find ./var -type d -exec chmod 777 {} \;                // 777 permission for var folder    
find ./pub/media -type d -exec chmod 777 {} \;
find ./pub/static -type d -exec chmod 777 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml

If you got a proper solution, please Accept as Solution & Click Kudos.