phpOpenTracker/phpOpenTracker/conf phpOpenTracker.php.dist,1.3.2.1.2.1,1.3.2.1.2.2
Sebastian Bergmann <[email protected]> Fri, 12 Mar 2004 14:50:54 +0000
| Newsgroups | gmane.comp.web.phpopentracker.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/phpopencounter/phpOpenTracker/phpOpenTracker/conf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv320/phpOpenTracker/conf
Modified Files:
Tag: phpOpenTracker_1_4
phpOpenTracker.php.dist
Log Message:
MFH
Index: phpOpenTracker.php.dist
===================================================================
RCS file: /cvsroot/phpopencounter/phpOpenTracker/phpOpenTracker/conf/Attic/phpOpenTracker.php.dist,v
retrieving revision 1.3.2.1.2.1
retrieving revision 1.3.2.1.2.2
diff -C2 -d -r1.3.2.1.2.1 -r1.3.2.1.2.2
*** phpOpenTracker.php.dist 24 Jan 2004 20:01:22 -0000 1.3.2.1.2.1
--- phpOpenTracker.php.dist 12 Mar 2004 14:50:51 -0000 1.3.2.1.2.2
***************
*** 21,25 ****
//
! $config = &phpOpenTracker_Config::getConfig();
/**
--- 21,25 ----
//
! $PHPOPENTRACKER_CONFIGURATION = &phpOpenTracker_Config::getConfig();
/**
***************
*** 37,111 ****
// Database Type
// Available values: 'mssql', 'mysql', 'oci8', 'pgsql'
! // $config['db_type'] = 'mysql';
// The host of your database server
! // $config['db_host'] = 'localhost';
// The port your database server listens on
! // $config['db_port'] = 'default';
// The socket your database server uses
! // $config['db_socket'] = 'default';
// Username to connect with to your database server
! // $config['db_user'] = 'root';
// Password to connect with to your database server
! // $config['db_password'] = '';
// Name of the database to use.
! // $config['db_database'] = 'phpOpenTracker';
// Name of the Additional Data Table
// Default: 'pot_add_data'
! // $config['additional_data_table'] = 'pot_add_data';
// Name of the Access Log Table
// Default: 'pot_accesslog'
! // $config['accesslog_table'] = 'pot_accesslog';
// Name of the Documents Table
// Default: 'pot_documents'
! // $config['documents_table'] = 'pot_documents';
// Name of the Exit Targets Table
// Default: 'pot_exit_targets'
! // $config['exit_targets_table'] = 'pot_exit_targets';
// Name of the Hostnames Table
// Default: 'pot_hostnames'
! // $config['hostnames_table'] = 'pot_hostnames';
// Name of the Operating Systems Table
// Default: 'pot_operating_systems'
! // $config['operating_systems_table'] = 'pot_operating_systems';
// Name of the Referers Table
// Default: 'pot_referers'
! // $config['referers_table'] = 'pot_referers';
// Name of the User Agents Table
// Default: 'pot_user_agents'
! // $config['user_agents_table'] = 'pot_user_agents';
// Name of the Visitors Table
// Default: 'pot_visitors'
! // $config['visitors_table'] = 'pot_visitors';
//
! // $config['merge_tables_threshold'] = 6;
//
! // $config['delay_key_write'] = false;
// Name of the environment variable to be used to
// determine the current document.
// For instance, 'PATH_INFO' or 'REQUEST_URI' are possible here.
! // $config['document_env_var'] = 'REQUEST_URI';
// When enabled, phpOpenTracker will strip away all HTTP GET
// parameters from the referer's URL before it gets stored
// in the database.
! // $config['clean_referer_string'] = false;
// When enabled, phpOpenTracker will strip away all HTTP GET
--- 37,111 ----
// Database Type
// Available values: 'mssql', 'mysql', 'oci8', 'pgsql'
! // $PHPOPENTRACKER_CONFIGURATION['db_type'] = 'mysql';
// The host of your database server
! // $PHPOPENTRACKER_CONFIGURATION['db_host'] = 'localhost';
// The port your database server listens on
! // $PHPOPENTRACKER_CONFIGURATION['db_port'] = 'default';
// The socket your database server uses
! // $PHPOPENTRACKER_CONFIGURATION['db_socket'] = 'default';
// Username to connect with to your database server
! // $PHPOPENTRACKER_CONFIGURATION['db_user'] = 'root';
// Password to connect with to your database server
! // $PHPOPENTRACKER_CONFIGURATION['db_password'] = '';
// Name of the database to use.
! // $PHPOPENTRACKER_CONFIGURATION['db_database'] = 'phpOpenTracker';
// Name of the Additional Data Table
// Default: 'pot_add_data'
! // $PHPOPENTRACKER_CONFIGURATION['additional_data_table'] = 'pot_add_data';
// Name of the Access Log Table
// Default: 'pot_accesslog'
! // $PHPOPENTRACKER_CONFIGURATION['accesslog_table'] = 'pot_accesslog';
// Name of the Documents Table
// Default: 'pot_documents'
! // $PHPOPENTRACKER_CONFIGURATION['documents_table'] = 'pot_documents';
// Name of the Exit Targets Table
// Default: 'pot_exit_targets'
! // $PHPOPENTRACKER_CONFIGURATION['exit_targets_table'] = 'pot_exit_targets';
// Name of the Hostnames Table
// Default: 'pot_hostnames'
! // $PHPOPENTRACKER_CONFIGURATION['hostnames_table'] = 'pot_hostnames';
// Name of the Operating Systems Table
// Default: 'pot_operating_systems'
! // $PHPOPENTRACKER_CONFIGURATION['operating_systems_table'] = 'pot_operating_systems';
// Name of the Referers Table
// Default: 'pot_referers'
! // $PHPOPENTRACKER_CONFIGURATION['referers_table'] = 'pot_referers';
// Name of the User Agents Table
// Default: 'pot_user_agents'
! // $PHPOPENTRACKER_CONFIGURATION['user_agents_table'] = 'pot_user_agents';
// Name of the Visitors Table
// Default: 'pot_visitors'
! // $PHPOPENTRACKER_CONFIGURATION['visitors_table'] = 'pot_visitors';
//
! // $PHPOPENTRACKER_CONFIGURATION['merge_tables_threshold'] = 6;
//
! // $PHPOPENTRACKER_CONFIGURATION['delay_key_write'] = false;
// Name of the environment variable to be used to
// determine the current document.
// For instance, 'PATH_INFO' or 'REQUEST_URI' are possible here.
! // $PHPOPENTRACKER_CONFIGURATION['document_env_var'] = 'REQUEST_URI';
// When enabled, phpOpenTracker will strip away all HTTP GET
// parameters from the referer's URL before it gets stored
// in the database.
! // $PHPOPENTRACKER_CONFIGURATION['clean_referer_string'] = false;
// When enabled, phpOpenTracker will strip away all HTTP GET
***************
*** 113,117 ****
// database.
// A Session ID will be stripped from the URL in either case.
! // $config['clean_query_string'] = false;
// While enabling clean_query_string to will clean the
--- 113,117 ----
// database.
// A Session ID will be stripped from the URL in either case.
! // $PHPOPENTRACKER_CONFIGURATION['clean_query_string'] = false;
// While enabling clean_query_string to will clean the
***************
*** 119,186 ****
// with the get_parameter_filter array a list of HTTP GET
// parameters that you would like to be stripped from the URL.
! // $config['get_parameter_filter'] = '';
// Resolving of the hostname can be turned off.
! // $config['resolve_hostname'] = true;
// Grouping of hostnames can be turned off.
! // $config['group_hostnames'] = true;
// Grouping and parsing of user agents can be turned off.
! // $config['group_user_agents'] = true;
// Detect and log returning visitors.
! // $config['track_returning_visitors'] = false;
// Name of the cookie to use for returning visitors detection.
! // $config['returning_visitors_cookie'] = 'pot_visitor_id';
// The 'returning_visitors_cookie' cookie expires after
// 'returning_visitors_cookie_lifetime' days.
! // $config['returning_visitors_cookie_lifetime'] = 365;
// With this directive you can turn on or off the locking of
// certain IPs and/or user agents.
! // $config['locking'] = false;
// With this directive you can turn on or off the logging of
// reloaded documents.
! // $config['log_reload'] = false;
// The path to your JPGraph installation.
! // $config['jpgraph_path'] = '';
// With this directive you can define the names, separated by commas,
// of plugins for the phpOpenTracker Logging Engine, that should be
// loaded.
! // $config['logging_engine_plugins'] = '';
// When enabled, the result of a phpOpenTracker API query which is
// limited to a timerange that lies completely in the past will be
// stored in a cache.
! // $config['query_cache'] = false;
// The directory where the phpOpenTracker API Query Cache should
// store its files.
! // $config['query_cache_dir'] = '/tmp';
// The lifetime of a phpOpenTracker API Query Cache entry in seconds.
! // $config['query_cache_lifetime'] = 3600;
// 0: Don't output error and warning messages.
// 1: Output error and warning messages. (default)
// 2: Output additional debugging messages.
! // $config['debug_level'] = 1;
// When enabled, phpOpenTracker will exit on fatal errors.
! // $config['exit_on_fatal_errors'] = true;
// When enabled, phpOpenTracker will log debugging, error and warning
// messages to a logfile.
! // $config['log_errors'] = false;
// Mapping of client ids to client names.
// Currently only used by the simple_report example application.
! // $config['clients'][1] = $_SERVER['HTTP_HOST'];
//
--- 119,186 ----
// with the get_parameter_filter array a list of HTTP GET
// parameters that you would like to be stripped from the URL.
! // $PHPOPENTRACKER_CONFIGURATION['get_parameter_filter'] = '';
// Resolving of the hostname can be turned off.
! // $PHPOPENTRACKER_CONFIGURATION['resolve_hostname'] = true;
// Grouping of hostnames can be turned off.
! // $PHPOPENTRACKER_CONFIGURATION['group_hostnames'] = true;
// Grouping and parsing of user agents can be turned off.
! // $PHPOPENTRACKER_CONFIGURATION['group_user_agents'] = true;
// Detect and log returning visitors.
! // $PHPOPENTRACKER_CONFIGURATION['track_returning_visitors'] = false;
// Name of the cookie to use for returning visitors detection.
! // $PHPOPENTRACKER_CONFIGURATION['returning_visitors_cookie'] = 'pot_visitor_id';
// The 'returning_visitors_cookie' cookie expires after
// 'returning_visitors_cookie_lifetime' days.
! // $PHPOPENTRACKER_CONFIGURATION['returning_visitors_cookie_lifetime'] = 365;
// With this directive you can turn on or off the locking of
// certain IPs and/or user agents.
! // $PHPOPENTRACKER_CONFIGURATION['locking'] = false;
// With this directive you can turn on or off the logging of
// reloaded documents.
! // $PHPOPENTRACKER_CONFIGURATION['log_reload'] = false;
// The path to your JPGraph installation.
! // $PHPOPENTRACKER_CONFIGURATION['jpgraph_path'] = '';
// With this directive you can define the names, separated by commas,
// of plugins for the phpOpenTracker Logging Engine, that should be
// loaded.
! // $PHPOPENTRACKER_CONFIGURATION['logging_engine_plugins'] = '';
// When enabled, the result of a phpOpenTracker API query which is
// limited to a timerange that lies completely in the past will be
// stored in a cache.
! // $PHPOPENTRACKER_CONFIGURATION['query_cache'] = false;
// The directory where the phpOpenTracker API Query Cache should
// store its files.
! // $PHPOPENTRACKER_CONFIGURATION['query_cache_dir'] = '/tmp';
// The lifetime of a phpOpenTracker API Query Cache entry in seconds.
! // $PHPOPENTRACKER_CONFIGURATION['query_cache_lifetime'] = 3600;
// 0: Don't output error and warning messages.
// 1: Output error and warning messages. (default)
// 2: Output additional debugging messages.
! // $PHPOPENTRACKER_CONFIGURATION['debug_level'] = 1;
// When enabled, phpOpenTracker will exit on fatal errors.
! // $PHPOPENTRACKER_CONFIGURATION['exit_on_fatal_errors'] = true;
// When enabled, phpOpenTracker will log debugging, error and warning
// messages to a logfile.
! // $PHPOPENTRACKER_CONFIGURATION['log_errors'] = false;
// Mapping of client ids to client names.
// Currently only used by the simple_report example application.
! // $PHPOPENTRACKER_CONFIGURATION['clients'][1] = $_SERVER['HTTP_HOST'];
//
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click