Just change the cache setting in config/core.php

Example:

Cache::config('default', array(
        'engine' => 'Memcache',
        'duration' => 86400,
        'probability' => 100,
        'servers' => array('localhost:11211'),
        'compress' => false
));

On Nov 8, 7:06 pm, park <[email protected]> wrote:
> Hi all,
>
> I tried to deploy a Cake app to a cloud hosting service ( similar to
> GAE but supports PHP and MySQL ) which does NOT allow write access to
> the file system. The caching is supposed to be taken care of by
> Memcache.
>
> Is it possible to get Cake to work in such an environment?
>
> I did change Session.save to PHP and enabled Memcache. But it still
> threw out errors saying the tmp dir is not writable.
>
> Many thanks.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" 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