<?php
 
/**
 
 * This is a global config for the PHP system.
 
 */
 
 
define('CONTEXT_XML',"applicationContext.xml");
 
define('MEMCACHE_SERVERS',"localhost:11211"); // can be a comma delimited list
 
define('CLASSPATH','./classes'); // can be a comma delimited list
 
?>
 
 |