2

I setup fresh Magento 2.3 setup in my localhost. Frontend show properly but backend no options show login.
Admin panel not loading properly. Screenshot below:

enter image description here

  • I clear all caches but admin panel not loading
fmsthird
  • 4,592
  • 4
  • 17
  • 41
Gagan
  • 557
  • 13
  • 24

2 Answers2

5

This is a path issue. try editing the Validator file from vendor folder with namespace

Magento\Framework\View\Element\Template\File

At around line 138 replace code with this one

$realPath = str_replace('\\', '/',$this->fileDriver->getRealPath($path));

save then cache:flush

Then check if it works. Hope it helps

fmsthird
  • 4,592
  • 4
  • 17
  • 41
0

Could you please check What error you got in the error.log file? Enable the developer mode by using the command bin/magento deploy:mode:set developer you can get the error in screen itself if you enable the developer mode.

yuwon
  • 1
  • 1