[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-24 Thread larry
Thanks, Lee. I've used sfErrorHandlerPlugin on other projects, but not yet this one. I'll install it tonight. On Oct 24, 7:13 am, Lee Bolding wrote: > If you search the mailing list archives, there are plenty of instances   > where I've talked about this before... > > Usually, it's caused when

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-24 Thread larry
On Oct 23, 11:41 pm, Eno wrote: > On Fri, 23 Oct 2009, larry wrote: > > Seems to be working now. Not sure what happened. I rebuilt the model, > > the forms, and cleared the cache, and now it works. But it is very odd > > that there was no error in the error log, nor on screen. > > Im guessing t

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-24 Thread Eno
On Sat, 24 Oct 2009, Lee Bolding wrote: > Where addComment is expecting a Comment object, but for some reason or > another it gets supplied something else (most commonly NULL or FALSE, > because a previous call to retrieve or create the Comment object > returned NULL/FALSE). > > If you use

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-24 Thread Lee Bolding
If you search the mailing list archives, there are plenty of instances where I've talked about this before... Usually, it's caused when a type-cast arg is required by a function, and the incorrect type of arg is supplied... EG public function addComment(Comment $comment) Where addComment i

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-23 Thread Eno
On Fri, 23 Oct 2009, larry wrote: > Seems to be working now. Not sure what happened. I rebuilt the model, > the forms, and cleared the cache, and now it works. But it is very odd > that there was no error in the error log, nor on screen. Im guessing that clearing the cache helped :-) -- --

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-23 Thread larry
Seems to be working now. Not sure what happened. I rebuilt the model, the forms, and cleared the cache, and now it works. But it is very odd that there was no error in the error log, nor on screen. On Oct 23, 9:35 pm, larry wrote: > My site seems to be dying on this line: > > > > I look in the

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-23 Thread larry
> On Fri, 23 Oct 2009, larry wrote: > > My site seems to be dying on this line: > > > > > > I look in the error log and I find no fatal error, only errors and > > warnings, none fatal. What could suppress a fatal error so it doesn't > > show up in the error log? > > Maybe look at your Apache er

[symfony-users] Re: what would suppress a fatal error so it does not appear in the error log?

2009-10-23 Thread Eno
On Fri, 23 Oct 2009, larry wrote: > My site seems to be dying on this line: > > > > I look in the error log and I find no fatal error, only errors and > warnings, none fatal. What could suppress a fatal error so it doesn't > show up in the error log? Maybe look at your Apache error log? --