4

I am not able to get the location of error report while working in Magento Enterprise Edition 1.14.

I did not get anything in var folder of the site please help me.

enter image description here

7ochem
  • 7,532
  • 14
  • 51
  • 80
Pratik bhatt
  • 1,490
  • 13
  • 37
  • If you need help debugging an error I would suggest http://magento.stackexchange.com/questions/428/fundamentals-for-debugging-a-magento-store/429#429 is a great place to start – David Manners May 15 '15 at 07:04

2 Answers2

3

Your reports should be in /path/to/magento/var/report.

If your permissions aren't set up correctly magento will not be able to write there. Try chmod -R 777 /path/to/magento/var/report. The folder should be owned by the same user that PHP-FPM or Apache is running as (depending on your setup). E.g chown -R www:www /path/to/magento/var report if PHP is running as www

7ochem
  • 7,532
  • 14
  • 51
  • 80
Andrew Kett
  • 3,488
  • 1
  • 20
  • 33
2

You should see a report folder under var where you can see the file with same name as per your screenshot.

If report folder is not there then there might be the permission issue. So give the proper permission on var folder and reload the magento website.

Saurabh
  • 379
  • 2
  • 10