[symfony-users] sfThumbnailPlugin Symfony 1.4

2011-05-16 Thread Jérémie Gillet
the documentation on the 1.4 version so ? After having done some researches on the internet I’m a little desperate that’s why I have chosen to contact you. Thanks a lot in advance. Kind regards, Jérémie GILLET. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

Re: [symfony-users] PDO Connection Error

2011-03-07 Thread Jérémie
While exporting model class 'JobeetAffiliate' to SQL: PDO Connection Error: SQ LSTATE[HY000] [2006] MySQL server has gone away Is the MySQL server still runnning? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this

[symfony-users] [symfony 2] Global variable or user session

2011-01-10 Thread Jérémie
('request')-getSession()-set('user', 'm...@mail.com'); but when I try to access it in another controller, $this-get('requestion')-getSession()-get('user') is empty. :/ Thanks for the help ! Jérémie -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

[symfony-users] [SF2] Php / Twig fatal error

2011-01-09 Thread Jérémie
:) Any help ? Jérémie -- 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 to this group, send email to symfony-users@googlegroups.com

Re: [symfony-users] Re: Defining an object [alias]?

2010-11-07 Thread Jérémie
Could you show us your code? It will be easier to understand what you're trying to do. Jérémie Le dimanche 07 novembre 2010 à 07:53 -0800, xpanshun a écrit : The thing is, I am using a while loop already--the foreach won't fit in for what I am trying to do. But I can't access data from

Re: [symfony-users] Re: symfony or doctrine... or is it me?

2010-10-27 Thread Jérémie
Well, I may (must? ^^) be wrong, but can't it be beacause you can use % string% to tell php/yaml to use this in a particular way? I would try '%'.'Swift.'%', maybe this would be ok... Jérémie Le mercredi 27 octobre 2010 à 07:20 -0700, erikms a écrit : Hi Florian, thank you for your prompt

Re: [symfony-users] Ajax tips in Symfony?

2010-10-26 Thread Jérémie
This link should help you : http://www.symfony-project.org/jobeet/1_4/Doctrine/en/18 You'll see, it's very easy :) Jérémie Le lundi 25 octobre 2010 à 16:36 -0700, Parijat Kalia a écrit : Hey people... Sorry if this email sounds hurried up, but I am hurried up! So I have a page view

Re: [symfony-users] Re: symfony sans base de donnée - symfony without database

2010-10-24 Thread Jérémie
marge de manœuvre relativement large :) Jérémie -- 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 to this group, send email to symfony

Re: [symfony-users] symfony sans base de donnée - s ymfony without database

2010-10-22 Thread Jérémie
Il y a une option, dans le 'settings.yml' si je me souviens bien, du genre: with_database: true passe le à false, je pense que ça devrait le faire! Qu'on me corrige si je me trompe. Jérémie -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

Re: [symfony-users] help needed for newbie

2010-10-22 Thread Jérémie
2 solutions : copy and paste the folder lib/vendor/symfony/data/web/sf/ in web/ or in web/ , do : ln -s yourproject/lib/vendor/symfony/data/web/sf . Jérémie Le vendredi 22 octobre 2010 à 11:11 -0700, apc...@dsl.pipex.com a écrit : I am a bit new to this symfony framework. I am having

Re: [symfony-users] Re: I18n not works, extract delete previous translations

2010-10-14 Thread Jérémie
Did you clear the cache? And do you change the culture somewhere in the application? On Oct 13, 3:55 pm, Jaime coba...@gmail.com wrote: Hi, I'm developing an application with symfony 1.4, and it needs to be translated in three languages. But the translations doen't works. I set

Re: [symfony-users] Re: I18n not works, extract delete previous translations

2010-10-14 Thread Jérémie
Check you .xml file, I had problems 2 days ago because of bad tags (targetBlablabl/target). Maybe it's something like this? Could you post it? Or the beginning of it, if it's too big :) Jérémie Le jeudi 14 octobre 2010 à 02:39 -0700, Jaime a écrit : Hi, yes, I use symfony cc every time i

Re: [symfony-users] how create empty module

2010-10-05 Thread Jérémie
Le lundi 04 octobre 2010 à 17:09 -0700, Martin Ibarra Cervantes a écrit : hi, thanks Jérémie but the error is because i use doctrine:generate-module. i read the documentation symfony generate:module aplication module is only generate:module and not doctrine:generate-module thanks

Re: [symfony-users] images no appears

