summaryrefslogtreecommitdiffstats
path: root/user_guide/general
diff options
context:
space:
mode:
authorKenny Katzgrau <katzgrau@gmail.com>2011-02-21 00:12:59 +0100
committerKenny Katzgrau <katzgrau@gmail.com>2011-02-21 00:12:59 +0100
commit283d3c82ce39e7b3977757aca92fbd1b41e2c120 (patch)
tree300fe0bd148afa3e804e206045cab6e7c176935d /user_guide/general
parent9b77fe3e39894af4816a662630c442ab89f16e31 (diff)
Fixed docs specifying cache location (sys/cache v app/cache)
Diffstat (limited to 'user_guide/general')
-rw-r--r--user_guide/general/caching.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/general/caching.html b/user_guide/general/caching.html
index 440896bb7..9f49b95d6 100644
--- a/user_guide/general/caching.html
+++ b/user_guide/general/caching.html
@@ -68,7 +68,7 @@ By caching your pages, since they are saved in their fully rendered state, you c
<h2>How Does Caching Work?</h2>
<p>Caching can be enabled on a per-page basis, and you can set the length of time that a page should remain cached before being refreshed.
-When a page is loaded for the first time, the cache file will be written to your <dfn>system/cache</dfn> folder. On subsequent page loads the cache file will be retrieved
+When a page is loaded for the first time, the cache file will be written to your <dfn>application/cache</dfn> folder. On subsequent page loads the cache file will be retrieved
and sent to the requesting user's browser. If it has expired, it will be deleted and refreshed before being sent to the browser.</p>
<p>Note: The Benchmark tag is not cached so you can still view your page load speed when caching is enabled.</p>
@@ -86,7 +86,7 @@ most logical to you. Once the tag is in place, your pages will begin being cache
<p class="important"><strong>Warning:</strong> Because of the way CodeIgniter stores content for output, caching will only work if you are generating display for your controller with a <a href="./views.html">view</a>.</p>
<p class="important"><strong>Note:</strong> Before the cache files can be written you must set the file permissions on your
-<dfn>system/cache</dfn> folder such that it is writable.</p>
+<dfn>application/cache</dfn> folder such that it is writable.</p>
<h2>Deleting Caches</h2>