[geeklog-cvs] Geeklog-2 config.php,1.1.1.1,1.2

tony at iowaoutdoors.org tony at iowaoutdoors.org
Sat Dec 18 02:14:39 EST 2004


Update of /var/cvs/Geeklog-2
In directory www:/tmp/cvs-serv32045

Modified Files:
	config.php 
Log Message:
Some minor, but important changes.


Index: config.php
===================================================================
RCS file: /var/cvs/Geeklog-2/config.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** config.php	17 Dec 2004 23:35:47 -0000	1.1.1.1
--- config.php	18 Dec 2004 07:14:37 -0000	1.2
***************
*** 6,10 ****
  $glConf['dbms'] = 'mysql';
  $glConf['db_host'] = 'localhost';
! $glConf['db_name'] = 'Geeklog-2';
  $glConf['db_user'] = 'username';
  $glConf['db_pass'] = 'password';
--- 6,10 ----
  $glConf['dbms'] = 'mysql';
  $glConf['db_host'] = 'localhost';
! $glConf['db_name'] = 'Geeklog_2';
  $glConf['db_user'] = 'username';
  $glConf['db_pass'] = 'password';
***************
*** 15,23 ****
  $glConf['path_views'] = $glConf['path'] . 'views/';
  $glConf['path_commands'] = $glConf['path'] . 'commands/';
! $glConf['path_templates'] = $glConf['path'] . 'templates/';
  
  // If you have propel installed and in your include_path then set this to 1. NOTE: the way I have
  // Set this up, you shouldn't have to change anything here.
! $glConf['have_propel'] = 0;
  $glConf['path_propel_base'] = $glConf['path_system'] . 'Propel/classes/';
  $glConf['path_propel_classes'] = $glConf['path_system'] . 'Propel';
--- 15,23 ----
  $glConf['path_views'] = $glConf['path'] . 'views/';
  $glConf['path_commands'] = $glConf['path'] . 'commands/';
! $glConf['path_themes'] = $glConf['path'] . 'themes/';
  
  // If you have propel installed and in your include_path then set this to 1. NOTE: the way I have
  // Set this up, you shouldn't have to change anything here.
! $glConf['have_propel'] = 1;
  $glConf['path_propel_base'] = $glConf['path_system'] . 'Propel/classes/';
  $glConf['path_propel_classes'] = $glConf['path_system'] . 'Propel';
***************
*** 27,32 ****
  
  // Set the include_path
! ini_set('include_path', ini_get('include_path') 
! 	. ":{$glConf['path_system']}:{$glConf['path_propel_base']}:{$glConf['path_propel_classes']}");
  
  ?>
--- 27,37 ----
  
  // Set the include_path
! if (!$glConf['have_propel']) {
! 	ini_set('include_path', ini_get('include_path') 
! 		. ":{$glConf['path_system']}:{$glConf['path_propel_base']}:{$glConf['path_propel_classes']}");
! } else {
! 	ini_set('include_path', ini_get('include_path')
! 		. ":{$glConf['path_system']}:{$glConf['path_propel_classes']}");
! }
  
  ?>




More information about the geeklog-cvs mailing list