<?php // $Id: // /** * @file config.php * * Global configuration variables (may be added to by other modules). * */ global $config; // Title of your database $config['title'] = "MyPHPBib"; // URLs---------------------------------------------------- $config['base_url'] = "http://darwin.zoology.gla.ac.uk/~rpage/MyPHPBib"; // Physical location of your installation of MyPHPBib $config['base_dir'] = "/home/rpage/public_html/MyPHPBib"; // Uploads------------------------------------------------- // Location of uploaded files with respect to root of web site. $config['upload_url'] = "files"; // This directory is used to store uploaded PDFs. It must be // writable by your web server. $config['upload_dir'] = $config['base_dir'] . "/" . $config['upload_url']; // Directories--------------------------------------------- $config['tmp_dir'] = '/tmp'; // Include directories $config['adodb_dir'] = 'adodb/adodb.inc.php'; // Database------------------------------------------------- // By default the login and bibliography modules use the same database settings // By default the login and bibliography modules use the same database settings $config['db_name'] = 'bib'; $config['db_user'] = 'Anonymous'; $config['db_passwd'] = ''; // The name of the table storing user details $config['user_table'] = 'member'; // XSLT installation---------------------------------------- // If your PHP installation has XSLT support built in leave as ''. // If not (such as RedHat 8), set to the path to your copy of sabcmd (e.g., // '/usr/local/bin/sabcmd'). To get the path, type // 'locate sabcmd' at the system prompt. $config['sabcmd'] = '/usr/local/bin/sabcmd'; //$config['sabcmd'] = ''; // Character set------------------------------------------- $config['charset'] = 'iso-8859-1'; // Proxy settings for connecting to the web---------------- // Set these if you access the web through a proxy server. This // is necessary if you are going to use external services such // as PubMed. For example, for a machine at Glasgow University, // the proxy is wwwcache.gla.ac.uk and the port is 8080 $config['proxy_name'] = ''; $config['proxy_port'] = ''; ?>