Re: No validation after deploy

2010-05-22 Thread Matteo
Hi all,

solved. I'm posting that hoping it could be of some help.

The cause was the name of my model file. I used 'Latest.php' instead
of 'latest.php'. Because of the first capital letter, in the host
server validation didn't work.

My machine and the which one of the remote server are BOTH .nix
machines.

BUT pay attention if, like my case, you develop on a Mac with Mac Os
Extended Journaled filesystem that's different from the Extended
journaled (Case-sensitive) one!!

Thanx

Matteo

On May 21, 10:28 am, Matteo  wrote:
> thanx Nicolas, however the PHP version is the 5.2.x in both
> environments.
>
> On May 21, 9:31 am, "Nicolas Maleve"  wrote:
>
>
>
>
>
> > I had a similar problem once with a validation rule.
> > It was due to the difference of PHP versions between my dev environment
> > (php5) and the production environment (php4)
> > Upgrading the production environment to php5 was the solution, but it
> > isn't always possible.
>
> > ,n
> > Le Ven 21 mai 2010 9:08, Matteo a écrit :
>
> > > Hi Andrei,
>
> > > the "model" one, please see below:
>
> > > class Latest extends AppModel
> > > {
> > >             var $name = 'Latest';
>
> > >             var $validate = array(
> > >                   'title' =>  array('rule' => 'notEmpty', 'message' =>
> > > 'mandatory field'),
> > >                   'body' =>  array('rule' => 'notEmpty', 'message' =>
> > > 'mandatory field')
> > >             );
> > > }
>
> > > How is it possible it works on my Mac and not online??
>
> > > Thank you
>
> > > Matteo
>
> > > On May 21, 8:48 am, Andrei Mita  wrote:
> > >> Do you use model validation or a custom made one?
>
> > >> On Thu, May 20, 2010 at 9:58 PM, Matteo  wrote:
> > >> > Hi all,
>
> > >> > hope you can help a very newbe one.
>
> > >> > I have a very simple form with two fields: title and body.
>
> > >> > In my dev enviroment I check for the two fields to be fill.
> > >> > Validation works fine, if the fields are left blank, it shows the
> > >> > message error.
>
> > >> > The problem is with deploy. In my deploy env. (dreamhost) if I leave
> > >> > the fields blank it submits the same!!
>
> > >> > Have you ever experienced anything similar??
>
> > >> > Can't find a solution.
>
> > >> > A case similar to that can be due to .htaccess configuration?
>
> > >> > I can't think at any other couses!!
>
> > >> > Working with 1.2.7 V.
>
> > >> > Thanx a lot
>
> > >> > Matteo
>
> > >> > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp
> > >> others
> > >> > with their CakePHP related questions.
>
> > >> > You received this message because you are subscribed to the Google
> > >> Groups
> > >> > "CakePHP" group.
> > >> > To post to this group, send email to cake-php@googlegroups.com
> > >> > To unsubscribe from this group, send email to
> > >> > cake-php+unsubscr...@googlegroups.com > >> om>For more options, visit this group at
> > >> >http://groups.google.com/group/cake-php?hl=en
>
> > >> Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
> > >> with their CakePHP related questions.
>
> > >> You received this message because you are subscribed to the Google
> > >> Groups "CakePHP" group.
> > >> To post to this group, send email to cake-php@googlegroups.com
> > >> To unsubscribe from this group, send email to
> > >> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> > >> athttp://groups.google.com/group/cake-php?hl=en
>
> > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
> > > with their CakePHP related questions.
>
> > > You received this message because you are subscribed to the Google Groups
> > > "CakePHP" group.
> > > To post to this group, send email to cake-php@googlegroups.com
> > > To unsubscribe from this group, send email to
> > > cake-php+unsubscr...@googlegroups.com For more options, visit this group
> > > athttp://groups.google.com/group/cake-php?hl=en
>
> >          *
> >     *
> >   *
> >   *
> >    *
> >      *
> >        *
> >           *
> >               *
> >                   C O N S T A N T
> >                        V Z W
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others 
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups 
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.com For more options, visit this group 
> > athttp://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others with 
> their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group 
> athttp://groups.google.com/group/ca

Re: No validation after deploy

