Re: what is "Powered by Blazon" in the Bakery?

2010-10-10 Thread Larry E. Masters
applications were built and going into details how to customize your installs of them. Kinda makes you wish you had been @ CakeFest this year right? -- Larry E. Masters On Sun, Oct 10, 2010 at 4:04 AM, keymaster wrote: > At the bottom of each bakery page is the new tagline: > > "Pow

Re: Get the last insert id

2010-10-25 Thread Larry E. Masters
$this->Model->save(); $id = $this->Model->id; -- Larry E. Masters On Mon, Oct 25, 2010 at 11:14 PM, cricket wrote: > On Mon, Oct 25, 2010 at 11:51 PM, Robert J. Maiolo > wrote: > > > > after your save statement.. > > > > $var = $this->Contact-&g

Re: CookBook login fail

2010-11-01 Thread Larry E. Masters
Changes are being made to the logins so we will have 1 user database to maintain with the addition of the new sites. The book has not been part of this migration yet but will be completed soon. -- Larry E. Masters On Mon, Nov 1, 2010 at 7:21 PM, Jean-Francois Bibeau wrote: > Same here. Ca

Re: CookBook login fail

2010-11-01 Thread Larry E. Masters
At this point no, the old login is not compatible with the newer systems. This will be corrected soon. -- Larry E. Masters On Mon, Nov 1, 2010 at 7:49 PM, Jean-Francois Bibeau wrote: > So no way to contribute to cook book while the migration is ongoing? : > ( > > On Nov 1, 8:31

Re: CookBook login fail

2010-11-01 Thread Larry E. Masters
Yes there are a lot of announcements I need to make since the recent CakeFest event in Chicago. -- Larry E. Masters On Mon, Nov 1, 2010 at 8:13 PM, Jean-Francois Bibeau wrote: > Cool, good to know it's not just me! Perhaps post an update once the > migration is done? :) > >

Re: Does every model really need a "name" field? --psybear

2010-11-04 Thread Larry E. Masters
var $name = 'ClassName'; is only needed for PHP 4. and var $useTable; is only needed if your class name does not match the singular version of table name. -- Larry E. Masters On Thu, Nov 4, 2010 at 7:15 AM, Almudena Garcia wrote: > You don't need that in the DB, what

Re: CakePHP 2.0 status

2010-12-13 Thread Larry E. Masters
We have not released 2.0 as an official release yet and it would be in dev releases before going through beta etc. -- Larry E. Masters 2010/12/13 Luis Miguel García Mancebo > Hi, > > I'm starting to design a new web application from the scratch, and a > month ago I was

Re: CakePHP 2.0 status

2010-12-14 Thread Larry E. Masters
Luis, Start building your app using 1.3, the migration to 2.0 should not be too hard to do when we release it. You can look at the current guides being written for 2.0 and go from there. Just build your application using PHP 5 features only. -- Larry E. Masters 2010/12/14 Luis Miguel García

Re: CakePHP 2.0 status

2010-12-15 Thread Larry E. Masters
:) I will say nothing more -- Larry E. Masters On Wed, Dec 15, 2010 at 3:34 AM, 100rk wrote: > I asked the same question in IRC channel 2 weeks ago, and Mark Story > told me: > > "I wouldn't use 2.0 for anything other than toy projects for now." > > My s

Re: CakePHP 2.0 error with __() in cake/console/templates/default/views/form.ctp

2010-12-22 Thread Larry E. Masters
Why do you think this is wrong in 2.0? -- Larry E. Masters On Wed, Dec 22, 2010 at 2:11 PM, Ryan Schmidt wrote: > As I'm refining the bake templates for my own needs, I thought it would be > prudent to adopt some changes from CakePHP 2.0 to give myself a head start. > In pe

Re: CakePHP 2.0 error with __() in cake/console/templates/default/views/form.ctp

2010-12-22 Thread Larry E. Masters
And 2.0 is not released... -- Larry E. Masters On Wed, Dec 22, 2010 at 2:11 PM, Ryan Schmidt wrote: > As I'm refining the bake templates for my own needs, I thought it would be > prudent to adopt some changes from CakePHP 2.0 to give myself a head start. > In perusing the 2.0

Re: CakePHP 2.0 error with __() in cake/console/templates/default/views/form.ctp

