error-log
Failed Apache2 start, no error log
Syntax errors in the config file seem to cause problems. I found what the problem was by going to the directory and excuting this from the command line. httpd -e info This gave me the error Syntax error on line 156 of D:/…/Apache Software Foundation/Apache2.2/conf/httpd.conf: Invalid command ‘PHPIniDir’, perhaps misspelled or defined by a module … Read more
Where are Magento’s log files located?
You can find them in /var/log within your root Magento installation There will usually be two files by default, exception.log and system.log. If the directories or files don’t exist, create them and give them the correct permissions, then enable logging within Magento by going to System > Configuration > Developer > Log Settings > Enabled … Read more
Where can I find the error logs of nginx, using FastCGI and Django?
Errors are stored in the nginx log file. You can specify it in the root of the nginx configuration file: error_log /var/log/nginx/nginx_error.log warn; On Mac OS X with Homebrew, the log file was found by default at the following location: /usr/local/var/log/nginx