2010-10-04 Thread Jérémie
http://www.symfony-project.org/api/1_4/AssetHelper#method_image_tag http://www.symfony-project.org/gentle-introduction/1_4/en/09-Links-and-the-Routing-System The sf documentation is great. Le lundi 04 octobre 2010 à 11:19 +0200, ahmed shehata a écrit : thank you but how can i do that my

Re: [symfony-users] how create empty module

2010-10-04 Thread Jérémie
=...] It's written: application module model You gave 2 arguments, 3 required. Jérémie -- 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

Re: [symfony-users] schema modified but same old database

2010-08-19 Thread Jérémie
There must be your old class in lib/form lib/model/ lib/filters... I had the same problem, and it seems like symfony uses you schema.yml but also base files in these directories. Delete them, rebuild everything and it should be ok! Jérémie Le jeudi 19 août 2010 à 10:34 +0200, KEY5 a écrit

[symfony-users] Set value of a database field depending of another field

2010-07-29 Thread Jérémie
Hi all, Let me explain: I have a field isPublished in my table, and another publicationDate. When isPublished is updated from 0 to 1, I'd like to update publicationDate with the current date time. Is there a way to specify this in the schema.yml file? Thanks a lot Jérémie -- If you want

[symfony-users] Doctrine Query Left Join

2010-06-25 Thread Jérémie
(); But it seems like symfony/doctrine transates it :[...] ON n2.id = n1.nodeSubnodeOf. I'm pretty lost, could someone give me some help please? Thanks a lot! Jérémie -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received

[symfony-users] [symfony users] FCKEditor/CKEditor symfony 1.4

2010-06-21 Thread Jérémie
Hi all, I must be dumb, but I can't find how to use (F)CKEditor with symfony 1.4. I tried to follow these steps (http://trac.symfony-project.org/wiki/HowToUseFCKeditor ) but I don't understand everything, and it doesn't work anyway. Can somebody help me? Thaanks! Jérémie -- If you

Re: AW: [symfony-users] [symfony users] FCKEditor/CKEditor symfony 1.4

2010-06-21 Thread Jérémie
answer ;) Jérémie If TinyMCE is also an option, you could try with the sfFormExtraPlugin and the documentation at http://www.symfony-project.org/blog/2008/10/18/spice-up-your-forms-with-some -nice-widgets-and-validators Regards, Christopher. -Ursprüngliche Nachricht- Von

Re: [symfony-users] cvs

2010-05-26 Thread Jérémie
Le mercredi 26 mai 2010 à 06:39 -0200, safa boubekri a écrit : bNotice/b: Use of undefined constant resultat - It's pretty clear. assumed 'resultat' in bD:\sym_project\ajf\apps\Backend\modules\association\actions\actions.class.php/b on line b28/bbr / And here's the line. Jérémie

Re: [symfony-users] user session not cleared

2010-05-26 Thread Jérémie
worse when I log in with another user in the same browser I still have that basket in the session. Is this normal behavior? If yes, where should I put the basket instead? Cheers, Lea Maybe this could help you http://librosweb.es/symfony_1_2_en/capitulo6/user_session.html :) Jérémie

Re: [symfony-users] any progress on ecommerce packages using Symfony?

2010-05-18 Thread Jérémie
there based on Symfony? My company is working on an e-commerce based on Symfony :) It's just the beginning, but it's planned. Jérémie www.dacrydium.fr -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message

Re: [symfony-users] help_nahoMailPlugin

2010-04-28 Thread Jérémie
well how to use symfony. Jérémie -- 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 to this group, send email to symfony-users

Re: [symfony-users] Licence d'utilisation de Symfony

2010-04-27 Thread Jérémie
auteurs avec la notice de copyright http://fr.wikipedia.org/wiki/Copyright. Dixit Wikipedia. (donc, pas sûr à 100%). Donc, si je comprends bien, tu peux le faire toi même. Mais j'aimerais bien savoir ce qui te fait dire qu'elle n'a pas de valeur en France?!! Jérémie -- If you want to report

[symfony-users]SF2.0 - SetEnv password

2010-04-16 Thread Jérémie
user: myuser password: ??? Thanks Jérémie -- 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 to this group, send email to symfony

Re: [symfony-users]SF2.0 - SetEnv password