2010-12-22 Thread Larry E. Masters
. Masters On Wed, Dec 22, 2010 at 2:37 PM, Ryan Schmidt wrote: > On Dec 22, 2010, at 14:19, Larry E. Masters wrote: > > > Why do you think this is wrong in 2.0? > > In CakePHP 1.3.x the __() function echoes the message out by default. If > you want it to return the output instead

Re: CakePHP 2.0 error with __() in cake/console/templates/default/views/form.ctp

2010-12-22 Thread Larry E. Masters
es will be corrected. Besides writing great code, testing is one of our teams finer points. -- Larry E. Masters On Wed, Dec 22, 2010 at 2:58 PM, Ryan Schmidt wrote: > On Dec 22, 2010, at 14:40, Larry E. Masters wrote: > > > I know how it works in 2.0 do not need you to explain it to me. &g

Re: CakePHP 2.0 error with __() in cake/console/templates/default/views/form.ctp

2010-12-22 Thread Larry E. Masters
You are correct in bake this would be needed, I should have opened the code and looked where it was. Stay this diligent when we release 2.0 and help improve it. -- Larry E. Masters On Wed, Dec 22, 2010 at 3:33 PM, Ryan Schmidt wrote: > > On Dec 22, 2010, at 15:07, Larry E. Masters

Re: Perfmance, large number of users and CakePHP

2010-12-26 Thread Larry E. Masters
Yes it can handle it. Now go build it. -- Larry E. Masters On Sun, Dec 26, 2010 at 4:39 PM, Ziki wrote: > So there is no any answer for me. I do not wont precize answer just > aproximatly. > > But, tnx guys anywhere. > > P.S. I will not have new facebook, but with some sim

Re: Scaffolding vs Bake

2010-12-29 Thread Larry E. Masters
going to the command line every change you make. Hope that helps, -- Larry E. Masters On Wed, Dec 29, 2010 at 7:36 AM, John Maxim wrote: > Hi, > > I used scaffolding.. it was quite easy and fast. But I learned that > Bake is a better way... > > Any comment why there is sca

Re: Scaffolding vs Bake

2010-12-29 Thread Larry E. Masters
your bake templates and even use them if you like. -- Larry E. Masters On Wed, Dec 29, 2010 at 8:20 AM, Felipe Roman wrote: > Hi John, > > The main difference between scaffold and bake is bake will generate the PHP > code (model, controller,view) and you can customize it how yo

Re: Scaffolding vs Bake

2010-12-29 Thread Larry E. Masters
burden. When I added the scaffold code to the core CakePHP did not even have the shell scripts. I left it in the core because I am lazy and because of the reasons you repeated above. -- Larry E. Masters Check out the new CakePHP Questions site http://cakeqs.org and help others with their Cak

Re: $useTable problem

2010-12-30 Thread Larry E. Masters
did you run the migrations to setup the tables? -- Larry E. Masters On Thu, Dec 30, 2010 at 7:53 PM, john lyles wrote: > Hi cakers, > > I'm using the categories plugin from cakeDC. In the plugin there is a > model called Categorized and the $useTable variable is set to >

Re: $useTable problem

2010-12-30 Thread Larry E. Masters
Did you define the association correctly? Check that you do not have any typos. -- Larry E. Masters On Thu, Dec 30, 2010 at 8:17 PM, john lyles wrote: > No. I used the schema shell: cake schema create -plugin categories - > name categories > > On Dec 30, 8:56 pm, "Larry E

Re: how to use transactions in cakephp

2011-01-12 Thread Larry E. Masters
I just noticed this thread. You might want to look at a video someone uploaded to http://tv.cakephp.org recently showing how to use transactions with CakePHP http://tv.cakephp.org/video/guille1983/2011/01/10/database_transactions -- Larry E. Masters On Tue, Jan 11, 2011 at 11:44 PM, huoxito

Re: how to use transactions in cakephp

2011-01-14 Thread Larry E. Masters
Nice constructive criticism. You leave a comment for the user who submitted the video? I am sure he would take your suggestions and use them for another video, he might even suggest you do one yourself and submit it to help the community learn. -- Larry E. Masters On Jan 14, 2011, at 16:44

Re: Plugins

2011-01-15 Thread Larry E. Masters
Write the plugin if you need it. Chances are if you have not found it using a google search or on Github there is not one publicly available. -- Larry E. Masters On Sat, Jan 15, 2011 at 12:52 AM, earth wrote: > Any update on the plugins for Authorize.net (AIM method) and iTransact > p

CakePHP TV Updates

