2

I tried to run Magento(CE) 2.1.0 in my localhost but it seems that my checkout page isn't displaying anything, just header and footer.

I am new to magentoif anyone could help that would be great.

This is my checkout page: This is the screenshot

Ismael Jhon
  • 21
  • 1
  • 5

4 Answers4

4

If you are using wamp server on windows localhost then,

you can try this:

C:\wamp\bin\php\php5.5.12>php.exe C:\wamp\www\\bin\magento setup:static-content:deploy

in your CLI.

MaYaNk
  • 1,730
  • 1
  • 16
  • 27
1

You have to first remove all files and folder from pub/static folder content.

Remove var folder.

Run command

php bin/magento setup:static-content:deploy

Clear Browser cache.

Try again.

Rakesh Jesadiya
  • 42,221
  • 18
  • 132
  • 183
0

In vendor\magento\framework\Locale\Format.php comment out line 112 and add

//$defaultSet = $localeData['NumberElements']['default'] ?:       self::$defaultNumberSet;
  $defaultSet = self::$defaultNumberSet;
Anna
  • 1,645
  • 2
  • 24
  • 47
0

Go to admin panel side

system -> cache management -> Flush Cache Storage.

enter image description here

after that change the permission to www-data or root

sudo chown -R www-data:www-data magentoApplication/

Arshad Syed
  • 553
  • 5
  • 14