Re: Wrong AppController called when 2 projects are accessed simultaneously

2013-08-21 Thread JD
Thanks a mil Andras!! I actually had to change the prefix for _cake_core_ Cache::config('_cake_core_', array( 'engine' => $engine, //'prefix' => 'cake_core_', 'prefix' => 'project1_', 'path' => CACHE . 'persistent' . DS, 'serialize' => ($engine === 'File'), 'duration' => $duration )); bu

Re: Wrong AppController called when 2 projects are accessed simultaneously

2013-08-21 Thread Andras Kende
try to change prefix to unique ... core.php // Prefix each application on the same server with a different string, to avoid Memcache and APC conflicts. $prefix = 'myapp_'; Andras Kende http://www.kende.com On Aug 21, 2013, at 12:48 AM, JD wrote: > Hi, > I am using CakePHP 2.2.1, and runnin

Wrong AppController called when 2 projects are accessed simultaneously

2013-08-21 Thread JD
Hi, I am using CakePHP 2.2.1, and running 2 cake projects on my machine. Both projects use the same plugins, i.e. I have simlinks in the app/Plugin folders of both project that link to CakePHP/trunk/plugins/ If I access either project separately I don't have any issues but if I access both proje