Hi warrenchua,

this might be relavent (from memory):

findByFirstName will look for
the field "firstname" If you are running php4  (because it´s case
insensetive for method/class names)
the field "first_name" If you are running php5  (because it´s case
sensetive, and the capital letter is converted to an underscore and
lower case letter)

findByFirst_name will look for
the field "first_name" If you are running php4
the field "first__name" If you are running php5  (irrespective of N or
n)*

I deduce that you are developing using PHP5 but deploying to PHP4. I
think an immediate fix is to put underscores in the findBy method
calls.

HTH, Cheers,

AD7six
* Nate, is that correct, and if so is it deliberate?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to