14,959
edits
| Line 38: | Line 38: | ||
** access.log | ** access.log | ||
** error.log - record when the apache service restarted/stopped | ** error.log - record when the apache service restarted/stopped | ||
* [http://dev.mysql.com/doc/refman/5.1/en/server-logs.html MySQL Server Logs]: /var/log/mysql.log (location was set up in the configuration file /etc/my.cnf or my.ini) | |||
* [http://dev.mysql.com/doc/refman/5.1/en/server-logs.html MySQL Server Logs]: enable logging /var/log/mysql.log (location was set up in the configuration file /etc/my.cnf or my.ini) and restart MySQL service | |||
<pre> | |||
general_log = 1 | |||
general_log_file="general_log_file.log" | |||
slow_query_log = 1 | |||
slow_query_log_file="slow_query_log_file.log" | |||
</pre> | |||
* [http://www.php.net/ PHP] log: check the configuration file: /etc/php.ini (the location of configuration file can be verified by [http://php.net/manual/en/function.phpinfo.php phpinfo()] ) | * [http://www.php.net/ PHP] log: check the configuration file: /etc/php.ini (the location of configuration file can be verified by [http://php.net/manual/en/function.phpinfo.php phpinfo()] ) | ||
** unmark theese lines in the php.ini | ** unmark theese lines in the php.ini and restart Apache service | ||
<pre> | <pre> | ||
log_errors = On | log_errors = On | ||
error_log = "php_error.log" | error_log = "php_error.log" | ||
</pre> | </pre> | ||
* [http://www.iis.net/ Microsoft Internet Information Services] (IIS) log (記錄檔) | * [http://www.iis.net/ Microsoft Internet Information Services] (IIS) log (記錄檔) | ||