diff options
author | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-09 08:16:58 +0000 |
---|---|---|
committer | ericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-09 08:16:58 +0000 |
commit | 84f469ed5f8d13b751c9b9fa3f9302bd05d58632 (patch) | |
tree | c2f308ac85b29000640ea4ef55b16180112049cd | |
parent | 537e8a2c121e5901c2ce014579b8dec749616871 (diff) | |
download | semanticscuttle-84f469ed5f8d13b751c9b9fa3f9302bd05d58632.tar.gz semanticscuttle-84f469ed5f8d13b751c9b9fa3f9302bd05d58632.tar.bz2 |
change app name and rationalized set up
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@97 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | config.inc.php.example | 45 |
1 files changed, 16 insertions, 29 deletions
diff --git a/config.inc.php.example b/config.inc.php.example index a965c73..0627f9d 100644 --- a/config.inc.php.example +++ b/config.inc.php.example @@ -1,46 +1,38 @@ <?php -###################################################################### -# SCUTTLE: Online social bookmarks manager -###################################################################### -# Copyright (C) 2005 - 2006 Scuttle project -# http://sourceforge.net/projects/scuttle/ -# http://scuttle.org/ +# SemanticScuttle - Web social bookmarking +# Copyright (C) 2005 - 2006 SemanticScuttle project +# http://sourceforge.net/projects/semanticscuttle/ # +# Configuration Main File # This module is to configure the main options for your site # # This program is free software. You can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License. -###################################################################### -###################################################################### -# Database Configuration -# -# dbtype: Database driver - mysql, mysqli, mysql4, oracle, postgres, -# sqlite, db2, firebird, mssql, mssq-odbc -# dbhost: Database hostname -# dbport: Database port -# dbuser: Database username -# dbpass: Database password -# dbname: Database name -###################################################################### +#### Database Configuration #### +# dbtype: Database driver {mysql, mysqli, mysql4, oracle, postgres, sqlite, db2, firebird, mssql, mssq-odbc} $dbtype = 'mysql4'; +# dbhost: Database hostname $dbhost = '127.0.0.1'; +# dbport: Database port $dbport = '3306'; +# dbuser: Database username $dbuser = 'username'; +# dbpass: Database password $dbpass = 'password'; +# dbname: Database name $dbname = 'scuttle'; -###################################################################### -# You have finished configuring the database! +#### System Configuration #### # ONLY EDIT THE INFORMATION BELOW IF YOU KNOW WHAT YOU ARE DOING. -###################################################################### -# System Configuration -# # sitename: The name of this site. +$sitename = 'SemanticScuttle'; # welcomeMessage: The welcome message (or tagline) of this site -# locale: The locale used. +$welcomeMessage = 'More than tags...'; +# locale: The locale used (list ./locales : de_DE en_GB fr_FR it_IT lt_LT nl_NL zh_CN dk_DK es_ES hi_IN ja_JP pt_BR) +$locale = 'en_GB'; # top_include: The header file. # bottom_include: The footer file. # shortdate: The format of short dates. @@ -96,12 +88,7 @@ $dbname = 'scuttle'; # sizeSearchHistory : the number of users' searches that are saved # 10 [Default] # -1 Unlimited -# -###################################################################### -$sitename = 'SemanticScuttle'; -$welcomeMessage = 'More than tags...'; -$locale = 'en_GB'; # in list ./locales : de_DE en_GB fr_FR it_IT lt_LT nl_NL zh_CN dk_DK es_ES hi_IN ja_JP pt_BR $top_include = 'top.inc.php'; $bottom_include = 'bottom.inc.php'; $shortdate = 'd-m-Y'; |