How do you cache image/s with Codeigniter? The images are not being stored in my database.
Thanks!
How do you cache image/s with Codeigniter? The images are not being stored in my database.
Thanks!
put this in your controller if you're talking about images being stored in your database:
$this->output->cache(10);
You can cache the images with mod_expires and Apache. It does not depend on CodeIgniter, it is rather a general solution.
I recommend that you check this link: Website Image Caching with Apache