Re: [symfony-users] no web debug toolbar in symfony 1.2.12

2010-03-26 Thread Peter Peltonen
Hi, On Thu, Mar 25, 2010 at 9:32 PM, Frank Stelzer d...@bleedingmoon.de wrote: Search your complete project for sf_web_debug. Maybe the other developer has disabled the web debug toolbar by hand [1] somewhere else in the code. I tried the following: grep -r sf_web_debug apps/

[symfony-users] no web debug toolbar in symfony 1.2.12

2010-03-25 Thread Peter Peltonen
I would like to use the web debug toolbar, but for some reason I am unable to make it appear (I've inherited this symfony installation from another developer). In apps/frontend/config/settings.yml I have web_debug: on for prod, dev and test. But I see no toolbar? Do I need to

Re: [symfony-users] no web debug toolbar in symfony 1.2.12

2010-03-25 Thread Tom Haskins-Vaughan
Is it set for the correct environment (prod, dev, etc)? Did you clear your cache? symfony cc Does it appear if you change it to true instead of on? I don't remember when that change happened. On Thu, Mar 25, 2010 at 1:05 PM, Peter Peltonen peter.pelto...@gmail.com wrote: I would like to use

Re: [symfony-users] no web debug toolbar in symfony 1.2.12

2010-03-25 Thread Peter Peltonen
Hi, On Thu, Mar 25, 2010 at 7:32 PM, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: Is it set for the correct environment (prod, dev, etc)? As I wrote, it is set for prod, dev and test. I am not sure which of those I am running. Where is that set? Did you clear your cache? symfony cc

Re: [symfony-users] no web debug toolbar in symfony 1.2.12

2010-03-25 Thread Frank Stelzer
Search your complete project for sf_web_debug. Maybe the other developer has disabled the web debug toolbar by hand [1] somewhere else in the code. Btw on/off in yml files would still work. The parser was replaced in 1.3 imho. [1] with sfConfig::set('sf_web_debug', false); Am