<?
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# DataDivisions, Build 1.0, 12/11/2003 #
# FileName: config.php #
# File Description: #
# Defines user and server-specific variables #
# #
# +-----------------------------------------------------------------------+ #
# | DataDivisions - Website Statistic Visualization Software | #
# | Copyright (c) 2003, Brian Willison | #
# +-----------------------------------------------------------------------+ #
# | The contents of this file are subject to the GNU General Public | #
# | License version 2 (June 1991). This file and all its contents (incl. | #
# | functions, methods, etc.) are free for general use within any | #
# | community. This software is distributed with the intent to allow | #
# | developers the opportunity to copy, manipulate and revamp this | #
# | application in part or whole for best use cases. | #
# | | #
# | This software is distributed "AS-IS" with no warranties of any kind | #
# | either expressed or implied. | #
# | | #
# | Please refer to the GPL license document for more information: | #
# | (_docs/gplLicense.pdf) | #
# +-----------------------------------------------------------------------+ #
# | Developer, Designer, Initial Creator: | #
# | Brian Willison (hide@address.com) | #
# +-----------------------------------------------------------------------+ #
# | Initial Download Reference: | #
# | http://datadivisions.sourceforge.net | #
# +-----------------------------------------------------------------------+ #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
## Please indicate a name/label for this website
// Website Title
// EXAMPLE: "Your Website Title"
define("WEBSITENAME","",TRUE);
// Website URL (no "http://", no "www")
// EXAMPLE: "your_website_name.com"
define("WEBSITEURL","",TRUE);
## Please update the following variables in accordance with your server architecture
// URL To DataDivisions Directory
// Note: Trailing Slash Required
// EXAMPLE: "http://www.your_website_name.com/"
define("BASEURL","",TRUE);
// URL To Image Directory - Change Only If Prefer To Store Images In Remote Location
// Note: Trailing Slash Required
// EXAMPLE: "http://www.your_website_name.com/images/"
define("IMGURL","",TRUE);
// Server Path To Public HTML Directory (contact your hosting company if unsure of this value)
// Note: Trailing Slash Required
// EXAMPLE: "/home/your_website_name/public_html/"
define("BASEROOTPATH","",TRUE);
// Server Path To DataDivisions Directory
// Note: Trailing Slash Required
// EXAMPLE: "/home/your_website_name_public_html/datadivisions"
// EXAMPLE: baseRootPath."datadivisions/"
define("PATHTOROOT","",TRUE);
## Please update the following variables in accordance to your database login credentials
// Database Host (default = "localhost")
define("DBHOST","",TRUE);
// Database User Name
define("DBUSER","",TRUE);
// Database Password
define("DBPASS","",TRUE);
// Database Name (set to the name chosen for this database)
define("DBNAME","",TRUE);
// Database Tables
define("DBTABLEUSERS","dataDivisions_userInfo",TRUE); // users
define("DBTABLESAVEDDISPLAYS","dataDivisions_savedDisplays",TRUE); // saved displays
define("DBTABLEDISPLAYINFO","dataDivisions_displayInfo",TRUE); // display info
## Please update the following variable in accordance with your server's error log file
## If unsure of this location, please contact your system administrator
// EXAMPLE: "/usr/local/apache/domlogs/your_website_name/error.log"
define("ERRORFILE","",TRUE);
?>