Re: Strange IE11 Login Problem

2014-02-05 Thread Sanjeev Divekar
Solved My Problem. Configure::write('Session', array( 'defaults' => 'php', 'cookieTimeout' => 0, 'cookie' => 'newNameSESSION', )); Is the Solution. http://stackoverflow.com/questions/10256523/cakephp-auth-session-variable-completely-missing-in-chrome-on-some-m

RE: DerEuroMark - Ajax and CakePHP Tutorial Question

2014-02-05 Thread Advantage+
Asking simply because if you go here for example: http://sandbox.dereuromark.de/sandbox/ajax_examples/country_provinces_ajax.json via http you see: { * "name": "Not Found", * "url": "/sandbox/ajax_examples/country_provinces_ajax.json" } If there was no .json extension and

Re: DerEuroMark - Ajax and CakePHP Tutorial Question

2014-02-05 Thread euromark
there is no need to remove it - but of course you can. it is good practice (that is outlined in the post if you read it) to always call the url with the correct extension of what you are expecting. rss => .rss xml => .xml ... and so for an ajax requestion with a json response it would be .json I

How to decrypt the encrypted column in join table?

2014-02-05 Thread picadar
Hello Everyone: I implement the encrypt/decrypt function in beforeSave and afterFind function and fine to work. If I just search the data in the same table, it's fine, the result is correct. But if I search the data that are in join table, it won't call afterFind by itself, so the result is e

DerEuroMark - Ajax and CakePHP Tutorial Question

2014-02-05 Thread Advantage+
First off great article! http://www.dereuromark.de/2014/01/09/ajax-and-cakephp/ Very informative. My only question is there a way to remove the .json extension in the url? Or is it needed to differentiate between views? Only other thing I came across was my AppController isAuthorized()

Strange IE11 Login Problem

2014-02-05 Thread Sanjeev Divekar
Hi, My CakePHP App developed in 2.3.6 is working fine in Chrome, Firefox but IE11. I can not login from IE11 from my Desktop. No Auth Message Display. but I can login from my Laptop using IE11. any Idea? Anybody know Security Settings for IE11 Thanks -- Like Us on FaceBook https://www.faceb

Re: Cake Php starter

2014-02-05 Thread Leandro Machado Pereira
Try start with this: http://book.cakephp.org/2.0/en/getting-started.html Regards 2014-02-05 Mohammed Azharuddin : > Dear Group Members.., > > Hope this mail reach you all with good Health.. > > i going to start one project with cake i have not used Cake and any > framework before but do know t

Cake Php starter

2014-02-05 Thread Mohammed Azharuddin
Dear Group Members.., Hope this mail reach you all with good Health.. i going to start one project with cake i have not used Cake and any framework before but do know the MVC structures and the flow i have no idea that how to start in cake , Can you please help me??? like Admin section, front e

elFinder 2.0 as plugin for cakePHP

2014-02-05 Thread MihaiTL
Hi, has anyone managed to organize elFinder as a plugin for cakePHP? -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are subscribed to the Google Groups "CakePHP" group. To unsubscribe from this gr

Re: Help saving data with CakePHP 3.0 ORM

2014-02-05 Thread Alberto Pagliarini
Hi Carlos, PHP 5.4 permits the ['key' => 'value'] array syntax. The issue I had was resolved by using Entity class and $_accessible property. 2014-02-04 Carlos Javier Baeza Negroni : > Also check the array: > $data = ['name' => 'Walter White']; > > Should be: > $data = array('name' => 'Walter

Re: Help saving data with CakePHP 3.0 ORM

2014-02-05 Thread Alberto Pagliarini
Yeah! using Entity class and $_accessible property all works as expected! thanks José 2014-02-04 José Lorenzo : > Currently that is the most confusing part of the ORM and I'd like to make > it easier to understand in the next release preview. By default entities > are protected agains mass ass