config.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. ################################################################################
  3. ## OpenWebStats Version 1.0 ##
  4. ## ##
  5. ## (c)2005 mathews_dm - <Davidmathews@open-creations.com> ##
  6. ## ##
  7. ################################################################################
  8. ## Please read the README! ##
  9. ################################################################################
  10. ##########################################
  11. ## Define Globals for OpenWebStats ##
  12. ##########################################
  13. global $openstats_web_dir, $databasename;
  14. if (!defined("logformat_combined"))
  15. {
  16. define("logformat_combined", "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"", TRUE);
  17. define("logformat_combined_vhost", "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"", TRUE);
  18. define("logformat_common" , "%h %l %u %t \"%r\" %>s %b", TRUE);
  19. define("logformat_referer" , "%{Referer}i -> %U", TRUE);
  20. define("logformat_agent" , "%{User-agent}i", TRUE);
  21. }
  22. ##########################################
  23. ## Database information below here ##
  24. ##########################################
  25. $databaselocation = 'localhost';
  26. $databaseport = '3306';
  27. $databasename = 'ows';
  28. $databaseuser = 'ows';
  29. $databasepass = 'pass';
  30. $db_connect = mysql_connect($databaselocation, $databaseuser, $databasepass);
  31. mysql_select_db($databasename, $db_connect);
  32. ##########################################
  33. ## Logfile and Logformat are for the db ##
  34. ## import in the class_apache file. ##
  35. ## $openstatsdir is the install dir on ##
  36. ## your system. ##
  37. ##########################################
  38. $openstats_web_dir = '/openwebstats'; // Remember to include the stats dir
  39. $logfile = "/var/log/apache2/access_log";
  40. $logformat = logformat_combined; //example: $logformat = logformat_combined_vhost;
  41. ?>