After installing magento 2.3 admin login page cant open properly
After Installation of 2.3.3 admin login cant open then do this
Find: /vendor/magento/framework/View/Element/Template/File/Validator.php:139
find:
foreach ($directories as $directory) {
    if (0 === strpos($realPath, $directory)) {
        return true;
    }
}
Replace with:foreach ($directories as $directory) {
    $realDirectory = $this->fileDriver->getRealPath($directory);
    // and replace `$directory` with `$realDirectory`
    if (0 === strpos($realPath, $realDirectory)) {
        return true;
    }
}

No comments: