Re: [symfony-users] Cannot reset password to symfony website

2009-12-26 Thread Alexandre Salomé
Looks like this page requires a reset token. Fill this form : http://www.symfony-project.org/user/password Did you fill it ? did you received a link with a token ? 2009/12/24 FractalizeR vladislav.rastru...@gmail.com Hello. I am trying to reset password for symfony website here:

Re: [symfony-users] Updating data with Doctrine Migations

2009-12-26 Thread Alexandre Salomé
Migration in Doctrine offers you some tools methods : add column, create table, delete table, delete column, create FK... methods to alter the structure (see documentationhttp://www.doctrine-project.org/documentation/manual/1_2/en/migrations). Model-stuff is still available. See this sample :

[symfony-users] Various projects sharing the same virtual URL

2009-12-26 Thread David M
I have some projects for different customers, and I have configured one virtual server (in Apache 2) for each one. Examples: - http://customer_acme - http://customer_jamesbond My question: is there some way to create one virtual server for all of them, and differenciate them with a virtual

[symfony-users] Re: Updating data with Doctrine Migations

2009-12-26 Thread Dave
Thanks, but updating the structure is not the issue (the tools work pretty well for that). The problem is migrating the data. The model for the Document table has changed in this example, thus the old columns are not in the model any more (and new columns are in the model that are not in the old

Re: [symfony-users] Re: Updating data with Doctrine Migations

2009-12-26 Thread Alexandre Salomé
Your steps for the migration : - Create the new table with your DocumentState class - Add a new column state_id for your foreign key - Foreach instance, find/create a state object and associate it. - Delete your state_ columns Is it OK ? 2009/12/26 Dave roverw...@gmail.com

[symfony-users] 1 server, 1 client host, 2 clients

2009-12-26 Thread Tennis Smith
Hi, How can symfony differentiate between 2 browsers talking to the same app from the same client host? -- Tks, -T -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To

[symfony-users] Re: sfDoctrineGuard translation

2009-12-26 Thread diogobaeder
No solution for that? Anybody? On 22 dez, 18:04, Diogo Baeder diogobae...@gmail.com wrote: Hi there, I'm translating some strings that lacked in the original pt_BR XLIFF file for Symfony 1.4.2-DEV. Even though, my translation for sfDoctrineGuardPlugin is not working; None of them is being

Re: [symfony-users] 1 server, 1 client host, 2 clients

2009-12-26 Thread Eno
On Sat, 26 Dec 2009, Tennis Smith wrote: How can symfony differentiate between 2 browsers talking to the same app from the same client host? Are they different browsers? If so, then each browser will have its own cookie and its own session associated with it. -- -- You received this