skip to Main Content

I have installed magento 2 several times now and I keep getting the same result.
Of a sparse home screen and no login form for the admin page, only the brown background.
Front end page

enter image description here

Admin page (notice the correct brown background but no form, and it is not hidden I did check the dev tools
enter image description here

I have looked at the error logs and followed instructions

I am running windows 10 and using xampp. The database is created and so are the tables, but they are empty. Does someone know how to fix this? Is it a permission issue?

2

Answers


  1. If your database is empty, i think you need reinstall it.

    But first You recommended enable a couple of debugging options:

    • php.ini
      • error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
      • display_errors = On
      • log_errors = On
      • error_log = c:[some.where]php_errors.log
    • Magento 2 (debug/dev) settings
      • app/etc/env.php: MAGE_MODE set to developer (‘MAGE_MODE’ => ‘developer’)
      • check permissions (project_root/generated, project_root/var/*)
      • check your htaccess file
      • clear cache from cli

    And check your Magento project_root/var/log/system.log file for errors. (and all log files)

    Login or Signup to reply.
  2. Try installing Magento again and don’t forget to include sample data. Follow the instructions provided on the following page:

    https://www.mageplaza.com/kb/how-to-install-magento-2.html

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search