1

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.

enter image description here

enter image description here

Please help me.

asked Aug 25, 2019 at 5:25

1 Answer 1

0

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.

Amit Bera
77.8k21 gold badges127 silver badges240 bronze badges
answered Aug 25, 2019 at 6:26
7
  • I have already tried this not getting any success. Commented Aug 25, 2019 at 6:27
  • are you using windows system ? Commented Aug 25, 2019 at 6:29
  • Yes I am using windows 10 Commented 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); } Commented Aug 25, 2019 at 6:32
  • which line I will add in index.php? Commented Aug 25, 2019 at 6:33

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.