Re: How to upgrade from 2..5.2 to 2.6.1

2015-02-01 Thread archana goyal
ok, thanks for reply. On Sat, Jan 24, 2015 at 6:00 PM, mark_story wrote: > You will have to replace the lib directory. You will also want to pull in > any changes to the config files in app/Config. > > -mark > > -- > Like Us on FaceBook https://www.facebook.com/CakePHP > Find us on Twitter http:

How to upgrade from 2..5.2 to 2.6.1

2015-01-20 Thread Archana Goyal
Hello, I want to upgrade my CakePHP application from 2.5.2 to 2.6.1. To do so, I have to replace my lib folder or there is another way to upgrade my application ? http://book.cakephp.org/2.0/en/appendices/2-6-migration-guide.html Thanks, Archana -- Like Us on FaceBook https://www.facebook.com

How can I access vendor file in cron or webroot

2014-10-30 Thread Archana Goyal
I am implementing payment gateway in CakePHP application. I stored functions of payment gateway in vendor and using in controller by importing. I want to create cron to check subscription of user in daily basis, so I need to use vendor file in cron. I did R&D for this on google but nothing foun

Re: CakePHP 2.5.2 - Wizard previous step reload by ajax.

2014-06-30 Thread Archana Goyal
No, I didn't use session in wizard. My question is "How do I reload my saved data to my wizard form by ajax". On Monday, 30 June 2014 15:33:35 UTC+5:30, Andras Kende wrote: > > do you also use Sessions on that wizard ? > > Andras Kende > > > On Jun 30, 2014

CakePHP 2.5.2 - Wizard previous step reload by ajax.

2014-06-30 Thread Archana Goyal
Hi, I am create wizard form. On every next steps of form my data saved in database by ajax. But I am not able to reload form data on previous botton.How do I load form on previous step to stop saving duplicate data in database. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us o

Re: 3.0 how do I use vendor ?

2014-06-25 Thread Archana Goyal
Ok, thanks for reply. On Wednesday, 25 June 2014 01:04:19 UTC+5:30, José Lorenzo wrote: > > What vendor? > > You could just use 'require' > > On Tuesday, June 24, 2014 11:48:04 AM UTC+2, Archana Goyal wrote: >> >> I want convert html to pdf in my applicat

Re: what is request array to save multiple records in cakephp3 ?

2014-06-25 Thread Archana Goyal
ist.github.com to sow your > code? > > On Monday, June 23, 2014 2:15:35 PM UTC+2, Archana Goyal wrote: >> >> Hi Lorenzo, >> >> Still my code is not working. >> >> after newEntity() resume array >> >> App\Model\Entity\Resume Objec

Re: 3.0 how do I use vendor ?

2014-06-24 Thread Archana Goyal
I can not use App::Import because this is not in CakePHP 3. On Tuesday, 24 June 2014 15:20:11 UTC+5:30, dada123 wrote: > > Using App::Import > > > On Tue, Jun 24, 2014 at 3:18 PM, Archana Goyal > wrote: > >> I want convert html to pdf in my application.To do so I need

3.0 how do I use vendor ?

2014-06-24 Thread Archana Goyal
I want convert html to pdf in my application.To do so I need to import vendor(tcpdf) in my controller. Please suggest any other solution to convert html to pdf or way to import vendor. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- Yo

Re: what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
saveAssociated() method is not exist in cakephp 3. On Tuesday, 24 June 2014 11:49:07 UTC+5:30, A.K. Mahana wrote: > > > > On Tuesday, June 24, 2014 10:21:29 AM UTC+5:30, Archana Goyal wrote: >> >> Hi Mahana, >> >> I have saperate table and entity of links an

Re: what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
:56 PM UTC+5:30, Archana Goyal wrote: >> >> Hi, >> I am building cakephp 3 application. I want to save associated multiple >> records. >> my $this->request->data is >> > Array >> ( >> >> [name] => archana >>

Re: what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
=> 1)[_new:protected] => [_errors:protected] => Array ()[_repositoryAlias:protected] => Resumes) On Monday, 23 June 2014 17:36:34 UTC+5:30, José Lorenzo wrote: > > Try with $_accessible = ['*' => true]; > > Also show a deb

Re: what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
Hi, my Resume.php is true ]; } ?> but its not working. On Monday, 23 June 2014 16:38:38 UTC+5:30, José Lorenzo wrote: > > In your Resume.php entity file, you probably need to add 'links' => 1 to > the $_accessible array > > On Monday, June 23, 2014 8:41:5

Re: what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
/ return true; } On Monday, 23 June 2014 13:54:37 UTC+5:30, dada123 wrote: > > $this->Model['User']['name'] = 'test']; > > $this->User->save($this->data); > > This should be the exact process of saving . > > > On Mon, Jun 2

what is request array to save multiple records in cakephp3 ?

2014-06-23 Thread Archana Goyal
Hi, I am building cakephp 3 application. I want to save associated multiple records. my $this->request->data is Array ( [name] => archana [phone] => 234234 [links] => Array ( [0] => Array ( ['link'] => www.google.com

CakePHP-3 slow execution process

2014-06-16 Thread archana goyal
Hi, My CakePHP 3 application taking more then 30 sec to load.This is not a big application I just started work on this application. When I enable init in Config/app.php got following issue: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are activ

cakephp-3 - lists records in drop down

2014-06-16 Thread archana goyal
My code for array is $degrees = TableRegistry::get('Degrees'); $degreelist = $degrees->find('list', ['fields' => ['id', 'concat(name,degree) as name']]); not created dropdown but if I create query $degrees = TableRegistry::get('Degrees'); $degreelist = $degrees->

CakePHP-3

2014-06-16 Thread archana goyal
Hi, I enabled debug mode in app.php but could not able see queries and there execution time. true, -- 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"