2010-05-21 Thread Matteo
thanx Nicolas, however the PHP version is the 5.2.x in both
environments.


On May 21, 9:31 am, "Nicolas Maleve"  wrote:
> I had a similar problem once with a validation rule.
> It was due to the difference of PHP versions between my dev environment
> (php5) and the production environment (php4)
> Upgrading the production environment to php5 was the solution, but it
> isn't always possible.
>
> ,n
> Le Ven 21 mai 2010 9:08, Matteo a écrit :
>
>
>
> > Hi Andrei,
>
> > the "model" one, please see below:
>
> > class Latest extends AppModel
> > {
> >             var $name = 'Latest';
>
> >             var $validate = array(
> >                   'title' =>  array('rule' => 'notEmpty', 'message' =>
> > 'mandatory field'),
> >                   'body' =>  array('rule' => 'notEmpty', 'message' =>
> > 'mandatory field')
> >             );
> > }
>
> > How is it possible it works on my Mac and not online??
>
> > Thank you
>
> > Matteo
>
> > On May 21, 8:48 am, Andrei Mita  wrote:
> >> Do you use model validation or a custom made one?
>
> >> On Thu, May 20, 2010 at 9:58 PM, Matteo  wrote:
> >> > Hi all,
>
> >> > hope you can help a very newbe one.
>
> >> > I have a very simple form with two fields: title and body.
>
> >> > In my dev enviroment I check for the two fields to be fill.
> >> > Validation works fine, if the fields are left blank, it shows the
> >> > message error.
>
> >> > The problem is with deploy. In my deploy env. (dreamhost) if I leave
> >> > the fields blank it submits the same!!
>
> >> > Have you ever experienced anything similar??
>
> >> > Can't find a solution.
>
> >> > A case similar to that can be due to .htaccess configuration?
>
> >> > I can't think at any other couses!!
>
> >> > Working with 1.2.7 V.
>
> >> > Thanx a lot
>
> >> > Matteo
>
> >> > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp
> >> others
> >> > with their CakePHP related questions.
>
> >> > You received this message because you are subscribed to the Google
> >> Groups
> >> > "CakePHP" group.
> >> > To post to this group, send email to cake-php@googlegroups.com
> >> > To unsubscribe from this group, send email to
> >> > cake-php+unsubscr...@googlegroups.com >> om>For more options, visit this group at
> >> >http://groups.google.com/group/cake-php?hl=en
>
> >> Check out the new CakePHP Questions sitehttp://cakeqs.organdhelp others
> >> with their CakePHP related questions.
>
> >> You received this message because you are subscribed to the Google
> >> Groups "CakePHP" group.
> >> To post to this group, send email to cake-php@googlegroups.com
> >> To unsubscribe from this group, send email to
> >> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> >> athttp://groups.google.com/group/cake-php?hl=en
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.com For more options, visit this group
> > athttp://groups.google.com/group/cake-php?hl=en
>
>          *
>     *
>   *
>   *
>    *
>      *
>        *
>           *
>               *
>                   C O N S T A N T
>                        V Z W
>
> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others with 
> their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group 
> athttp://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: No validation after deploy

2010-05-21 Thread Nicolas Maleve
I had a similar problem once with a validation rule.
It was due to the difference of PHP versions between my dev environment
(php5) and the production environment (php4)
Upgrading the production environment to php5 was the solution, but it
isn't always possible.

