Chances are you have a rogue while/for loop or similar. For example,
if you were to write:
$keep_going = true;
while ($keep_going)
{
$model = $this->Model->find();
}
...the while loop would never end. PHP has a setting for a maximum
period of time to stop this from literally going on forever, and
that's the error you're getting. Double check your code for infinite
loops, or possibly any recursive code.
On Jul 19, 11:25 pm, kicaj <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm new here, and I start write in Cake, but I have problem on start,
> when i wrote my first Model and Controller (very simple content), I
> usually get message from PHP, about my execution time is ending (30s).
> Why?
> This problem is on 1.2.0.7296-rc2
>
> My station is PHP 5.2.4 and Apache 2.2.9
>
> This problem does not on 1.1.19.6305
>
> Bye
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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?hl=en
-~----------~----~----~----~------~----~------~--~---