[symfony-users] Re: Why is Symfony Session data encrypted on my production server ?

2011-01-19 Thread Mathieu Comandon
Yes, it was actually suhosin that was causing the problem, thanks :) On Jan 18, 4:29 pm, Sergey Linnik wrote: > suhosin? > > 2011/1/18 Mathieu Comandon : > > > > > > > > > I want to share a single authentificaition method for to Symfony > > website

[symfony-users] Why is Symfony Session data encrypted on my production server ?

2011-01-18 Thread Mathieu Comandon
I want to share a single authentificaition method for to Symfony websites sharing the same top-domain. I use a cookie valid on all subdomains and sfPDOSessionStorage for keeping session data. factories.yml is set up like this on both projects: all: storage: class: sfPDOSessionSt

[symfony-users] Re: sfEasyGMapPlugin: Mulitple maps on one page

2010-07-13 Thread Mathieu Comandon
do such a thing. I'm ok with auto-generating js_name. Mathieu On Jul 12, 4:51 pm, Fabrice Bernhard wrote: > Ok so this is actually a working strategy ? I will implement it and > name the function initialize 'intiialize_'.$map_name by default so > that users don't n

[symfony-users] Re: Insert sql

2010-07-13 Thread Mathieu Comandon
if it's not the sql generated by symfony, there is no obvious way of insert such files. I usually do this kind of thing with the mysql command line program : mysql -umyuser -pmypassword mydatabase < myfile.sql If you want to be able to do this with symfony, you could create a new task that runs a

[symfony-users] Re: Qustion about routing

2010-07-13 Thread Mathieu Comandon
Your route doesn't say what module and action it refers to, modify your route to : mensaje_nuevo: url: /mensaje/nuevo param: { module: mensaje, action: nuevo } On Jul 13, 2:53 pm, Javier Garcia wrote: > Hi, > > I have this rule in routing.yml: > > mensaje_nuevo: >    url:   /mensaje/nue

[symfony-users] Re: sfEasyGMapPlugin: Mulitple maps on one page

2010-07-11 Thread Mathieu Comandon
I've submitted a quick n'dirty patch on the plugin's bugtracker, for those who want to integrate it manually, here's what it looks like : -- --- GMap.class.php +++ GMap.class.php2 @@ -87,6 +87,7 @@ protected $parameters = array( 'js_name' => 'map',

[symfony-users] Re: sfEasyGMapPlugin: Mulitple maps on one page

2010-07-09 Thread Mathieu Comandon
e pretty badly now. Of course, any help regarding this bugfix would be greatly appreciated ;) Cheers Mathieu -- 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 "s

[symfony-users] Re: change default sfRoute class

2010-02-17 Thread Mathieu Tricoire
Not works... On 17 fév, 15:43, Mathieu Tricoire wrote: > I found a solution not very pretty but it works for the moment ... but > if someone has a solution I take. > #factories.yml >   routing: >     class: myPatternRouting > > class myPatternRouting extends sfPatternR

[symfony-users] Re: change default sfRoute class

2010-02-17 Thread Mathieu Tricoire
tenRoutes[$name] = $route; } } return $flattenRoutes; } } On 17 fév, 09:21, Mathieu Tricoire wrote: > Hi raphael, > Yes it's for all routes, I just want define my own generator route > class to add an option for generate url function to manage subdomain. > For example I

[symfony-users] Re: change default sfRoute class

2010-02-17 Thread Mathieu Tricoire
Hi raphael, Yes it's for all routes, I just want define my own generator route class to add an option for generate url function to manage subdomain. For example I define my host in app.yml like that : www.domain.com And in my routing # If the current host is default host, generate relative url els

[symfony-users] Re: change default sfRoute class

