I am installed Magento 2.3.x in windows 10 using XAMPP backend and frontend not load properly.
I was installed much time and also I have run all Magento command but did not get any success.
Please help me.
asked Aug 25, 2019 at 5:25
1 Answer 1
Looks like you need to deploy theme. Run the following command.
php -d memory_limit=-1 bin/magento setup:static-content:deploy -f
After doing this, if you get a blank page then restart xampp. It will work.
answered Aug 25, 2019 at 6:26
-
I have already tried this not getting any success.Sweety Masmiya– Sweety Masmiya2019年08月25日 06:27:48 +00:00Commented Aug 25, 2019 at 6:27
-
are you using windows system ?Surendra Mishra– Surendra Mishra2019年08月25日 06:29:39 +00:00Commented Aug 25, 2019 at 6:29
-
Yes I am using windows 10Sweety Masmiya– Sweety Masmiya2019年08月25日 06:30:29 +00:00Commented Aug 25, 2019 at 6:30
-
Windows is not compatible to magento 2. Add these line of code in you index.php file which is on root to see the error in detail. ini_set('display_errors', 'on'); ini_set('error_reporting', E_ERROR); error_reporting(E_ALL); ini_set('display_startup_errors',1); ini_set('display_errors',1); error_reporting(-1); register_shutdown_function("fatal_handler"); function fatal_handler() { $error = error_get_last(); echo("<pre>"); print_r($error); }Surendra Mishra– Surendra Mishra2019年08月25日 06:32:18 +00:00Commented Aug 25, 2019 at 6:32
-
which line I will add in index.php?Sweety Masmiya– Sweety Masmiya2019年08月25日 06:33:39 +00:00Commented Aug 25, 2019 at 6:33
Explore related questions
See similar questions with these tags.
default