[symfony-users] Re: Doctrine Query Cache and Symfony Pagers

2010-08-23 Thread Lea Haensenberger
No one having the same problem? Else I just have to turn off the caching for those queries, which is not so nice... On Aug 19, 5:05 pm, Lea Haensenberger baerne...@gmail.com wrote: Hi all, I'm having trouble with thedoctrinequery cache in combination with pagers. I have a query with some

[symfony-users] Doctrine Query Cache and Symfony Pagers

2010-08-19 Thread Lea Haensenberger
Hi all, I'm having trouble with the doctrine query cache in combination with pagers. I have a query with some inner and left joins that I use with a pager. The pager then creates a subquery to get the right amount of rows from the db: SELECT * FROM table1 c LEFT JOIN table2 c2 ON c.id = c2.id

[symfony-users] Re: caching problem in firefox

2010-07-26 Thread Lea Haensenberger
, no-cache); $this-getResponse()-setHttpHeader(Pragma, no-cache); $this-getResponse()-setHttpHeader(Expires, 0); On Thu, Jul 22, 2010 at 11:37 AM, Lea Haensenberger baerne...@gmail.comwrote: I found out that when disabling the memory cache in firefox or when setting check.doc_frequency to 1, i.e

[symfony-users] Re: caching problem in firefox

2010-07-22 Thread Lea Haensenberger
controller (frontend_dev.php)?    gabriel On Jul 16, 4:09 pm, Lea Haensenberger baerne...@gmail.com wrote: I've encountered a strange problem with firefox andcaching. When I log in and get redirected to the homepage afterwards I don't see that I'm logged in. If I have a look at context

[symfony-users] Re: caching problem in firefox

2010-07-22 Thread Lea Haensenberger
date changes when going back to the homepage but the page is not actually reloaded. Maybe with that additional information someone can help me solve that problem!? Cheers, Lea On Jul 22, 10:42 am, Lea Haensenberger baerne...@gmail.com wrote: Does nobody know that problem? I'm a bit lost

[symfony-users] Re: caching problem in firefox

2010-07-19 Thread Lea Haensenberger
Yes -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-users@googlegroups.com To unsubscribe

[symfony-users] caching problem in firefox

2010-07-16 Thread Lea Haensenberger
I've encountered a strange problem with firefox and caching. When I log in and get redirected to the homepage afterwards I don't see that I'm logged in. If I have a look at context-getUser()- isAuthenticated() I get 'false'. After manually reloading the homepage everything is fine. I already tried

[symfony-users] css/js/images on different server

2010-06-10 Thread Lea Haensenberger
Hi all, on our live server we'd like to have all the css, js and image files on a different server than the application server itself. On our local installations we, however, still wanna use the files in the web folder in the application itself. Is there a way to define the root path/url for those

[symfony-users] user session not cleared

2010-05-26 Thread Lea Haensenberger
Hi all, I'm implementing a small shop and I put the basket into the session with $this-getUser()-setAttribute('basket', array()). My problem now is that when I log out I still have the basket in the user session. And even worse when I log in with another user in the same browser I still have that

[symfony-users] Strange Routing Behaviour

2010-04-14 Thread Lea Haensenberger
Hi all, I have the following apps and module in my project: apps and their modules: - admin - frontend - retailer - ... - retailer - retailer - ... The frontend app is the default app. When I enter the url project.lo/retailer it goes to the retailer module in the retailer app. Shouldn't that

[symfony-users] best practice i18n date

2010-03-23 Thread Lea Haensenberger
Hi all, what's best practice to display culture dependent date formats? Do I have to call format_date() everywhere I want to display a culture dependent date? Or is there another more global way to do it? Cheers, Lea -- If you want to report a vulnerability issue on symfony, please send it to

[symfony-users] prefill login form

2010-03-22 Thread Lea Haensenberger
Hi all, I'd like to pre-fill the username of the sfDoctrineGuardPlugin login form, after the user registered and confirmed his email. Is there an easy way to pre-fill values in the login form or do I have to override the executeSignin action of the plugin? Cheers, Lea -- If you want to report a

[symfony-users] Re: Embedded forms

2010-03-13 Thread Lea Haensenberger
anybody? I'm really stuck with this problem and would be glad to get some hints! On Mar 11, 4:19 pm, Lea Haensenberger baerne...@gmail.com wrote: Hi all, I have aformwith anembeddedformand I'd like to reorder the fields in theformand optionally mix fields from the mainformand theembeddedform

[symfony-users] Embedded forms

2010-03-11 Thread Lea Haensenberger
Hi all, I have a form with an embedded form and I'd like to reorder the fields in the form and optionally mix fields from the main form and the embedded form. I found this blog post http://www.blogs.uni-osnabrueck.de/rotapken/2009/03/13/symfony-merge-embedded-form/ and I think the approach is not