diff --git a/public/include/autoloader.inc.php b/public/include/autoloader.inc.php index a291b64f..4aeb78ef 100644 --- a/public/include/autoloader.inc.php +++ b/public/include/autoloader.inc.php @@ -7,8 +7,12 @@ require_once(INCLUDE_DIR . '/smarty.inc.php'); // Load classes that need the above as dependencies require_once(CLASS_DIR . '/block.class.php'); require_once(CLASS_DIR . '/user.class.php'); -require_once(CLASS_DIR . '/worker.class.php'); require_once(CLASS_DIR . '/share.class.php'); +require_once(CLASS_DIR . '/worker.class.php'); require_once(CLASS_DIR . '/statistics.class.php'); require_once(CLASS_DIR . '/transaction.class.php'); require_once(CLASS_DIR . '/settings.class.php'); + +// Use Memcache to store our data +$memcache = new Memcached(); +$memcache->addServer('localhost', 11211);