2011-01-18 Thread Larry E. Masters
can either create a video yourself an upload it or suggest a tutorial and someone else can claim the tutorial and create it. The launch contest ends on February 14th, 2011 and only members who have created tutorials have a chance to be voted the best producers and win any of the prizes -- Larry E

Re: Thinking about using Cake PHP to develop some sites

2011-01-22 Thread Larry E. Masters
Very scalable. -- Larry E. Masters On Sat, Jan 22, 2011 at 9:25 AM, elija wrote: > The sites are potentially going to be busy with millions of page views > a month (one has 1/2 million pages a month and is looking to expand), > my question is how scalable is a site built u

Re: Thinking about using Cake PHP to develop some sites

2011-01-22 Thread Larry E. Masters
Start with 1.3, write your code for PHP 5 though. And when 2.0 is released stable your upgrade will be easier. -- Larry E. Masters On Sat, Jan 22, 2011 at 10:44 AM, elija wrote: > Sweet! > > Now, given that this is in a corporate environment and the development > time is est

Re: Design templates

2011-01-22 Thread Larry E. Masters
Ill equipped? You mean to say we do not include something in the core by default? There is nothing stopping you from creating your own view class that will allow you to us any bloated template engine you want. -- Larry E. Masters On Sat, Jan 22, 2011 at 12:17 PM, eldorado2768 wrote: > I h

Re: NEW video tutorial on form searching mysql w/ pagination in CakePHP (very helpful!)

2011-01-25 Thread Larry E. Masters
You should upload your video to http://tv.cakephp.org you know there is a contest for the initial launch? http://tv.cakephp.org/launch-competition -- Larry E. Masters On Tue, Jan 25, 2011 at 2:41 PM, OldWest wrote: > For any of you who have been looking for a search plugin in Cake

Re: NEW video tutorial on form searching mysql w/ pagination in CakePHP (very helpful!)

2011-01-25 Thread Larry E. Masters
Oh and another thing, it is CakeDC (Cake Development Corporation) Not CakePHP DC :) -- Larry E. Masters On Tue, Jan 25, 2011 at 2:41 PM, OldWest wrote: > For any of you who have been looking for a search plugin in CakePHP, > CakePHP DC has released that and a video has been created it

Re: NEW video tutorial on form searching mysql w/ pagination in CakePHP (very helpful!)

2011-01-25 Thread Larry E. Masters
videos you have posted too if you want there is no restriction on when the videos were created by you. If the community likes them and votes you might walk away with the 1st Prize. Good luck, -- Larry E. Masters On Tue, Jan 25, 2011 at 3:07 PM, OldWest wrote: > Hi Larry, > > It's

Re: Security question

2011-01-25 Thread Larry E. Masters
Why do you think this be more "secure"? -- Larry E. Masters On Tue, Jan 25, 2011 at 3:13 PM, Dave Maharaj wrote: > Security as in secure not the Security component to not confuse anyone. > > > > Is it better / more secure / better practise to have a table with >

Re: Security question

2011-01-25 Thread Larry E. Masters
There is no benefit to doing this. -- Larry E. Masters On Tue, Jan 25, 2011 at 3:23 PM, Dave Maharaj wrote: > I do not think if it is or is not…hence the question. > > > > *From:* Larry E. Masters [mailto:php...@gmail.com] > *Sent:* Tuesday, January 25, 2011 5:49 P

Re: NEW video tutorial on form searching mysql w/ pagination in CakePHP (very helpful!)

2011-01-25 Thread Larry E. Masters
That is good, I only understand English :) No worries on that though, we will have a new feature soon that will help get the message of the tutorial across no matter what the language is. -- Larry E. Masters On Tue, Jan 25, 2011 at 3:22 PM, OldWest wrote: > Thanks. Look forward to see

Re: Security question

2011-01-25 Thread Larry E. Masters
Welcome. You might want to look at this plugin on github too, it might save you some time. https://github.com/CakeDC/users -- Larry E. Masters On Tue, Jan 25, 2011 at 3:32 PM, Dave Maharaj wrote: > Thanks. That’s all I needed to know J > > > > -- > Our newest site

Re: NEW video tutorial on form searching mysql w/ pagination in CakePHP (very helpful!)

2011-01-25 Thread Larry E. Masters
I think a lot of us "old timers" started with Perl, CGI and many of the other pre PHP languages which BTW, was just a wrapper to Perl right before I started using it :) -- Larry E. Masters On Tue, Jan 25, 2011 at 3:38 PM, OldWest wrote: > : ) .. Looking forward to that feature.

