skip to Main Content

this is the url for /magento

this is the url for /magento/admin_as5lhc

After successfully installing the magento using composer I’am getting blank page when I hit the admin url.
I’am unable find the solution for this. I searched 100’s of ways in stackoverflow and I tried all of those way’s but still same issue.
Can somebody please help me out.

2

Answers


  1. core_config_data Table

    Try This Query

    UPDATE `core_config_data` SET `value`=1 WHERE `path` = 'dev/static/sign';
    
    UPDATE `core_config_data` SET `value`=1 WHERE `path` = 'dev/template/allow_symlink';
    
    Login or Signup to reply.
  2. Go to path /vendor/magento/framework/View/Element/Template/File/Validator.php In this file find:

    $realPath = $this->fileDriver->getRealPath($path);

    Replace with:

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

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