diff --git a/phpfastcache/3.0.0/phpfastcache.php b/phpfastcache/3.0.0/phpfastcache.php index c62292f71..070a07c90 100644 --- a/phpfastcache/3.0.0/phpfastcache.php +++ b/phpfastcache/3.0.0/phpfastcache.php @@ -112,10 +112,7 @@ public static function getAutoClass($config) { $path = self::getPath(false,$config); if(is_writeable($path)) { $driver = "files"; - }else if(extension_loaded('pdo_sqlite') && is_writeable($path)) { - $driver = "sqlite"; - }else if(extension_loaded('apc') && ini_get('apc.enabled') && strpos(PHP_SAPI,"CGI") === false) - { + }else if(extension_loaded('apc') && ini_get('apc.enabled') && strpos(PHP_SAPI,"CGI") === false) { $driver = "apc"; }else if(class_exists("memcached")) { $driver = "memcached";