From 59f490d9d61a88c54f6a7ed8e6fd9032990a0faa Mon Sep 17 00:00:00 2001 From: Stan Statev Date: Thu, 27 Mar 2014 21:07:53 +0200 Subject: [PATCH] [FIX] Wrong Memcache file path for Windows based systems --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.php b/public/index.php index 1ec49fff..b1d1d60a 100644 --- a/public/index.php +++ b/public/index.php @@ -46,7 +46,7 @@ $hts = ($config['https_only'] && (!empty($_SERVER['QUERY_STRING']))) ? "https:// // Rate limiting if ($config['memcache']['enabled'] && $config['mc_antidos']['enabled']) { if (PHP_OS == 'WINNT') { - require_once(CLASS_DIR . 'memcached.class.php'); + require_once(CLASS_DIR . '/memcached.class.php'); } // memcache antidos needs a memcache handle $memcache = new Memcached();