[symfony-users] Blackberry Browser Requests result in Strange Template Assignment

2010-03-28 Thread Andy Madsen
We run a high-traffic website using Nginx and Fastcgi, with Symfony 1.1.4. (Over 3 Million Pageviews Daily) We're trying to expand our browser compliance to include Blackberry devices, and symfony is having trouble routing properly. When we hit the site index in BBRY, we get this error:

Re: [symfony-users] Blackberry Browser Requests result in Strange Template Assignment

2010-03-28 Thread Frank Stelzer
Have a look at this blog post: http://www.symfony-project.org/blog/2008/06/09/how-to-create-an-optimized-version-of-your-website-for-the-iphone-in-symfony-1-1 I think you should do the same thing as it is shown in the first ProjectConfiguration listing. Add your own event listener and fix the

[symfony-users] Re: After editing the data of a member logged, loggingin is not possible

2010-03-28 Thread Tom Ptacnik
Maybe you havent in your model the method which are in PluginsfGuardUser ? From which class is your model inherited? In PluginsfGuardUser there is an method setPassword() overwritten - it handle the not changing blank password On 26 bře, 19:02, Javier Garcia tirengar...@gmail.com wrote: Even

[symfony-users] Re: After editing the data of a member logged, loggingin is not possible

2010-03-28 Thread Javier Garcia
To delimit the problem, i have created a module based just on sfGuardUser, so no inherits: php symfony doctrine:generate-module --with-show frontend guardausuario sfGuardUser These are my steps: - Install symfony sfDoctrineGuardUser - Create a module based on sfGuardUser called 'foo'. -

[symfony-users] Re: After editing the data of a member logged, loggingin is not possible

2010-03-28 Thread Javier Garcia
To delimit the problem, i have created a module based just on sfGuardUser, so no inherits: php symfony doctrine:generate-module --with-show frontend guardausuario sfGuardUser These are my steps: - Install symfony sfDoctrineGuardUser - Create a module based on sfGuardUser called 'foo'. -

[symfony-users] question about cache

2010-03-28 Thread Michał Piotrowski
Hi, Is it possible to do not cache an action in symfony? I've got such situation - some pages contains a different content for a different users. For example - page owner sees all his content but visitors sees only published content. When I enable cache for such page and owner refresh it all

[symfony-users] Re: Error 500 backend application in production

2010-03-28 Thread Jose San Gil
Hi Gábor I didn´t know the use of that feature. The issue is solved. You was really helpful. thank you . On Mar 24, 3:09 am, Gábor Fási maerl...@gmail.com wrote: If you have no_script_name enabled, it means it will not include the current front controller in the generated url, thus making

[symfony-users] Symfony + Doctrine + CCK

2010-03-28 Thread fr33m4n
Hi to all, i'm developing a web application and i want the possibility to add field to a doctrine object/form by web interface as the drupal's module CCK (Content Construction Kit) does. There is a way to obtain this feature in symfony/doctrine? Thank you to all and excuse me for bad english. --

[symfony-users] self-referencing objects in fixtures

2010-03-28 Thread comb
Hi, I was recommended from the forum.symfony-project.org to ask my question here. If I make a schema.yml that needs references to own objects and than load a fixture-file, where the first object should be referenced in the second, the data-load of the fixture fails. Example:

[symfony-users] how to call stored procedure

2010-03-28 Thread birdmilk
Hello, i'd like to ask: Does anybody knows how to call stored procedures via doctrine? I've been looking all over the internet and no usefull information or tip was found. symfony: 1.4.3 doctrine: 1.2 DB: PostgreSQL 8.2.4 Thanks a lot. -- If you want to report a vulnerability issue on symfony,

[symfony-users] Re: Question about choice widget

2010-03-28 Thread tayhimself
Why not use jquery and onclick and show/hide the two different li On Mar 25, 2:08 pm, Javier Garcia tirengar...@gmail.com wrote: Well, what i mean is, if the genre stored of a member is male, it should be active in Chico, so how can i do it? using if's and functions that retrieve the genre of

[symfony-users] Invoice Model

2010-03-28 Thread Veríssimo
Dear all. I'm new to symphony and i have been reading the Joobet tutorial to make my first symphony application. i have the following schema related with the invoice model, with these classes; Client, invoice, invoice lines. Invoiceline: connection: doctrine tableName: invoiceline

[symfony-users] Global CLI in Symfony 2

2010-03-28 Thread Alvaro Garcia
Hi, I am looking for a global CLI. I know that every application have its own console but, how can I create new applications through CLI? Thank you -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because

[symfony-users] sfWidgetFormInputHidden

2010-03-28 Thread Veríssimo
Hello all. I'm trying to fill a hidden field but when i summit the form a get the following error msg invalid for that field. I what the fill hidden field. Is this possible? # $form['idrecibo'] (sfWidgetFormInputHidden) Invalid. thank you. -- If you want to report a vulnerability issue on

Re: [symfony-users] Global CLI in Symfony 2

2010-03-28 Thread Fabien Potencier
On 3/28/10 4:46 PM, Alvaro Garcia wrote: Hi, I am looking for a global CLI. I know that every application have its own console but, how can I create new applications through CLI? It is not yet possible and won't be for some time. This will be added only when everything is stable enough.