- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Magento error de formulario login
Hola buenas tardes, hice una instalación de Magento 2.3.4, todo me funcionó bien, pero cuando voy a iniciar el formulario de login, sucede que la pantalla se queda en un background oscuro con la dirección del logín pero no pasa mas nada, no da error ni me muestra los textbox para colocar el usuario y la contraseña, mucho agradecería por su ayuda.
Saludos cordiales.
Miguel.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento error de formulario login
There might be some permission issue.
https://devdocs.magento.com/guides/v2.3/config-guide/prod/prod_file-sys-perms.html
Try the following command once:
find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento
You can use sudo as well.
If still face issue, then try following command s once to re generations.
chmod -R 0777 var/ pub/ generated/ rm -rf var/cache/* var/view_preprocessed/* generated/* pub/static/* php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush
Also Enable the error reporting from app/bootstrap.php file. Uncomment below line.
ini_set('display_errors', 1);
I hope it will help you!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento error de formulario login
Thanks for responding Vimal.
The installation was made on wamp server with windows, it is a local installation since I need to make a presentation to a client so they can decide for Magento, hence the client is going to incorporate extra payment APIs, but first I need to show magento in operation.
Otherwise I still have the problem of the login form that is not shown.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Magento error de formulario login
Hi @miguel_lozada
Okay.. does above solution helps you to make Magento working for you?