installation problem solved for magento 2.3.3

cpujjwal

Member
XNullUser
Joined
Feb 3, 2022
Messages
31
Reaction score
3
Points
8
NullCash
8
vendor/magento/framework/View/Element/Template/File/Validator.php
B. Search the following line

if (0 === strpos($realPath, $directory)) {
return true;
}
C. Replace the content with the following lines.

$realDirectory = $this->fileDriver->getRealPath($directory);
if (0 === strpos($realPath, $realDirectory)) {
return true;
}
 
Top