Re: [symfony-users] Re: Production environment

2011-03-15 Thread Marc A. Torres Baix
Hi Federico, just put: error_reporting(E_ALL); init_set('display_errors','on'); on top of app.php When you find what's not working, just drop those lines again. Luck, Marc. On Mon, Mar 14, 2011 at 6:44 PM, Federico Bernardin federico.bernar...@gmail.com wrote: Hi, yes the production

Re: [symfony-users] Re: Production environment

2011-03-15 Thread David Buchmann
hi federico, did you check the apache error log? can it be that your app/cache/prod directory does not exist or is not writeable for the web server? cheers, david Am 14.03.2011 18:44, schrieb Federico Bernardin: Hi, yes the production deployment is on the root of the domain. If I write:

Re: [symfony-users] Re: Production environment

2011-03-15 Thread Federico Bernardin
Hi, the problem was the AcmeDemoBundle Model and Doctrine configuration. I commented that line in config.yml and now works correctly. Thanks. Federico Il giorno 15/mar/2011, alle ore 09.04, Marc A. Torres Baix ha scritto: Hi Federico, just put: error_reporting(E_ALL);

Re: [symfony-users] Re: Production environment

2011-03-15 Thread David Buchmann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 hi federico, did you check the apache error log? can it be that your app/cache/prod directory does not exist or is not writeable for the web server? cheers, david Am 14.03.2011 18:44, schrieb Federico Bernardin: Hi, yes the production deployment

[symfony-users] Re: Production environment

2011-03-14 Thread Michael Van Sickle
Is your production deployment on the root of the domain? If not, then mod_rewrite needs to know the base name using the RewriteBase directive in your .htaccess. For example, if your base address for your site is http://www.example.com/mysite, then the .htaccess would need a line 'RewriteBase

Re: [symfony-users] Re: Production environment

2011-03-14 Thread Federico Bernardin
Hi, yes the production deployment is on the root of the domain. If I write: http://www.mysite.com/app.php/hello/Fede the page is blank, but if I write http://www.mysite.com/app_dev.php/hello/Fede all works correctly. Thanks in advance. federico Il giorno 14/mar/2011, alle ore 13.05, Michael Van