cancel
Showing results for 
Search instead for 
Did you mean: 

errore {{menuState.title}}

errore {{menuState.title}}

Buongiorno, ho installato magento 2.2.6. with sample date.
tutto ok, quando sono rientrata sulla pagina per eseguire la procedura guidata, mi ha dato questo errore:
{{}} MenuState.title
Quando clicco, ottengo: Errore 404: pagina non trovata.
Avete suggerimenti?
Grazie

4 REPLIES 4

Re: errore {{menuState.title}}

@danielaxyz

 

I found same issue related to:

 

Please check below links:

https://github.com/magento/magento2/issues/14880

https://github.com/magento/magento2/issues/11892

Manish Mittal
https://www.manishmittal.com/

Re: errore {{menuState.title}}

I link che mi hai inviato non risolvono il problema.

Grazie comunque.

Re: errore {{menuState.title}}

@danielaxyz

 

I installed same Magento 2.2.6 and its working perfectly here. can you please check permission of your folder structure and run Magento commands as well if that will work for you:

 

php bin/magento setup:di:compile

php bin/magento cache:flush

chmod -R 077 var/ pub/ generated/

Manish Mittal
https://www.manishmittal.com/

Re: errore {{menuState.title}}

Ciao @danielaxyz,


Sembra che ci sia un problema di autorizzazione nel tuo Magento. Si prega di eseguire il comando sotto nella directory radice di Magento

 

Per la distribuzione di contenuto statico:

php bin/magento cache:clean
php bin/magento cache:flush
php bin/magento setup:upgrade
rm -rf pub/static/frontend/* pub/static/adminhtml/* var/cache/ var/generation/ var/page_cache/ var/view_preprocessed/ var/composer_home generated/
php -dmemory_limit=6G bin/magento setup:static-content:deploy -f
chmod -Rf 777 pub/ var/
php bin/magento cache:clean

Per dare il permesso di file e directory:

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
find ./var -type d -exec chmod 777 {} \;
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

-
Se la mia risposta è utile, si prega di accettare come soluzione e dare Kudos

If my answer is useful, please Accept as Solution & give Kudos