• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

[ModernAac] "codeigniter" Active CACHE

milbradt

New Member
Joined
Dec 25, 2011
Messages
177
Solutions
1
Reaction score
4
How do I enable the cache on a page specifies the modern aac?

I researched a few things about the "codeigniter"
I found it:
Code:
$this->db->cache_on();
Anyone know how to use?
 
$this refers to the current class which is pointing to (->) a non-static inherited object, which points to (->) its method cache_on()

There is only so much you can get from a fragment of code, like where did you get that piece of code?

do a print_r on the call
e.g.
Code:
print_r($this->db->cache_on());

And copy and paste what it prints to the screen, or take a screenshot.
 
Last edited:
There is only so much you can get from a fragment of code, like where did you get that piece of code?

Code:
https://ellislab.com/codeigniter/user-guide/database/caching.html

And copy and paste what it prints to the screen, or take a screenshot.
Error:
MaX8BCx.png
 
Back
Top