2010-02-16 Thread Mathieu Tricoire
I see no solutions, sfRoute was define in sfRoutingConfigHandler, so go to define in routing.yml On 16 fév, 18:23, Mathieu Tricoire wrote: > Hi, if someone are not going to sfLive i would like know how to change > the default class which generate route (replace sfRoute by my own > gener

[symfony-users] change default sfRoute class

2010-02-16 Thread Mathieu Tricoire
Hi, if someone are not going to sfLive i would like know how to change the default class which generate route (replace sfRoute by my own generate route class which extends sfRoute), may be with sfCoreAutoload::make() or a configuration file ? Thxs. -- You received this message because you are sub

[symfony-users] Error doctrine:build-schema

2009-12-06 Thread Mathieu
Hello. I've create my tables on SQL myself. I've configure the database connection, but now when I execute "php symfony doctrine:build-schema" I've an error with a table : "x...@ssh1:~/xxx$ php symfony doctrine:build-schema >> doctrine generating yaml schema from database SQLSTATE[HY000]: Gener

[symfony-users] Paypal plugin configuration options

2009-11-16 Thread Mathieu Brethes
ld be overriden in the project's app.yml file in /apps/ frontend/config/app.yml: all: sf_payment_paypal_plugin: return_action: /myOldPaymentSystem/paymentOK Or something like that. Any thoughts or comments on this would be very welcome :-). Cheers

[symfony-users] Re: Doctrine Routing Object in Template

2009-08-27 Thread Mathieu Tricoire
Thx but I was already see that, I'm not success to retrieve Object because that return a sfPatternRouting object and not a doctrineRouting object, so i can't do getObject on it, If you have an other solution? Thx. On 27 août, 14:57, Eno wrote: > On Thu, 27 Aug 2009, Mathieu T

[symfony-users] Doctrine Routing Object in Template

2009-08-27 Thread Mathieu Tricoire
Hi! AnyOne can help me? I want retrieve the Doctrine Route Object in a template how i can do that without define a variable in actions? AnyOne knows a possibility to retrieve with a variable like $sf_context for example? Thanks. Sorry for my english... --~--~-~--~~~---~

[symfony-users] Re: form doctrine association with attributes in association class

2009-05-22 Thread Mathieu Tricoire
Somebody knows the solution? Thanks a lot. On May 18, 12:51 pm, Mathieu Tricoire wrote: > Hi I've a problem with form on Doctrine. > > This is my problem, I've a schema like this : > > Schema: > Page: >   columns: >     title:   { type: string(255), notblank:

[symfony-users] form doctrine association with attributes in association class

2009-05-18 Thread Mathieu Tricoire
with Ajax button. a Form like this: New Page: title: '' content: '' Tags: '' Tag 1: '' name: ' tag_title>' color: '' rank: '' '' How can I do this? With embedded forms, change relations in sxhema doctrine, or else

[symfony-users] Re: Search engine

2009-05-13 Thread Mathieu Tricoire
e beer - everybody has one they think tastes > > better :) > > Personally I prefer to keep it simple - so I use the Doctrine Behaviour and > > use actAs. > > > -Original Message- > > From: symfony-users@googlegroups.com [mailto:symfony-us...@googlegroups.com]

[symfony-users] Search engine

2009-05-12 Thread Mathieu Tricoire
Hello I working on a Symfony/Doctrine project. Which is the best search engine (Advantages, Inconveniences) to search fulltext : sphinx, Lucene ??? ... with MyIsam, InnoDb ? Thanks a lot. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[symfony-users] Re: Doctrine Route Object

2009-04-08 Thread Mathieu Tricoire
Ok so I found an issue for my problem. I created a class which extends sfDoctrineRoute class. I written a method which take specified parameters and after search not specified parameters with the object methods. Mathieu T. --~--~-~--~~~---~--~~ You received this

[symfony-users] Re: Doctrine Route Object

2009-04-08 Thread Mathieu Tricoire
No reply for my problem? Mathieu 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-users@googlegroups.com To unsubscribe from this g

[symfony-users] Doctrine Route Object

2009-04-03 Thread Mathieu Tricoire
Hi I've a problem with doctrineRoute in routing... I've an object Article which has some pages ordered by rank. I would like to take the first page when 'page' isn't specified and take the associated page when 'page' is specified. So When I specify a page, it plays the function (getRank) and it t

[symfony-users] test-unit with ldap API

2008-07-10 Thread Mathieu Pauly
; Note: I have not this error in production mode, just in test. Somebody has any idea? Best regards. -- Mathieu Pauly. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to

[symfony-users] Re: Admin-generator, easy way to make separate "create" action

2007-09-20 Thread Mathieu
Hi Bernhard, I guess I was just wondering if there was some kind of an option to activate the "create" action for the admin-generator, but it's not looking good. I will give it another shot! Thank you, On 19 sep, 19:22, Bernhard Schussek <[EMAIL PROTECTED]> wrote: >

[symfony-users] Re: Admin-generator, easy way to make separate "create" action

2007-09-19 Thread Mathieu
I know I could just go with the basic CRUD generator, but I kinda wanna keep that as my last resort. I only have one module for which I wish to do that. On 19 sep, 18:44, Mathieu <[EMAIL PROTECTED]> wrote: > Hey all, > > I'm starting out with symfony and I'm having

[symfony-users] Admin-generator, easy way to make separate "create" action

2007-09-19 Thread Mathieu
Hey all, I'm starting out with symfony and I'm having trouble making a "create" action (really meaning that I want a template that is different from that of the "edit" action) after having run the admin-generator on a module. Is there any clean way to do this ? Thanks --~--~-~--~~-