We have a couple of developers on my team who are running Windows.
Prior to our recent upgrade (from 1.2 alpha to 1.2 final) they had no
problems.  Now, however, unless they have Cake caching disabled (with
Configure::write('Cache.disable', true)) they get frequent errors of
the form:

Fatal error: Maximum execution time of 30 seconds exceeded in ...
\wwwroot\cake\libs\cache\apc.php on line X

It seems as though it's hanging while trying to write APC but only for
the Cake calls (direct APC calls are fine).

Has anyone else run into this?  Any ideas on the cause and why it's
occurring only on some machines?  BTW, the only cache-related
configuration we've added is (in core.php):

         Cache::config('default', array(
                'engine' => 'Apc', //[required]
                'duration'=> 3600, //[optional]
                'probability'=> 100, //[optional]
                'prefix' => Inflector::slug(APP_DIR) . '_', //[optional]  prefix
every cache file with this string
        ));

        Cache::config('_cake_model_', array(
                'engine' => 'File', //[required]
                'prefix' => Inflector::slug(APP_DIR) . '_cake_model_'
        ));

-A.s.
--~--~---------~--~----~------------~-------~--~----~
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