Hi Glen,

I have come across this problem before.  The way I initially fixed it
might work for you, and will indicate if it's the same problem or not.

In your /app/config/core.php, you should have a line something like:
        Cache::config('default', array('engine' => 'File'));

It should have defaults, but I found if I set them all to this
instead:
        Cache::config('default', array('engine' => 'File',
                'duration'=> 3600,
                'probability'=> 100,
                'path' => '/tmp',
                'prefix' => 'cake_',
                'lock' => false,
                'serialize' => true,
                )
        );

That fixed my problem.

In the end, I discovered my actual problem was that Zend Optimizer or
something (eAccelerator maybe) was having issues with the "__()"
function.  WHen I removed all references to that from my views, the
problem went away.

Hope that was helpful?

Cheers,
Japheth


On Nov 28, 9:45 am, Dodger <[EMAIL PROTECTED]> wrote:
> I tried it now, and I still receive the error. However, it seems to only be
> happening for actions other than the index action (add & edit).
>
>
>
> Chris Hartjes-2 wrote:
>
> > On Nov 27, 2007 4:59 PM, Dodger <[EMAIL PROTECTED]> wrote:
>
> >> Hi Chris,
>
> >> It's a cache file, it should be managed by the framework. I have tried
> >> adding this file to the folder, and it just gets deleted by Cake.
>
> > Have you tried the following:
>
> > 1) delete the contents of tmp
> > 2) recreate the tmp directory with the proper permissions as indicated
> > in the manual
> > 3) set debug in core/config.php to at least 1 (I usually leave it at 1
> > unless I want to debug some SQL)
> > 4) run your app.
>
> > That *should* recreate any cache files it's looking for.
>
> > Hope that helps.
>
> > --
> > Chris Hartjes
>
> > My motto for 2007:  "Just build it, damnit!"
>
> > @TheKeyboard -http://www.littlehart.net/atthekeyboard
>
> --
> View this message in 
> context:http://www.nabble.com/Big-problems-with-admin-routing-and-Auth-ACL-tf...
> Sent from the CakePHP mailing list archive at Nabble.com.

--~--~---------~--~----~------------~-------~--~----~
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