Cakephp 3.0

2015-05-16 Thread Karthik Keyan
Hi How to use multiple tables in single controller in *cakephp 3.0 * -- 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

Re: Cake 3 - Modelless Forms with nested forms / elements

2015-06-01 Thread Karthik Keyan
Hi, Create the form name in /src/UserForm1.php namespace App\Form; use Cake\Form\Form; use Cake\Validation\Validator; class UserForm1 extends Form { protected function _buildValidator(Validator $validator) { return $validator -notEmpty('annul_income',

Forgot password in cakephp 3.0

2015-05-26 Thread Karthik Keyan
Hi, How we set the validation for the forgot password. Password can be send to email *please send the functionality of forgot password* -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are

IFrame not supported the session values

2015-07-21 Thread Karthik Keyan
Hi I am created the iframe application using cakephp3.0, session values not supported in *safari and IE web browser*. any one please help -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because you are

cakephp 3.0 session not supported in safari browser

2015-07-22 Thread Karthik Keyan
Hi, We have created the application using cakephp 3.0 that an application runs in an Iframe. Now the problem is **not able to get the session value in the safari browser**. We have tried this solution added header ('P3P: CP=CAO PSA OUR') ---It works fine in IE browser Anyone please, help to

Cakephp 3.0 Session setting

2015-07-21 Thread Karthik Keyan
Hi, I am Try setting the Session.checkAgent configuration to false. How to change the session setting in cakephp 3.0 -- 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

Cakephp 3 How to update multiple row data in a single query

2015-10-14 Thread Karthik Keyan
Hi all, I have multiple rows in database. I need to collect all the rows based on certain condition and change the value of particular column by removing a word from the column's value. How it could be done with with cakePHP 3? -- Like Us on FaceBook https://www.facebook.com/CakePHP Find

Beforefinder call function is not work in cakephp 3.x

2016-01-19 Thread Karthik Keyan
Hi, I have used beforefinder call function into the model file public function beforeFind(Query $query){ return $query->where('User.status'=>0)} We don't need that record when the user status is '0',How to write the common query in table file How to use 'beforeFind' call back