Re: Does the CakePHP ready for 'Large Scale' web applications?

2011-02-01 Thread Larry E. Masters
CakePHP can do it. No other opinion needed. -- Larry E. Masters On Tue, Feb 1, 2011 at 5:45 PM, Salines wrote: > Hi, > > My next project requires the following: > > Social networking > l10n / i18n > 60 or more tables in the database > many tables have multiple asso

Re: New Paul Jones Framework Benchmarks - Ahem...

2011-02-03 Thread Larry E. Masters
app on each and let people who know what they are doing build those apps. When I started this project and people started posting results like this I tried to get each development team to agree on creating the same app to be tested. None would agree so I left it and never looked back. -- Larry E

Re: A facelift for the CakePHP Book

2011-02-03 Thread Larry E. Masters
erent IP's after we blocked the first set. -- Larry E. Masters On Thu, Feb 3, 2011 at 9:13 AM, hill180 wrote: > Before it went dark, I liked it. Faster, easier to search. > > but alas... :) > > On Feb 3, 2011, at 8:11 AM, euromark wrote: > > > and now has a 500

Re: A facelift for the CakePHP Book

2011-02-03 Thread Larry E. Masters
No they will always be here. -- Larry E. Masters On Thu, Feb 3, 2011 at 9:24 AM, hill180 wrote: > Larry, > > Thank you for the effort. (don't take my comment as a dig - never meant as > one) Love the new look. > > on a side note, we'll never get rid of scrip

PHP Community Conference Nashville TN.

2011-02-07 Thread Larry E. Masters
, trying to figure out a good way to make it available to someone on our list who wants to attend. If someone has a suggestion how I can do this other than, "Give it to me" let me know. I will be there so look me up if you are going. -- Larry E. Masters We're planning the firs

Re: New vs Old and need help - FEMALE NEEDS HELP!

2011-02-11 Thread Larry E. Masters
Old hag might get some of us old timers attention. -- Larry E. Masters On Fri, Feb 11, 2011 at 6:52 PM, Krissy Masters wrote: > I do not think it matters if your new and need help or old cakepro and need > help. Why the need to emphasize? > > New you say! Are you? Well then let

Re: PHP 5.2 no longer supported (Implications for cake 2.0) ??

2010-07-26 Thread Larry E. Masters
CakePHP 2.0 will still work with PHP 5.3. There will not be namespaces or other features of PHP 5.3 in the release. -- Larry E. Masters On Mon, Jul 26, 2010 at 7:21 AM, keymaster wrote: > I saw this today on php.net: > > = > PHP 5.2

Re: Possible New CakePHP Stacoverflow.com style Q&A site, SO VOTE UP!

2010-08-03 Thread Larry E. Masters
Already way ahead of you on this... http://cakeqs.org -- Larry E. Masters On Tue, Aug 3, 2010 at 5:02 AM, Amir wrote: > Hello CakePHP Community, > > I have just made a proposal on the Stackexchange site staging website > for the creation of a new CakePHP Q&A site which wi

Re: patch to helper.phpfor __selectArray()

2011-09-28 Thread Larry E. Masters
you are opening is also an option. http://github.com/cakephp/cakephp -- Larry E. Masters On Wed, Sep 28, 2011 at 4:33 PM, lsiden wrote: > I think I may have found a bug in core. It's in cake/libs/view/ > helper.php in the function __selectArray(). Here is my patch: > >

Re: Fat Model Skinny Controlller? Is this really correct?

2011-09-29 Thread Larry E. Masters
Fat models are the best practice, use it. -- Larry E. Masters On Thu, Sep 29, 2011 at 4:27 AM, heohni < heidi.anselstet...@consultingteam.de> wrote: > Hi, > > the more I work with Cake, the more I use google and read a lot about > cake. > > And again and again I read a

Re: Can't locate the database?

2011-09-29 Thread Larry E. Masters
Did you read the part about conventions? Where did you see name your table cake_posts? Try following conventions first then look at moving onto more advanced things. -- Larry E. Masters On Thu, Sep 29, 2011 at 9:29 PM, Yves S. Garret wrote: > The tutorial didn't really tell me how to

Re: Can't locate the database?

2011-09-30 Thread Larry E. Masters
cake_posts.posts table or you named it wrong. There are settings you can put in your model if your table is not following conventions, this is covered in the book. -- Larry E. Masters On Fri, Sep 30, 2011 at 9:46 AM, Yves S. Garret wrote: > Does anyone know if it's possible to use multiple d

Re: Can't locate the database?

2011-09-30 Thread Larry E. Masters
Yves, Please create a sql dump of this database so I can see the table name. The paste you provided me is useless. I want to see a create statement -- Larry E. Masters On Fri, Sep 30, 2011 at 10:11 AM, Sam Sherlock wrote: > cakephp bin is for you to paste code into for others to rev

Re: Looking for a cakePHP developer

2011-09-30 Thread Larry E. Masters
I can almost guess at the script you have purchased. We have probably worked with it over 30 times @ http://cakedc.com would this happen to be a groupon clone? -- Larry E. Masters On Fri, Sep 30, 2011 at 9:32 AM, isrboy99 <1534marip...@gmail.com> wrote: > We are looking for

Re: Can't locate the database?

2011-09-30 Thread Larry E. Masters
this remove all setting in this class except for the var $default and change it to look like this, var $default = array( 'driver' => 'mysqli', 'persistent' => false, 'host' => 'localhost', 'login' => 'roo

Re: Can't locate the database?

2011-09-30 Thread Larry E. Masters
Make changes that I suggested first then move on to more advanced topics. If you can not get the simple blog tutorial working you should not be trying to move past it until you do. -- Larry E. Masters On Fri, Sep 30, 2011 at 11:08 AM, Yves S. Garret wrote: > "Unless you have set $use

CakeFest 2011 videos

2011-10-02 Thread Larry E. Masters
/playlists/view/CakeFoundation/cakefest_2011_talks_-_uk -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe

Re: PLEASE HELP ME! Warning (2): Cannot modify header information - headers already sent by cake php

2011-10-04 Thread Larry E. Masters
You have got to be kidding me. You would not seriously suggest this to someone would you? -- Larry E. Masters On Mon, Oct 3, 2011 at 11:34 PM, vaibhav pathak wrote: > hi friend > try ob_start(); function before the starting of class > CategoriesController extends AppControlle

CakePHP 2.0 Released

2011-10-16 Thread Larry E. Masters
] https://github.com/lorenzo/MongoCake - [16] http://tv.cakephp.org/video/CakeFoundation/2011/10/03/phpunit_and_you_-_by_mark_story - [17] https://github.com/cakephp/cakephp/zipball/2.0.0 - [18] http://cakephp.org/changelogs/2.0.0 -- Larry E. Masters -- Our newest site for the co

Re: CakePHP 2.0 Released

2011-10-17 Thread Larry E. Masters
2.0. -- Larry E. Masters On Oct 17, 2011, at 0:40, DerekGardiner wrote: > How long with cake 1.3* be supported? We've just spent a significant > amount of time writing an application in 1.3* and would be gutted to > find out if we have to port to 2.0 already. > > On Oc

Re: CakePHP 2.0 Released

2011-10-17 Thread Larry E. Masters
Yes, I am sure those projects would enjoy having help, go for it. -- Larry E. Masters On Oct 17, 2011, at 0:44, Matt Kaufman wrote: > Yes, Also --- Does this bring a lot of opportunity to come for rewriting and > enhancing the quality of many of the major and or popular plugins out

Re: cakephp and security

2011-10-18 Thread Larry E. Masters
the default values set in the method signature. Next you will find we do not use this on user submitted data in the core. What other concerns do you have? -- Larry E. Masters On Tue, Oct 18, 2011 at 12:24 PM, Dee Johnson wrote: > this may be true but I have found that it is fleeting to ar

Re: 2.0 upgrade shell

2011-10-18 Thread Larry E. Masters
Thanks for updating your progress here. I hope this will help others as they start migrating to 2.0. If you find anything that can help us improve the upgrade process at the core level let us know http://cakephp.lighthouseapp.com/dashboard -- Larry E. Masters On Tue, Oct 18, 2011 at 12:27 PM

Re: cakephp and security

2011-10-18 Thread Larry E. Masters
into details about implementation. -- Larry E. Masters On Tue, Oct 18, 2011 at 12:38 PM, Dee Johnson wrote: > Fleeting basically meaning it's pointless to argue since the security > program mandates that all issues it finds are corrected. I can argue the > points mentioned ea

Re: cakephp and security

2011-10-18 Thread Larry E. Masters
Dee, Have them contact me personally if there are any problems trying to explain it. -- Larry E. Masters On Tue, Oct 18, 2011 at 12:56 PM, Dee Johnson wrote: > Yikes. Sounds fair. I will go the route of trying to explain the non > issue first and then if that fails to to imp

Re: cakephp and security

2011-10-18 Thread Larry E. Masters
Ok, give me a few need a break then I can write up a quick response. -- Larry E. Masters On Tue, Oct 18, 2011 at 1:02 PM, Dee Johnson wrote: > Better yet, (im sure your time is valuable) if you can post a paragraph (or > less) on why this isn't an issue that would be greatly

Re: 2.0 view folders naming convention

2011-10-21 Thread Larry E. Masters
Thanks, bye. -- Larry E. Masters On Oct 21, 2011, at 11:02, Miles J wrote: > Oh you mean the PHP standards group? CakePHP is far from following > that. > > I think capitalized folder names are the worst kinds of implementation > and now making every folder work that way? St

Re: 2.0 view folders naming convention

2011-10-21 Thread Larry E. Masters
before you spend a lot of time ranting about something you apparently did not investigate before typing your previous emails. -- Larry E. Masters On Oct 21, 2011, at 11:02, Miles J wrote: > Oh you mean the PHP standards group? CakePHP is far from following > that. > > I think capita

Re: Seeking clarification

2011-10-26 Thread Larry E. Masters
It is not needed, and should not be used. -- Larry E. Masters On Wed, Oct 26, 2011 at 11:30 AM, Jeremy Burns wrote: > Just asking a possibly dumb question. I'm working through the 2.0 > tutorial to become more familiar with it. Is it required/advised/ > unnecessary to add: >

Re: Seeking clarification

2011-10-26 Thread Larry E. Masters
ote the code. You can removed defining it in your classes. https://github.com/cakephp/cakephp/blob/2.0/lib/Cake/Controller/Controller.php#L305 https://github.com/cakephp/cakephp/blob/2.0/lib/Cake/Model/Model.php#L649 -- Larry E. Masters On Wed, Oct 26, 2011 at 5:22 PM, 100rk wrote: > IMO

Re: Why are file names now CamelCased?

2011-11-03 Thread Larry E. Masters
You miss the announcement or fail to read it? Third bullet point http://bakery.cakephp.org/articles/lorenzo/2011/10/16/cakephp_2_0_released -- Larry E. Masters On Thu, Nov 3, 2011 at 2:02 PM, Martin Bean wrote: > Having been a long-time user of CakePHP 1.3, I was wondering why file

Re: CakePhp related domain

2011-11-07 Thread Larry E. Masters
I like how people use a registered trademark ( http://tinyurl.com/cjgr6yf ) and then try to profit from it. Should I send you a letter now or do you prefer to remove it yourself? -- Larry E. Masters On Mon, Nov 7, 2011 at 10:46 PM, Sandy Wilkins wrote: > > Hey in case anyone is inte

Re: CakePhp related domain

2011-11-11 Thread Larry E. Masters
t owns and does so to protect our community of users. If an organization does not protect their trademarks, they run a chance of forfeiting them. I have been through this process a few times since the foundation was formed. -- Larry E. Masters On Wed, Nov 9, 2011 at 1:20 PM, Sandy wrote: > &

Re: CakePhp related domain

2011-11-12 Thread Larry E. Masters
The trademark owner can contact the ICANN and ask for the domain* > suspension, right? > > * Wich contains the trademarked name > > Thiago, Yes that is what we have done before. -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp

Re: Same Old?

2011-12-01 Thread Larry E. Masters
experience as a requirement, but not the only requirement. As a person who hires developers often I do not base my hiring on CakePHP experience alone. Thank you, -- Larry E. Masters Founder CakePHP http://www.cakephp.org On Wednesday, November 30, 2011 at 12:05 AM, Krissy Masters wrote

Re: Organizing Controllers into subfolders in CakePHP 2

2011-12-20 Thread Larry E. Masters
As we are moving CakePHP closer to a version of PHP the supports namespaces the decision was made now to remove this "feature". We also started following the PSR-0 for CakePHP 2.0 and above, to comply with it we would have needed to remove them anyway. -- Larry E. Masters On Tue, De

Re: cake forge down?

2011-12-26 Thread Larry E. Masters
We took CakeForge offline almost a year ago after suggesting people start using GtHub to distribute their projects. -- Larry E. Masters On Mon, Dec 26, 2011 at 10:10 AM, Alida wrote: > Is cakeforge.org down? trying to dowload the smartyhelper and the > server is not responding > &

Re: Disappointed with the training.

2012-01-04 Thread Larry E. Masters
-- Larry E. Masters On Wed, Jan 4, 2012 at 10:33 AM, Nate wrote: > Right John. > > But I'm not needing a "how to program" tutorial. If you're using > CakePHP, chances are you're already familiar with the concepts of > programming with PHP - you&#x

Re: Disappointed with the training.

2012-01-04 Thread Larry E. Masters
who are providing you with CakePHP. If you want something to fit your schedule you could hire http://cakedc.comto offer you training at any time or any where you like. -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new

Re: Disappointed with the training.

2012-01-04 Thread Larry E. Masters
sessions too. CakeDC offers code review if you need that, http://cakedc.com -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related

Re: The Great Web Framework Shootout

2012-02-20 Thread Larry E. Masters
can do, build a real world application or something close to one in each framework and test it instead. -- Larry E. Masters On Mon, Feb 20, 2012 at 10:20 AM, Lucho Molina wrote: > @euromark: Point taken. > @Justin: That's cool! But any of the other frameworks could be minimally >

Re: Using char(36) as a uuid

2012-02-29 Thread Larry E. Masters
check out all of the plugins at http://cakedc.github.com all of them are using UUID -- Larry E. Masters On Wed, Feb 29, 2012 at 8:53 AM, Ighor Martins wrote: > Hello, > > I was thinking about the use of integer as primary key of the table or use > a char(36) as UUID in the en

Re: "Mass Assignment Vulnerability" - protection in Cake

2012-03-06 Thread Larry E. Masters
the a > better way? CakePHP has protected against this for years. Follow conventions, use the Security Component and Form Helper. $components = array('Security'); -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out

Re: requestAction question

2011-02-24 Thread Larry E. Masters
When used properly it has it uses. But I did not think people would use it the way they do when I added it the core. http://mark-story.com/posts/view/how-using-requestaction-increased-performance-on-my-site -- Larry E. Masters On Thu, Feb 24, 2011 at 8:31 PM, Sam Sherlock wrote: > Andy G

Re: On the road to Da Vinci 2.0

2011-03-02 Thread Larry E. Masters
He should email me, I am the one who banned him. And since I am the "owner" of the list I think that gives me the right to ban for content I consider spam and as mentioned in this thread it was cross posted in a lot of other places. -- Larry E. Masters On Wed, Mar 2, 2011 at 7:

Development Position

2011-04-06 Thread Larry E. Masters
of course. Expect to get deep understanding of the CakePHP core while contributing back to the project in many ways. -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help

Recent CakePHP US 3 City Tour

2011-04-06 Thread Larry E. Masters
the CakePHP TV site. http://bit.ly/gmG3MQ Hope you enjoy them, -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To

Relaunched CakePHP Live Site

2011-04-06 Thread Larry E. Masters
this thread with topics they would like to see us discuss on these live video streams. -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP

Re: Relaunched CakePHP Live Site

2011-04-07 Thread Larry E. Masters
All the people on this list and not one person has suggestions what they would like to see the core development discuss live? -- Larry E. Masters On Thu, Apr 7, 2011 at 1:35 AM, Larry E. Masters wrote: > Some of you may not be aware that we relaunched the CakePHP Live site > recently.

Re: Cake core might benefit from some more developers helping out

2011-04-10 Thread Larry E. Masters
forward and on target faster than ever. -- Larry E. Masters On Mon, Apr 11, 2011 at 12:34 AM, keymaster wrote: > Wonderful, thanks very much Larry. > > Hopefully the core developers will start using the new forum as their main > outlet for discussion of current development issues and fut

Re: Cake vs other frameworks benchmarks

2011-05-19 Thread Larry E. Masters
se benchmarks advice on turning off some of the "magic" in CakePHP so it is more in line with the setup of the others tested. As a user of the framework you have just as much ability to put these claims to rest as anyone working on the CakePHP core team. -- Larry E. Masters -- Our new

Re: Jake source files

2011-06-05 Thread Larry E. Masters
Jake is a project using CakePHP/Joomla together it has been around for a while. I do not know where it is. -- Larry E. Masters On Sun, Jun 5, 2011 at 6:24 AM, Tilen Majerle wrote: > he was probaby thinking for CAKE...or if not...then he fail with group :) > -- > Lep pozdrav, Tile

Re: Future of CakePHP

2011-06-06 Thread Larry E. Masters
Thats old old news, CakePHP isn't going anywhere. > Miles, Sure it is :) we are moving forward! -- Larry E. Masters -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help othe

Re: CakePHP Bakery RSS Spam

2011-06-09 Thread Larry E. Masters
The bakery is now community moderated you can login and click "Report this Article" -- Larry E. Masters On Thu, Jun 9, 2011 at 2:04 PM, lsenft wrote: > I just recently subscribed to the CakePHP Bakery RSS feed. The > article below is showing a bunch of spam links in Google Rea

Re: How to secure database info in database.php

2011-06-12 Thread Larry E. Masters
E. Masters On Sat, Jun 11, 2011 at 2:25 PM, monish001 wrote: > Hi > > I am making my first app using cakephp. > > Cakephp uses database.php to store database info. Do we need to take > some steps to secure database info in database.php? > > Regards > Monish >

Re: Where should i contact right people in CakePHP.org because this security critical problem

2011-06-21 Thread Larry E. Masters
Are you saying this was on the CakePHP website or a random site you where visiting? -- Larry E. Masters On Mon, Jun 20, 2011 at 2:18 PM, yoodey wrote: > Hello all, > > I'm randomly browsing and get a website with Database error > connection. > It gave me error page : Warnin

Re: CakeFest?

2011-06-29 Thread Larry E. Masters
://twitter.com/cakephp it is updated often with information -- Larry E. Masters On Wed, Jun 29, 2011 at 6:03 AM, Jeremy Burns wrote: > What's the latest with CakeFest (64 days to go)? There are no schedule > details, no news items since first posting on 14th May, no sponsors, > t

Re: CakeFest?

2011-06-29 Thread Larry E. Masters
Thomas, What other information are you looking for? -- Larry E. Masters On Wed, Jun 29, 2011 at 6:22 AM, Thomas Ploch wrote: > I am asking that myself... > > We are thinking about going to Manchester, but I really hope that there > will be some more information soon. > > -

Re: CakeFest?

2011-06-29 Thread Larry E. Masters
Thomas, Submit a talk, you still have a few days :) -- Larry E. Masters On Wed, Jun 29, 2011 at 8:14 AM, Thomas Ploch wrote: > Larry, > > well, the schedule being published after June 30th is already sth I > wanted to know. :) > > We'd really like to see an advanced t

