Re: Cake 3 RC1 aura intl problem

2015-01-16 Thread HVan
Just a guess. I'm trying to figure out how to disable that cache (so it doesn't re-generate each time) and see if the error goes away. But it seems like that cache file is generated eveyr single time. If I could disable the cache of the intl file generation, then I can eliminate the possibility

Re: ACL View

2015-01-16 Thread euromark
A few points: - https://github.com/GWD-WEB/acl-view/blob/master/Controller/PermissoesController.php#L2 is an invalid use statement - the plugin is missing test cases (which would have revealed point 1) - you should add composer support, as this is the de facto standard at this point to include

ACL View

2015-01-16 Thread will
Hi everyone! My company released a (little) small plugin that helps management of ACL Permissions on Cake. Feel free to use and send suggetions or bug reports! https://github.com/GWD-WEB/acl-view Thanks Willen Goulart -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitte

Re: 3.0 e mysql fields ENUM

2015-01-16 Thread euromark
Enums are a bad thing anyway. Better use sth of the options listed @ http://www.dereuromark.de/2010/06/24/static-enums-or-semihardcoded-attributes/ mark Am Donnerstag, 15. Januar 2015 23:18:45 UTC+1 schrieb Leandro Machado Pereira: > > I gave up using enum. > Thanks. > Em Thu Jan 15 2015 at 17:

Re: Safari 8.x.x - MissingControllerException

2015-01-16 Thread Mike Karthauser
i suspect safari is expecting an image in the site root called apple-touch-icon-precomposed.png which it can’t find so you are getting the error. > On 16 Jan 2015, at 15:11, Sajoscha Sauer wrote: > > Hi all, > > I have a weird problem at the moment. > > I’m normally using Firefox, and the

Safari 8.x.x - MissingControllerException

2015-01-16 Thread Sajoscha Sauer
Hi all, I have a weird problem at the moment. I’m normally using Firefox, and there everything is working perfectly. Now I was testing on Safari and I got the following error: 2015-01-16 15:56:13 Error: [MissingControllerException] Controller class Apple-touch-icon-precomposed.pngController

Re: Cake 3 RC1 aura intl problem

2015-01-16 Thread José Lorenzo
Why do you believe the problem is there? On Friday, January 16, 2015 at 6:50:31 AM UTC+1, HVan wrote: > > Nope - sorry the locale changed because I tried changing it to see if it > will fix anything. But it didn't. It sounds like the problem is during > generation of the translations cache. > >

Re: Cakephp 3.0 Get and Modify Query conditions in beforeFind function

2015-01-16 Thread Cake Developer
Hi Josh, Thanks for the answer. Let me explain what I am trying to achieve. I am working on filter records based on data entered on search form. ---Controller code $this->paginate = ['searchFilter'=>true, 'limit'=>10, 'order'=>['Users.id'=>'DESC'], 'conditions'=>['Users.active'=>1]]; $user