summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/database/DB_cache.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/system/database/DB_cache.php b/system/database/DB_cache.php
index db7636450..d023db979 100644
--- a/system/database/DB_cache.php
+++ b/system/database/DB_cache.php
@@ -95,12 +95,22 @@ class CI_DB_Cache {
? rtrim(realpath($path), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR
: rtrim($path, '/').'/';
- if ( ! is_dir($path) OR ! is_really_writable($path))
+ if ( ! is_dir($path))
{
+ log_message('debug', 'Cache Path Error: '.$path);
+
// If the path is wrong we'll turn off caching
return $this->db->cache_off();
}
+ if ( ! is_really_writable($path))
+ {
+ log_message('debug', 'Cache Dir Not Writable: '.$path);
+
+ // If the path is not really writable we'll turn off caching
+ return $this->db->cache_off();
+ }
+
$this->db->cachedir = $path;
return TRUE;
}