Hello people, I'm using CakePHP 1.2 and this is what's happening:

My cache works correctly only with one action in one controller, any
other actions in other controllers does not work.

BUT the craziest thing is that if I clone the working action (changing
it's name), the new action that is exactly the same as the other one,
doesn't get cached.

It's like this:

PostsController

var $cacheAction = array('index'=>60, 'foo'=>60, );

// The one cached:
function index() {
// Code
}

// Not cached even with the same code!
function foo() {
// Same code
}

I tried all posible combinations and orders with no success, my second
action is not getting cached, anyone passed trhough this? Any way to
track the Caching engine?

Thanks!


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to