Update of /cvsroot/lambda/lambda/conf
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24447/conf
Modified Files:
config-sample.php
Log Message:
Updated configfile format for easier usage and readability
Index: config-sample.php
===================================================================
RCS file: /cvsroot/lambda/lambda/conf/config-sample.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** config-sample.php 22 Jul 2005 11:36:16 -0000 1.1.1.1
--- config-sample.php 24 Jul 2005 13:42:37 -0000 1.2
***************
*** 15,38 ****
*********/
! /**
! * The name of your Lambda site.
! *
! * This title will be displayed throughout your site.
! */
! $config['lambda']['sitename'] = 'Lambda - Online Bookmark System';
!
! /**
! * The full URL of your Lambda site
! *
! * This URL will be used to reference your site.
! */
! $config['lambda']['siteurl'] = 'http://trinity';
!
! /**
! * The default theme for your Lambda site.
! *
! * This theme will be used by default, but may be overridden by users if other themes are available.
! */
! $config['lambda']['theme'] = 'lambda';
/**********
--- 15,21 ----
*********/
! $cfg['LambdaSitename'] = 'Lambda - Online Bookmark System'; // Your site name
! $cfg['LambdaSiteURL'] = 'http://localhost'; // URL for your site
! $cfg['LambdaDefaultTheme'] = 'lambda'; // Default theme
/**********
***************
*** 40,96 ****
*********/
! /**
! * MySQL server host
! *
! * Mostly this will be 'localhost'
! */
! $config['db']['hostname'] = 'localhost';
!
! /**
! * MySQL username
! *
! * Connect to MySQL as this user.
! */
! $config['db']['username'] = 'username';
!
! /**
! * MySQL password
! *
! * Password for the above user
! */
! $config['db']['password'] = 'secret';
!
! /**
! * MySQL database
! *
! * The name of the database containing your Lambda data
! */
! $config['db']['database'] = 'lambda';
!
/**********
! * Lambda defaults
*********/
! /**
! * Smarty location
! *
! * Location of Smarty.class.php
! */
! $config['smarty']['path'] = 'smarty/Smarty.class.php';
!
! /**
! * Smarty template location
! *
! * Location of themes
! */
! $config['smarty']['theme_dir'] = 'themes';
!
! /**
! * Smarty compile directory
! *
! * Directory where smarty stores it's compiled templates
! *
! * !!!!! This directory must be writable by the webserver !!!!!
! */
! $config['smarty']['compile_dir'] = 'smarty/template_c';
?>
\ No newline at end of file
--- 23,38 ----
*********/
! $cfg['MysqlHostname'] = 'localhost'; // Hostname of your MySQL Server
! $cfg['MysqlUsername'] = 'username'; // Username for MySQL
! $cfg['MysqlPassword'] = 'secret'; // Password for above user
! $cfg['MysqlDatabase'] = 'lambda'; // Name of your Lambda database
! $cfg['MysqlPersistent'] = false; // Use persistent connections?
! // Set false when using public hosting
/**********
! * Lambda defaults **** YOU DO NOT NEED TO CHANGE ANYTHING BELOW THIS LINE! *****
*********/
! $cfg['SmartyPath'] = 'smarty/Smarty.class.php'; // Path to Smarty.class.php
! $cfg['SmartyThemeDir'] = 'themes'; // Themes directory
! $cfg['SmartyCompileDir'] = 'smarty/template_c'; // Smarty compile directory
?>
\ No newline at end of file
|