Advertisement
ihris

Untitled

Mar 12th, 2010
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.64 KB | None | 0 0
  1. /*****************************************************************                                                                                                                                                                                                    
  2.  *                                                               *                                                                                                                                                                                                    
  3.  *                   BEGIN USER CUSTOMIZATION                    *                                                                                                                                                                                                    
  4.  *                                                               *                                                                                                                                                                                                    
  5.  *****************************************************************/
  6.  
  7. /**                                                                                                                                                                                                                                                                    
  8.  * Copy this file to local/config.values.php and set the values you                                                                                                                                                                                                    
  9.  * need to update there.  Anything you don't set in                                                                                                                                                                                                                    
  10.  * local/config.values.php will get its value from here.                                                                                                                                                                                                              
  11.  */
  12.  
  13.  
  14. /**                                                                                                                                                                                                                                                                    
  15.  * the path to the I2CE installation.                                                                                                                                                                                                                                  
  16.  * You might need to set this depending on your installation                                                                                                                                                                                                          
  17.  *    Default value is  ../../../../I2CE                                                                                                                                                                                                                              
  18.  */
  19. $i2ce_site_i2ce_path = "/var/lib/iHRIS/lib/4.0/I2CE";
  20.  
  21.  
  22. /**                                                                                                                                                                                                                                                                    
  23.  * the dsn to connect to your databse                                                                                                                                                                                                                                  
  24.  */
  25. $i2ce_site_dsn = 'mysql://manage_demo:PASS@localhost/ihris_manage_demo' ;
  26.  
  27.  
  28. /**                                                                                                                                                                                                                                                                    
  29.  * Initialization string for user access.  See http://open.intrahealth.org/mediawiki/Pluggable_Authentication                                                                                                                                                          
  30.  *                                                                                                                                                                                                                                                                    
  31.  */
  32. $i2ce_site_user_access_init = null;
  33.  
  34.  
  35.  
  36. /**                                                                                                                                                                                                                                                                    
  37.  * the configuration xml file for the site module.  You need to set this.                                                                                                                                                                                              
  38.  */
  39. $i2ce_site_module_config = "/var/lib/iHRIS/sites/manage-demo/iHRIS-Manage-Demo.xml";
  40.  
  41.  
  42. /*****************************************************************                                                                                                                                                                                                    
  43.  *                                                               *                                                                                                                                                                                                    
  44.  *                   END USER CUSTOMIZATION                      *                                                                                                                                                                                                    
  45.  *              Do not edit anything below this line             *                                                                                                                                                                                                    
  46.  *                                                               *                                                                                                                                                                                                    
  47.  *****************************************************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement