Subversion Repositories logviewer

Rev

Rev 2 | Rev 4 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. define('COUNT', 200);
  4.  
  5. define('MAXYEARS', 1);
  6.  
  7. #define('apache_log_locations', array('/home/*/log/error*.log*', '/home/*/hosts/*/log/error*.log*', '/daten/admin/_probleme/php_codefixer/all_php_files.out'));
  8. define('apache_log_locations', array('/daten/admin/_probleme/php_codefixer/all_php_files.out'));
  9.  
  10. define('php_log_locations', array('/home/*/log/php_error*.log*', '/home/*/hosts/*/log/php_error*.log*'/* , '/var/log/php/error.log*' */));
  11.  
  12. // 0 = No source is displayed
  13. // 1 = Columns "source" (=logfile) and "module" (module)
  14. // 2 = Column "user" which tries to find out the user's home dir from the logfile
  15. define('SOURCE_STYLE', 2);
  16.  
  17. // Don't look at .gz files. But if you enable it, then it is important that you run insert_logs before log-rotating.
  18. define('IGNORE_GZ', false);
  19.  
  20. define('MAX_DAYS_LOGFILE', 30); // only read the logfiles of the last 30 days
  21.