diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index db057f2ec..e3768f53e 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -42,6 +42,10 @@ class Debug extends CI_Controller $backup_folder = $this->permissions->is_really_writable('backup'); $data['backup_folder'] = $backup_folder; + // Test writing to cache folder + $cache_folder = $this->permissions->is_really_writable('application/cache'); + $data['cache_folder'] = $cache_folder; + // Test writing to updates folder $updates_folder = $this->permissions->is_really_writable('updates'); $data['updates_folder'] = $updates_folder; diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 547cd2144..7edd835d8 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -105,6 +105,17 @@ +