[symfony-users] Re: sfguardplugin i18n login page

2010-07-04 Thread Tom Ptacnik
Maybe your action for changing language is secured? ... then it won't be executed and it will be redirected to login page again. On 2 čnc, 23:03, fRAnKEnSTEin shirkav...@gmail.com wrote: Hi, I am using  sfguardplugin for everything related to credentials at the backend(generated with the

[symfony-users] backend: date format in form

2010-07-04 Thread Johannes Trommer
Hi symfonians! I need to create a backend form with a field for the created_at-date. I render it like this: ?php echo $form['created_at']-renderRow() ? I want just to output the day, month and year. How can I format the row? I need to format it in the form itself, not in the yaml-files.

[symfony-users] Admin generator, Symfony 2

2010-07-04 Thread Juan Alberto V.
Hi!, does anyone know about the status of admin generator in Symfony 2 ? Thanks, Juan V. -- 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.

[symfony-users] Re: Question about set/get methods of model classes

2010-07-04 Thread rumianom
What do you mean on the air? Set/get methods are generated in base model classes and you can override them in your model class ( OOP ). When you build-model, base model is generated once more time but your model classes remain untouched. From my knowledge of Propel. On 2 Lip, 17:51, Javier Garcia

Re: [symfony-users] Re: Question about set/get methods of model classes

2010-07-04 Thread Gábor Fási
The question is doctrine-related, not propel. Doctrine indeed uses magic methods instead of generating them. On Sat, Jul 3, 2010 at 14:58, rumianom maciej.rumianow...@gmail.com wrote: What do you mean on the air? Set/get methods are generated in base model classes and you can override them in

[symfony-users] check cookies enabled?

2010-07-04 Thread comb
Hi! =) What's the proper way to check if a user has cookies enabled with symfony 1.4? Best greets comb -- 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] Screen-cast

2010-07-04 Thread Armansyah Tjogong
I have learned another PHP framework and currently moving into Symfony. I have read some tutorials and I found it a little bit difficult to find documentation I needed. I have also tried to search for video tutorials, I found some but they are out of date. The Jobeet example is very

Re: [symfony-users] Screen-cast

2010-07-04 Thread Donald Tyler
Jobeet is probably the simplest thing you should start with. Anything simpler and you'll miss some important key concepts. On Sunday, July 4, 2010, Armansyah Tjogong armansyah.symf...@live.com wrote:  I have learned another PHP framework and currently moving into Symfony. I have read some

Re: [symfony-users] Re: Symfony2 validation in the sandbox

2010-07-04 Thread Bernhard Schussek
Hi, Unfortunately, the annotations driver doesn't work in the PR2. This is fixed in fabpot/symfony (http://github.com/fabpot/symfony). If you switch to that branch, you can enable the validator and the annotation driver with the following configuration: web.config: validation: enabled:

Re: [symfony-users] Re: Sending mail from a Form class.

2010-07-04 Thread Bernhard Schussek
I disagree that this is a good use case for the event dispatcher. The event dispatcher is good for providing hooks for additional, _optional_ functionality (like logging, profiling etc.) Sending a mail upon form submission is not optional. This has to happen. You want to be able to test that it

[symfony-users] automated response

2010-07-04 Thread Saad Tazi | Twist Image
Merci de votre message. Je suis présentement absent du bureau. Je serai de retour le 5 juillet 2010. L'accès à mes courriels pourrait être limité durant cette période. En cas d'urgence, veuillez contacter Tisha au 514 987-9992 #150 ou par courriel à ti...@twistimage.com. Cordialement, Saad

[symfony-users] Re: Frequent PHP Fatal Errors with APC enabled

2010-07-04 Thread mstralka
Here's an update: I don't think the problem is related to APC anymore because it happens with it on and off. I think there is something strange with the PHP configuration on this specific server. I installed the application on 2 other servers with PHP 5.3.1 and similar settings - I could not

[symfony-users] How do I for don't use a stylesheet of my template in one view page? something like NOT_USE_STYLESHEET()

2010-07-04 Thread Rodrigo Prado
Hello I need any method like this NOT_use_stylesheet() Or be, I have one page where I not must use a stylesheet of my template. Is It Possible? Thanks! Rodrigo -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this

[symfony-users] Re: Rich text editor with upload image plugin

2010-07-04 Thread Massimiliano Arione
On 1 Lug, 22:10, Mariano Sola mariano.s...@gmail.com wrote: Has anyone worked with any rich text editor with the upload image option activated in Symfony 1.4? I did some tests with TinyMCE and iBrowser but I wasn't be able to make it works. sfAssetsLibraryPlugin -- If you want to report a

[symfony-users] Re: Use database in app.yml

2010-07-04 Thread HAUSa
I want to use this because I have some system setting which should really belong in that app.yml file. But the admins which I am developing it for want to change those settings in an admin panel. Think for example the lifetime of a post, how many credits for a quick respons / answer, etc. All

[symfony-users] Re: Having multiple queries with Lucene in nameTable.Class.php

2010-07-04 Thread pghoratiu
You can change the sort order from score to whatever column you have indexed, see more here: http://zendframework.com/manual/en/zend.search.lucene.searching.html look for Search Result Sorting. gabriel On Jul 4, 9:30 pm, Ricardo Jose Guzman Milanes guzman.ricardoj...@gmail.com wrote: Hello

Re: [symfony-users] Re: Having multiple queries with Lucene in nameTable.Class.php

2010-07-04 Thread Ricardo Jose Guzman Milanes
Thanks for the link Gabriel! But, how can I call that from the templates? Thanks! -- 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

[symfony-users] Re: Rich text editor with upload image plugin

2010-07-04 Thread rekarnar
I use KFM with TinyMCE. Although its a little tricky at times to setup. On Jul 5, 6:40 am, Massimiliano Arione garak...@gmail.com wrote: On 1 Lug, 22:10, Mariano Sola mariano.s...@gmail.com wrote: Has anyone worked with any rich text editor with the upload image option activated in Symfony

[symfony-users] $values in embedded form has nothing the first time it is created

2010-07-04 Thread bretth
Hi all, i have a form (business) which has a form that gets embedded (business_speciality) On the embedded form, I have a post validator using a callback to ensure that a category and a subcategory aren't set on the same business_speciality item. However when I edit the parent object (business)

Re: [symfony-users] Re: sfDoctrineGuardUser: Unable to stay signed in

2010-07-04 Thread ashton honnecke
This behavior (Inability to stay signed in) went away in four of five apps when I altered the session_name. However, it remains on one of the apps. That is to say that in my backend app (as well as others) I can login correctly but in the frontend app though, I can only stay logged in for one

[symfony-users] Re: Having multiple queries with Lucene in nameTable.Class.php

2010-07-04 Thread pghoratiu
The same way you do it in the action. Actually putting controller code in the view is not recommended, better use a component or something else for this. gabriel On Jul 5, 1:13 am, Ricardo Jose Guzman Milanes guzman.ricardoj...@gmail.com wrote: Thanks for the link Gabriel! But, how can I