summaryrefslogtreecommitdiffstats
path: root/system/database/DB_cache.php
diff options
context:
space:
mode:
authorBrian Gottier <grahamcrackers72@yahoo.com>2012-11-14 03:47:19 +0100
committerBrian Gottier <grahamcrackers72@yahoo.com>2012-11-14 03:47:19 +0100
commit51c0b55a235ebcac022d6f5576c209edf98c38fe (patch)
treee7f805aef0def96ca460496f789fd355e42a7032 /system/database/DB_cache.php
parent878c4bd45c8984b7e41e695cb216ccbba0e3473a (diff)
Better debugging for DB Cache path
Diffstat (limited to 'system/database/DB_cache.php')
-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;
}