<?php
/**
 * PLUG Configuration.
 * Example site/server configuration for a PLUG integration
 */

 
/** Global error reporting level */
define('PLUG_ERROR_REPORTING'E_ALL E_NOTICE );  

/** Level of errors to be logged to standard error log */
define('PLUG_ERROR_LOGGING'E_ALL );

/** Virtual host directory */
define('PLUG_HOST_DIR''/Users/someuser/somehost' );

/** Virtual document root directory */
define('PLUG_VIRTUAL_DIR''/Users/someuser/somehost/httpdocs' );

/** temporary directory */
define('PLUG_TMP_DIR''/var/tmp' );

/** Standard base URL for main site */
define('PLUG_HTTP_ADDR''http://somehost');

/** Secure base URL if available */
define('PLUG_HTTPS_ADDR''https://somehost');


# Common Database configuration
#
 
/** string Data source that holds core tables */
define('PLUG_DB_NAME',  'somedsn'); 

/** string Database user name that can access required tables */
define('PLUG_DB_USER',  'someuser');            

/** string Password for PLUG_DB_USER */
define('PLUG_DB_PASS',  'somepass');

/** string Optional hostname for database server */
define('PLUG_DB_HOST',  'localhost'); 

/** string Optional port on host server */
define('PLUG_DB_PORT',  '3306'); 




# Session configuration
#

/** Name for standard Session Cookie instead of `PHPSESSID' */
define('PLUG_SESSION_NAME''PlugSession');

/** Length [in minutes] of PLUG session */
define('PLUG_SESSION_TIMEOUT'5);













?>