Magento – Issue with Magento 2.3.0 Installation

magento2.3.0

I have installed magento 2.3.0 with sample data successfully. backend screen is black and blank. Also not getting any thing on frontend just links are displaying and can view pages. forms, products not displaying.

Best Answer

For Magento 2.3 there is issue with "\"

/vendor/magento/framework/View/Element/Template/File/Validator.php In above file find

$realPath = $this->fileDriver->getRealPath($path); // approx 114 line

Replace with

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

I hope this will help you.

Related Topic