[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
eed to actually change this parameter unless they > need to. > > Concerning the javascript_name of the map, one soulution could be to > generate automatically a new one for every new instance : > > 'map', 'map1', 'map2', etc. > > Do you people act

[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
On Jul 9, 11:29 am, Johannes Trommer wrote: > Hi folks, > > Is there any possibility to include more then one map into a template? I'm afraid not, at least for the moment. I've reported this issue to the developers (bug report here : http://labs.theodo.fr/issues/show/12 ). I think I'll try to fi