,n
Le Ven 21 mai 2010 9:08, Matteo a écrit :
> Hi Andrei,
>
> the "model" one, please see below:
>
> class Latest extends AppModel
> {
> var $name = 'Latest';
>
> var $validate = array(
>   'title' =>  array('rule' => 'notEmpty', 'message' =>
> 'mandatory field'),
>   'body' =>  array('rule' => 'notEmpty', 'message' =>
> 'mandatory field')
> );
> }
>
> How is it possible it works on my Mac and not online??
>
> Thank you
>
> Matteo
>
> On May 21, 8:48 am, Andrei Mita  wrote:
>> Do you use model validation or a custom made one?
>>
>>
>>
>>
>>
>> On Thu, May 20, 2010 at 9:58 PM, Matteo  wrote:
>> > Hi all,
>>
>> > hope you can help a very newbe one.
>>
>> > I have a very simple form with two fields: title and body.
>>
>> > In my dev enviroment I check for the two fields to be fill.
>> > Validation works fine, if the fields are left blank, it shows the
>> > message error.
>>
>> > The problem is with deploy. In my deploy env. (dreamhost) if I leave
>> > the fields blank it submits the same!!
>>
>> > Have you ever experienced anything similar??
>>
>> > Can't find a solution.
>>
>> > A case similar to that can be due to .htaccess configuration?
>>
>> > I can't think at any other couses!!
>>
>> > Working with 1.2.7 V.
>>
>> > Thanx a lot
>>
>> > Matteo
>>
>> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help
>> others
>> > with their CakePHP related questions.
>>
>> > You received this message because you are subscribed to the Google
>> Groups
>> > "CakePHP" group.
>> > To post to this group, send email to cake-php@googlegroups.com
>> > To unsubscribe from this group, send email to
>> > cake-php+unsubscr...@googlegroups.com> om>For more options, visit this group at
>> >http://groups.google.com/group/cake-php?hl=en
>>
>> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
>> with their CakePHP related questions.
>>
>> You received this message because you are subscribed to the Google
>> Groups "CakePHP" group.
>> To post to this group, send email to cake-php@googlegroups.com
>> To unsubscribe from this group, send email to
>> cake-php+unsubscr...@googlegroups.com For more options, visit this group
>> athttp://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group
> at http://groups.google.com/group/cake-php?hl=en
>


 *
*
  *
  *
   *
 *
   *
  *
  *
  C O N S T A N T
   V Z W




Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: No validation after deploy

2010-05-21 Thread Matteo
Hi Andrei,

the "model" one, please see below:

class Latest extends AppModel
{
var $name = 'Latest';

var $validate = array(
  'title' =>  array('rule' => 'notEmpty', 'message' =>
'mandatory field'),
  'body' =>  array('rule' => 'notEmpty', 'message' =>
'mandatory field')
);
}

How is it possible it works on my Mac and not online??

Thank you

Matteo

On May 21, 8:48 am, Andrei Mita  wrote:
> Do you use model validation or a custom made one?
>
>
>
>
>
> On Thu, May 20, 2010 at 9:58 PM, Matteo  wrote:
> > Hi all,
>
> > hope you can help a very newbe one.
>
> > I have a very simple form with two fields: title and body.
>
> > In my dev enviroment I check for the two fields to be fill.
> > Validation works fine, if the fields are left blank, it shows the
> > message error.
>
> > The problem is with deploy. In my deploy env. (dreamhost) if I leave
> > the fields blank it submits the same!!
>
> > Have you ever experienced anything similar??
>
> > Can't find a solution.
>
> > A case similar to that can be due to .htaccess configuration?
>
> > I can't think at any other couses!!
>
> > Working with 1.2.7 V.
>
> > Thanx a lot
>
> > Matteo
>
> > Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
> > with their CakePHP related questions.
>
> > You received this message because you are subscribed to the Google Groups
> > "CakePHP" group.
> > To post to this group, send email to cake-php@googlegroups.com
> > To unsubscribe from this group, send email to
> > cake-php+unsubscr...@googlegroups.com > om>For more options, visit this group at
> >http://groups.google.com/group/cake-php?hl=en
>
> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others with 
> their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group 
> athttp://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: No validation after deploy

2010-05-20 Thread Andrei Mita
Do you use model validation or a custom made one?


On Thu, May 20, 2010 at 9:58 PM, Matteo  wrote:

> Hi all,
>
> hope you can help a very newbe one.
>
> I have a very simple form with two fields: title and body.
>
> In my dev enviroment I check for the two fields to be fill.
> Validation works fine, if the fields are left blank, it shows the
> message error.
>
> The problem is with deploy. In my deploy env. (dreamhost) if I leave
> the fields blank it submits the same!!
>
> Have you ever experienced anything similar??
>
> Can't find a solution.
>
> A case similar to that can be due to .htaccess configuration?
>
> I can't think at any other couses!!
>
> Working with 1.2.7 V.
>
> Thanx a lot
>
> Matteo
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.comFor
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en