[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread FÁSI Gábor
Will that log startup errors? At the initial deploy you cannot be sure that even your app starts successfully, let alone it can connect to the database. On Thu, Apr 16, 2009 at 11:13, Lee Bolding l...@leesbian.net wrote: Or use my sfErrorHandlerPlugin ;)

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Lee Bolding
Or use my sfErrorHandlerPlugin ;) http://www.symfony-project.org/plugins/sfErrorHandlerPlugin On 16 Apr 2009, at 09:58, FÁSI Gábor wrote: I suggest uploading the _dev front controller and commenting the die() command, but make sure you delete is as soon as you've finished. On Thu, Apr 16,

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread FÁSI Gábor
I suggest uploading the _dev front controller and commenting the die() command, but make sure you delete is as soon as you've finished. On Thu, Apr 16, 2009 at 10:52, Roland Cruse cruses...@gmail.com wrote: Hi symfony coders I making a rest application which does not show php syntax errors.

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Lee Bolding
I think you answered your own question - if the app doesn't start properly, a plugin to the app (which didn't start) isn't ever going to get instantiated to be able to tell you that ;) If Symfony even fails to start, I believe you should see your default 500 error page, as configured in

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Roland Cruse
I installed sfErrorHandler (using symfony 1.2) The log showed proof of installation: Apr 16 05:55:37 symfony [info] {sfHardenedRenderingFilter} Render to the client. Plus put the error500 scripts to their prospective homes even though I have logging on...but no joy I sorry to say. white screen

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Roland Cruse
Hi FÁSI I looked into the symfony/lib/controllers and none of them seem to call die at least grep did not think so. I do not understand, could you give me some more details. Thanks On Thu, Apr 16, 2009 at 10:58 AM, FÁSI Gábor maerl...@gmail.com wrote: I suggest uploading

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Lee Bolding
A different environment shouldn't cause any problems - I run many custom environments using it without any problems. What is the error logging level set to in your environment? do you have show_errors set to on? Also, you're better using the dev controller for your environment - you'll

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread FÁSI Gábor
I meant your appname_dev.php front controller, auto-generated in the web folder by generate:app. It calls a die when you're accessing it from somewhere other than localhost. Gábor On Thu, Apr 16, 2009 at 13:30, Roland Cruse cruses...@gmail.com wrote: Hi FÁSI I looked into the

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Alexander Deruwe
On 16 Apr 2009, at 10:52, Roland Cruse wrote: Since its a php syntax error symfony logs are not much help...or have not been for me. Try checking your apache (or whatever you use) error log, if you have access - it probably has more info. Alexander

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Roland Cruse
Thanks for the response. What is the error logging level set to in your environment? do you have show_errors set to on? Here is my factories.yml foo: logger: param: level: debug I do not know where show_errors is set. Please tell me. Though I do not have the white death in the

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Dheeraj Kumar Aggarwal
in settings.yml error_reporting:?php echo ((E_ALL | E_STRICT) ^ E_NOTICE).\n ? On Thu, Apr 16, 2009 at 6:02 PM, Roland Cruse cruses...@gmail.com wrote: Thanks for the response. What is the error logging level set to in your environment? do you have show_errors set to on?

[symfony-users] Re: blank screen of death: syntax errors not showing with custom controller using apache rewrite. Please help.

2009-04-16 Thread Roland Cruse
Ohh yeah!! The error_reporting setting got the errors to show. What a relief. Thank you everyone! On Thu, Apr 16, 2009 at 2:41 PM, Dheeraj Kumar Aggarwal dheerajcom...@gmail.com wrote: in settings.yml     error_reporting:    ?php echo ((E_ALL | E_STRICT) ^ E_NOTICE).\n ? On Thu, Apr