2010-04-16 Thread Jérémie
Fabien Potencier wrote: On 4/16/10 1:12 PM, Jérémie wrote: Hi there, I just watched a video of Fabien doing his presentation of SF2.0. He explains we can use SetEnv SYMFONY_DOCTRINE_DBAL_PASSWORD mypwd to give the application the database pwd. My question is: what do I have to write

Re: [symfony-users] Re: how get an object saved in session

2010-03-23 Thread Jérémie
not sure, but I still wanna help :-p Does $a[0] means it will return the 1st box of your array, or this it mean it will return the one indexed by 0 ? Maybe here is the problem. Jérémie. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

[symfony-users] Re: how get an object saved in session

2010-03-23 Thread Jérémie
On 23 mar, 16:57, Jérémie jeremie.symf...@gmail.com wrote: Belgacem TLILI wrote: now i have save the form fiels in an array then i have save this array in the user session $forms1= Array($form-getValues()); $this-getUser()-setAttribute('etab',$forms1); then: $a=$this-getUser

[symfony-users] Re: Symfony 2.0 - Use anchor in url

2010-03-22 Thread Jérémie
['post_time'].'/a In the generated page, I can see the link is /voirtopic/18/1#p_70, so I clik, and then in the address bar it becomes... /voirtopic/ 18/1%23p_70. But if I modified the url in the address bar and write # instead of %23, it works fine and goes to the anchor in the page. Thanks, Jérémie

[symfony-users] Re: Symfony 2.0 - Use anchor in url

2010-03-22 Thread Jérémie
configure in Symfony options; we can do it with the previous versions. Jérémie On Mar 22, 9:38 am, Jérémie jeremie.symf...@gmail.com wrote: On 19 mar, 22:48, Marijn marijn.huizendv...@gmail.com wrote: What code do you use for link generation? The code is something like this:  a href

[symfony-users] Re: Symfony 2.0 - Use anchor in url

2010-03-22 Thread Jérémie
The last 2 answers were right! (even if I said there where still the problem :-P ) Thanks a lot to all of you :) Jérémie On 22 mar, 10:53, Fabien Potencier fabien.potenc...@symfony- project.com wrote: On 3/22/10 10:24 AM, Jérémie wrote: On 22 mar, 10:16, Marijnmarijn.huizendv...@gmail.com

[symfony-users] Symfony 2.0 - Use anchor in url

2010-03-19 Thread Jérémie
I there, I'd like to use anchors in my project, but when I have something like /page/1#12, it's overwritten by /page/1%2312 We could change it in the previous versions, but in 2.0, I can't find where. Does anybody know? Thanks Jérémie -- If you want to report a vulnerability issue on symfony

[symfony-users] Re: Symfony 2.0 - Use anchor in url

2010-03-19 Thread Jérémie
/myproject/mypage#12. Then I click, my browser opens the link, the page is loaded, but doesn't go the the anchor (because of the # becoming %23). Thanks for your answer :) Jérémie On Mar 19, 5:16 pm, Jérémie jeremie.symf...@gmail.com wrote: I there, I'd like to use anchors in my project

Re: [symfony-users] Symfony 2.0 - Cookies

2010-03-16 Thread Jérémie
Symfony wrote: Hi all, I'm trying to use Symfony 2.0, and I was wondering if someone knew how to set/get cookies with this version? I found a setcookie method in the Response class, but I can't figure out how to use it :/ Thanks a lot! Jérémie Finally I understood that I have to use

[symfony-users] Re: Symfony 2.0 - Cookies

2010-03-16 Thread Jérémie
method. Thanks Jérémie On 16 mars 2010, at 12:08, Jérémie jeremie.symf...@gmail.com wrote: Symfony wrote: Hi all, I'm trying to use Symfony 2.0, and I was wondering if someone knew   how to set/get cookies with this version? I found a setcookie method in the Response class, but I can't

[symfony-users] [Symfony 2.0] Cookies

2010-03-15 Thread Jérémie
Hi all, I'm trying to use Symfony 2.0, and I was wondering if someone knew how to set/get cookies with this version? I found a setcookie method in the Response class, but I can't figure out how to use it :/ Thanks a lot! Jérémie -- If you want to report a vulnerability issue on symfony

[symfony-users] Symfony 2.0 - cookies

2010-03-15 Thread Jérémie
Hi all, I'm trying to use Symfony 2.0, and I was wondering if someone knew how to set/get cookies with this version? I found a setcookie method in the Response class, but I can't figure out how to use it :/ Thanks a lot! Jérémie PS: sorry if I sent this message twice ^^' -- If you want