Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-18 Thread blain57
Yup, i upgraded to 1.2 beta and the problem seems to be fixed. thanx dardo. On Feb 18, 12:19 am, "Dardo Sordi Bogado" <[EMAIL PROTECTED]> wrote: > I've tried scaffolding on both, regeneration_types and > ticket_activities. Both works well. I'm using cake 1.2 from svn. > > On Feb 17, 2008 9:46 AM

Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-17 Thread Dardo Sordi Bogado
I've tried scaffolding on both, regeneration_types and ticket_activities. Both works well. I'm using cake 1.2 from svn. On Feb 17, 2008 9:46 AM, blain57 <[EMAIL PROTECTED]> wrote: > > Here are the errors from a controller named RegenerationTypes > with model RegenerationType and db table regenera

Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-17 Thread blain57
Here are the errors from a controller named RegenerationTypes with model RegenerationType and db table regeneration_types Notice: Trying to get property of non-object in C:\Inetpub\wwwroot\*** \cake\libs\controller\controller.php on line 666 Notice: Trying to get property of non-object in C:\In

Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-15 Thread Dardo Sordi Bogado
Can you post the complete error messages? On Fri, Feb 15, 2008 at 10:20 AM, blain57 <[EMAIL PROTECTED]> wrote: > > Is it possible to give me an example based on a table named > ticket_activities? > > I opened the inflection file.. and was shocked ! :P > > thanx > > > On Feb 15, 1:48 pm, "Dar

Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-15 Thread blain57
Is it possible to give me an example based on a table named ticket_activities? I opened the inflection file.. and was shocked ! :P thanx On Feb 15, 1:48 pm, "Dardo Sordi Bogado" <[EMAIL PROTECTED]> wrote: > Try setting it on config/inflections.php > > On Thu, Feb 14, 2008 at 2:30 PM, blain57 <[

Re: Cakephp pluralisation doesnt work with my scaffolds..

2008-02-15 Thread Dardo Sordi Bogado
Try setting it on config/inflections.php On Thu, Feb 14, 2008 at 2:30 PM, blain57 <[EMAIL PROTECTED]> wrote: > > Hi all, > > simple example: > > i make a ticket_activities table > i make a ticket_activity.php file model with: > > class TicketActivity extends AppModel > { > var $name = '

Cakephp pluralisation doesnt work with my scaffolds..

2008-02-14 Thread blain57
Hi all, simple example: i make a ticket_activities table i make a ticket_activity.php file model with: class TicketActivity extends AppModel { var $name = 'TicketActivity'; } and a ticket_activities_controller.php with: class TicketActivitiesController extends AppController { var $sca