0

After installing Magento 2.0.4 version, it logged in properly but products, system and other options on dashboard are not accessible. When I click on product it is not responding, same with other. I am unable to find any solution for it.

Can anyone guide me on this please?

Toan Nguyen
  • 3,049
  • 1
  • 24
  • 45
NS123
  • 35
  • 4

2 Answers2

1

Go to your magento root /app/etc/di.xml line number 574 approximately and change the code

        <item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink</item>

To

<item name="view_preprocessed" xsi:type="object">Magento\Framework\App\View\Asset\MaterializationStrategy\Copy</item>

Remove cache , try it again.

Hope it helps.

Krishna ijjada
  • 8,927
  • 6
  • 41
  • 70
  • I need more help my new magento version is not accepting css i think – NS123 Apr 25 '16 at 10:52
  • it is displaying without css only normal text bot front end and backend dashboard – NS123 Apr 25 '16 at 10:53
  • Cool, try php bin/magento setup:static-content:deploy as well as follow @sagar http://magento.stackexchange.com/questions/64857/css-and-javascript-files-are-not-loading-after-magento-2-installation – Krishna ijjada Apr 25 '16 at 11:07
  • My rewrite module is enabled and i cleared all cache from var/cache but i don't understand how to do this "php bin/magento setup:static-content:deploy" – NS123 Apr 25 '16 at 11:41
  • Hey, when i changed the permission to 755 the css worked but again the products and other options on dashboard is not working like befor. after replacing your code <item...copy> it was working but now when css worked options in backend stopped working. – NS123 Apr 25 '16 at 12:00
  • You have to install or upgrade Magento 2 by composer. i think some files are missing, try to install it again with fresh code by using composer. – Krishna ijjada Apr 25 '16 at 12:08
  • Hi i am trying to install it on cpanel. so i download the latest magento from magento website and put the files in cpanel. is it not correct? – NS123 Apr 25 '16 at 12:19
0

Run the following in the command prompt:

php bin/magento setup:static-content:deploy

It will load necessary css and images. Then try logging into admin. It works.

Hope this helps