<?php // $Id: config.inc.php,v 1.1.1.1 2005/05/19 10:31:10 rdmpage Exp $ /** * @file config.inc.php * * @brief Configuration variables, such as web proxy address */ global $config; // HTTP proxy // If your internet connection is via a proxy, then provide name and port details here, // otherwise set both fields to ''. // For example, at Glasgow University the proxy_name is 'wwwcache.gla.ac.uk', and the // port is 8080. $config['proxy_name'] = ''; $config['proxy_port'] = ''; // SOAP proxy settings. // Use these if you want to monitor the SOAP traffic, for example, using SOAPScope //(http://www.mindreef.com), otherwise set both to ''. // Note that not all SOAP servers react well to this. uBio gets broken, for example. $config['soap_proxy_name'] = ''; $config['soap_proxy_port'] = ''; // If your PHP installation does not have the xslt extension then you will need // to install a copy of Sablotron (http://www.gingerall.com/charlie/ga/xml/p_sab.xml). // This variable stores the path to the sabcmd program. If it is set to '', then the // xslt extension is used instead. $config['sabcmd'] = ''; //$config['sabcmd'] = '/usr/local/bin/sabcmd'; // Directory where we can write temporary files, e.g. '/tmp' on a Unix box. $config['tmp_dir'] = '/tmp'; // Cache directory (absolute path), and how long a record should stay cached (in seconds). // 0 means the cache isn't being used. // 86400 seconds = 24 hours $config['cache_dir'] = ''; $config['cache_time'] = 86400; // Google key $config['Google_key'] =''; // uBio key $config['uBio_key'] =''; ?>