Re: Use 2 tables for update

2014-06-26 Thread Javier Mateos
You have to look for saveall function El jueves, 26 de junio de 2014 13:19:23 UTC+2, CUCULEAC STEFAN escribió: > > No one? > > > > -- > View this message in context: > http://cakephp.1045679.n5.nabble.com/Use-2-tables-for-update-tp5718641p5718652.html > > Sent from the CakePHP mailing list

Re: Use 2 tables for update

2014-06-26 Thread Reuben
Not without an original post to work from. On Thursday, 26 June 2014 21:19:23 UTC+10, CUCULEAC STEFAN wrote: > > No one? > > > > -- > View this message in context: > http://cakephp.1045679.n5.nabble.com/Use-2-tables-for-update-tp5718641p5718652.html > > Sent from the CakePHP mailing list arch

Re: CakePHP download function returns 'empty' file

2014-06-26 Thread AD7six
On Friday, 20 June 2014 20:05:55 UTC+2, Alexandr Pirogov wrote: > > Help me, please, to resolve my small problem! I have next function in my > PostsController: > > public function download() { > if (isset($this->request->query['file']) && is_file(POST_ATTACH_PATH . > $this->request->query['

Re: CakePHP download function returns 'empty' file

2014-06-26 Thread John Andersen
Do you still have this issue? If yes, please show us how you view looks like. Enjoy, John On Friday, 20 June 2014 21:05:55 UTC+3, Alexandr Pirogov wrote: > > Help me, please, to resolve my small problem! I have next function in my > PostsController: > > public function download() { > if (isse

Re: How change a google places API to Helper

2014-06-26 Thread John Andersen
Show us what you have done yourself and we can try and assist you when it goes wrong :) Enjoy, John On Sunday, 22 June 2014 12:16:20 UTC+3, Lo Lo wrote: > > i want change this simple google places API to a Helper ?would you help me? > > > > > > Place searches > > > >

Re: :action/* element is giving missing controller error

2014-06-26 Thread John Andersen
Based on what I just read in the CakePHP book, then the route definition for /blog/:action/* should mean that any URL using /blog should go to posts instead and to the same action as the one following /blog For example: /blog/add should give you /posts/add /blog/view/8 should give you /posts/vie

Re: How its better?

2014-06-26 Thread Stephen S
I wouldn't use two installations unless you had some legitimate need to do so, you'll just over-complicate it otherwise. I'd do the same as euromark suggests, see the follow book pages: http://book.cakephp.org/2.0/en/development/routing.html#prefix-routing http://book.cakephp.org/2.0/en/core-libr

Re: How its better?

2014-06-26 Thread Ari Araujo
Hi, first excuse my English because I'm Brazilian! No need to use two installations of cake. Copy the App folder to outside the folder structure, you can rename it as you wish and create several of them. Hen change the following file with the name of your core: -> yourApp/webroot/index.php defi

Re: How its better?

2014-06-26 Thread euromark
Just use admin prefix and /normal/stuff + /admin/administrative/stuff no need to have two applications. mark Am Donnerstag, 26. Juni 2014 06:11:30 UTC+2 schrieb Mauricio Fritsch: > > How it's better? > > I want to develop a system of sales (a hotsite), and develop too a > administration of th

Re: 3.0 how do I use vendor ?

2014-06-26 Thread euromark
You could/should use https://github.com/ceeram/CakePdf it brings all with it - in a clean way. Am Dienstag, 24. Juni 2014 11:48:04 UTC+2 schrieb 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

Re: Use 2 tables for update

2014-06-26 Thread essteffan
No one? -- View this message in context: http://cakephp.1045679.n5.nabble.com/Use-2-tables-for-update-tp5718641p5718652.html Sent from the CakePHP mailing list archive at Nabble.com. -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- Yo

3.0 how do I use vendor ?

2014-06-26 Thread mark_story
Tcpdf has several composer packages. You can and should usr composer to dienload and install vendor libraries like tcpdf. Once the class has been installed, you can just start using the classes. Composer's autoloader will ensure the classes are loaded. -mark -- Like Us on FaceBook https://www

How its better?

2014-06-26 Thread Mauricio Fritsch
How it's better? I want to develop a system of sales (a hotsite), and develop too a administration of these page(s). First i think have two installations of cake using the same base, and reading more some people say to use plugins for develop the adminstration like a *subsytem*. Someone her