Re: CakeFest?

2011-06-29 Thread Larry E. Masters
Prices are early bird, they will be increasing soon after we publish the schedule. -- Larry E. Masters On Wed, Jun 29, 2011 at 7:56 AM, Jeremy Burns | Class Outfit < jeremybu...@classoutfit.com> wrote: > Thanks Larry. Can I reset my password? > > Are the prices on the site the

Re: CakeFest?

2011-06-29 Thread Larry E. Masters
Yes we have a lot of talks to review and select from. -- Larry E. Masters On Wed, Jun 29, 2011 at 11:08 AM, wrote: > larry > > > Prices are early bird, they will be increasing soon after we publish the > > schedule. > > according to the cakefest website, early bird pric

Re: What happened to the cake forge ?

2011-06-29 Thread Larry E. Masters
The site was decommissioned months ago and everyone was asked to move their projects to github.com -- Larry E. Masters On Wed, Jun 29, 2011 at 5:03 PM, the_woodsman wrote: > Hi, > > I was browsing the bakery, and wanted to take a look at this project: > > http://bakery.cakep

Call out to the CakePHP community.

2011-06-30 Thread Larry E. Masters
This is off topic of our normal discussions but I felt I needed to post it to our mail list. I wrote an article about some recent happening to one of our CakePHP community members. http://bit.ly/mDrTN7 Let's show everyone how strong our community is. -- Larry E. Masters -- Our newest sit

Re: CakePHP 1.3.11 and 2.0.0-beta released

2011-07-26 Thread Larry E. Masters
Ryan, Anything productive to say to the team? Jose's announcement is his first for the project, why not be happy like others that the project is still progressing? -- Larry E. Masters On Tue, Jul 26, 2011 at 3:46 PM, Ryan Schmidt wrote: > > On Jul 26, 2011, at 15:03, José Lo

Re: Pre CakeFest meetup in Manchester?

2011-08-25 Thread Larry E. Masters
Graham Weldon and I will be there early. He is already at the venue and I am delayed in Atlanta GA because I missed my connecting flight. I am trying to get a flight through London tonight, if not it may be Saturday before I leave the states. -- Larry E. Masters On Aug 25, 2011, at 18:04

  1   2   3   4   5   >