cancel
Showing results for 
Search instead for 
Did you mean: 

Nuovo in magento 2

Nuovo in magento 2

Salve a tutti, ho un problema, ho acquistato un tema con quickstart e dati demo e sto cercando di configurarlo . Da premettere che il mio hosting ha tutti i requisiti per l'installazione (ho un'altra copia di magento già attiva la 2.4 installata da installatron. quando metto il quickstart nella cartella public html, e lancio il setup, sempre lo stesso errore Internal server. Vengo da perstashop e ricordo che quando inserivo un quickstart nel server, bastava poi modificare il file parameters con i dati del db e adare a modificare gli url nel db. Anche in magento funziona cosi'? Grazie a tutti

1 REPLY 1

Re: Nuovo in magento 2

@mgroovy can you share the screenshot of the extension folder so that i can give you suggestion of where to copy all the contents.

 

If the extension has app folder then copy all the content inside public_html but if it has only design folder then copy the content inside app folder.

 

After that once you have copy all the content, add the below code inside index.php which you found inside public_html folder.

 

ini_set('display_errors',1);

After that run the below commands

find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x 

chmod 777 -R pub/static/ var/
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush
chmod -R 777 var pub/static

Hope it helps!

 

Thanks