* * Changes: * * 2006-05-22 - File creation. * * **/ /* * Database connection. This should be in the format: * * protocol://username:password@server/database * */ $config['dsn'] = 'mysql://web44-ejp_cms:autostar962@127.0.0.1/web44-ejp_cms'; /* * Statistics URL. If this is specified, a link will appear on the toolbar pointing here. * */ #$config['statistics'] = 'https://www.google.com/analytics/home/report?rid=1590744&scid=292884'; /* * Webtacular is designed to be easily rebrandable. Just change the details below, and * the branding will change across the CMS. * */ $config['cms_name'] = 'eManage'; $config['cms_version'] = '2.20061116'; $config['cms_copyright'] = 'eManage is © 2006 Inigo Media Ltd.'; /* * The session name controls what session variable is used to store login information. * This should be something that will not conflict with anything in any custom * application. * */ $config['session_name'] = 'eu6rftuogilyvurefuv6bdfin7gluyih'; /* * HTTP accessible install path. The default should normally get the right value. * */ $config['install_path'] = '/emanage'; // have to hard set this for the live host /* * Which modules are installed, the defaults are Content, Images, Files, * Templates - these should not be removed or you'll lose essential * functionality. * */ $config['modules'] = array( array( 'name' => 'Content', 'path' => $config['install_path'] . '/modules/content.php', 'icon' => 'world.png' ), array( 'name' => 'Images', 'path' => $config['install_path'] . '/modules/images.php', 'icon' => 'picture.png' ), array( 'name' => 'Files', 'path' => $config['install_path'] . '/modules/files.php', 'icon' => 'folder.png' ), array( 'name' => 'Templates', 'path' => $config['install_path'] . '/modules/templates.php', 'icon' => 'layout.png' ), array( 'name' => 'Environment', 'path' => $config['install_path'] . '/modules/environment.php', 'icon' => 'application_view_list.png' ), ); /* * If you want to allow the user to specify which template to use in the query string * set this value to true. This is useful for alternate versions, such as plain text * / printable. Though you should be able to achieve the same effect through stylesheets. * * If you are handling members only pages in a specific template, then you wont this to * be false, otherwise people could get around that control. * */ $config['allow_alternate_template'] = true; /* * Idle timeout in seconds (how long can you leave the page sitting before being automatically * logged out). * * 900 = 15 minutes * 1800 = 30 minutes * 3600 = 1 hour * */ $config['idle_timeout'] = 1800; /* * Logging * */ $config['log_file_level'] = PEAR_LOG_INFO; $config['log_firebug_level'] = PEAR_LOG_NONE; $config['log_email_level'] = PEAR_LOG_CRIT; $config['log_email_to'] = 'colin@inigo.net'; $config['log_email_from'] = 'colin@inigo.net'; $config['log_email_subject'] = 'WEBSITE ERROR'; $config['log_email_preamble'] = ''; The website is currently undergoing maintenance. Please try again later.