[symfony-users] Re: Symfony and Facebook Hip Hop

2011-06-16 Thread Tristan
Someone asked a similar question during the sfLive. Fabien answer that symfony will not support HipHop as it does not speed-up a lot the website. I may disagree with that but as Thomas said, you can start with Varnish and you'll gain a lot of speed before thinking of HipHop -- If you want to

[symfony-users] How to : add openID authentification with FOS\UserBundle

2011-06-04 Thread Tristan
Hi, I don't know how to simply add another authentification way (openID) to UserBundle I just have the ID of the auth ( http://steamcommunity.com/openid ) After some research i found those two bundles : - https://github.com/pvdvreede/UserOpenIdBundle - https://github.com/Ziumin/OpenIDBundle

[symfony-users] Re : Re: Form spread over multiple pages (wizard) ?

2011-05-23 Thread Tristan
Thanks for sharing your feedback ;-) -- 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: Form spread over multiple pages (wizard) ?

2011-05-16 Thread Tristan
Are you able to have a field marked as NotBlank() on step two and not to raise error after step one ? (claiming that he needs the step two fields?) oh, I get it, you call the validator on each steps. I'm interested into a javascriptless method for formwizzards. :-) On 15 mai, 19:19, dustin10

[symfony-users] Re: Form spread over multiple pages (wizard) ?

2011-05-15 Thread Tristan
I'm interested too -- 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 To

[symfony-users] Symfony2 Doctrine2 cheat sheets Released

2011-03-24 Thread Tristan
Hello, We've just released amazing stylesheets for Symfony2 and Doctrine2. Don't hesitate to tell us what you think. http://www.elao.org/symfony-2/doctrine-2/symfony-2-doctrine-2-cheat-sheets.html -- If you want to report a vulnerability issue on symfony, please send it to security at

[symfony-users] Re: Symfony2 Doctrine2 cheat sheets Released

2011-03-24 Thread Tristan Bessoussa
Thank you, i'll pass the message @vincent_elao tomorrow at my office ;) Glad you'll use it. Le 24/03/2011 17:00, Flukey a écrit : Excellent work! :-) I've just printed them out for use in my next Symfony 2 and Doctrine 2 project. In A3, attached to the wall. heh. -- If you want to

[symfony-users] How to rename a behaviour to avoid conflict?

2010-12-31 Thread Tristan
Hello I work on a project on which there is already a taggable behaviour (the one from Doctrine) I want to use the sfDoctrineActAsTaggablePlugin, but the name of the behaviour is the same (Taggable). So as you can imagine it created conflicts. What do i need to rename on the plugin just to

[symfony-users] Re: Handling dynamic data in the generator.yml

2010-12-28 Thread Tristan
Thanks for the tip ;) On 28 déc, 09:26, Gabriel Petchesi pghora...@gmail.com wrote: In my opinion the proper place to do it is to override the autogenerated actions: executeNew executeCreate* executeEdit executeUpdate* executeDelete and put in there the conditions that checks for user

[symfony-users] Re: How to retrieve / edit / delete an object only if the user is the creator ?

2010-12-27 Thread Tristan
need to the query, and calling that from your action? -- Yitzchak Schaffer Systems Manager Touro College Libraries 212.742.8770 ext. 2432http://www.tourolib.org/ Access problems? Contact systems.libr...@touro.edu On Dec 26, 2010, at 17:56, Tristan tristan.bessou...@gmail.com wrote

[symfony-users] Re: How to retrieve / edit / delete an object only if the user is the creator ?

2010-12-27 Thread Tristan
Thanks for your help, i'll try that ;) On 27 déc, 14:49, Gabriel Petchesi pghora...@gmail.com wrote: I think the filtering code in preExecute (model layer) is not ok. In my opinion you need to make changes in a couple of places: 1. Filters Make sure the filter always includes the user_id in

[symfony-users] Re: importing users into sfGuardUser without salt field ?

2010-12-05 Thread Tristan
Ok good news ;) thank you On 5 déc, 02:42, Michał Piotrowski mkkp...@gmail.com wrote: Hi, 2010/12/5 Tristan tristan.bessou...@gmail.com: Hi, I've planned to migrate my pevious project on symfony. I got 1,500 users registered (password stored in SHA-1) but there is no salt defined

[symfony-users] importing users into sfGuardUser without salt field ?

2010-12-04 Thread Tristan
Hi, I've planned to migrate my pevious project on symfony. I got 1,500 users registered (password stored in SHA-1) but there is no salt defined. Is that possible to import those 1,5k users in the sfGuardUser table (i mean without the 'salt' field) ? Will they be able to login to their old

[symfony-users] Bug with inheritance : column_agregation !?

2010-11-22 Thread Tristan
Hi, After spending hours on the problem, i cannot implement concrete inheritance. So i'm going with column aggregation. It fits my needs. I found a bug while setting up a simple relation Schema.yml : http://pastie.org/private/f3frzbyclgame7ycgfjag Fixtures (to test it) :

[symfony-users] Loss of an URL parameter between executeNew and executeCreate

2010-11-19 Thread Tristan
Hi, I'm implementing concrete inheritance in my model. So I'm trying to do (i'm taking example upon jobeet) : When a user try to post his CV, he'll be redirected on a page on which he will be choosing his main skill (Developper / Network). Both of dev/ network inherits from future_employees,

[symfony-users] Re: 20 second to load an edit page in the backend.

2010-10-31 Thread Tristan
/vendor/doctrine/Doctrine/Core.php on line 669 This might be related ? Where is located the error ? into forms ? Thanks On 31 oct, 00:59, Alex Pilon alex.pi...@gmail.com wrote: Any unordinary queries that might be occurring in the partials? On Oct 30, 2010 5:09 PM, Tristan tristan.bessou

[symfony-users] Re: 20 second to load an edit page in the backend.

2010-10-31 Thread Tristan
again. So what could be causing such an error while building forms or filters WITHOUT being related to /lib/ (otherwise, i would have got the error on local too) ? In other terms what files the generation of forms is touching (apart the ones from /lib/) ? Thanks Tristan, On 31 oct, 15:50, Kris k

[symfony-users] 20 second to load an edit page in the backend.

2010-10-30 Thread Tristan
Do you have an idea on what's causing the loading so long (11seconds to 21 seconds) in the backend ONLY (in the frontend the pages renders in 1 seconds. My hardawre : 2x 2x 1.8ghz 4Gb DDR3 Linux Debian 5 It's not the doctrine connection, you can take a look at the debug bar screenshot here :

[symfony-users] Re: 20 second to load an edit page in the backend.

2010-10-30 Thread Tristan
custom theme. I mean, 95% of the backen is untouched. On 30 oct, 21:50, Julian julian.reyes.escri...@gmail.com wrote:  have you installed a PHP accelerator? like apc or xcache 2010/10/30 Tristan tristan.bessou...@gmail.com Do you have an idea on what's causing the loading so long (11seconds

[symfony-users] Question with fowarding method.

2010-10-22 Thread Tristan
In the jobeet tutorial, you can access jobs only if they are valid (30 days) thanks to : method_for_query: retrieveActiveJob The problem is that it fowards to a 404 page. How to redirect the user to the HOMEPAGE instead of displaying a 404 page if the user try to access an outdated job ?

[symfony-users] Re: Question with fowarding method

2010-10-22 Thread Tristan
in Google and you get many ways ;) Am Freitag 22 Oktober 2010, um 13:40:15 schrieb Tristan: In the jobeet tutorial, you can access jobs only if they are valid (30 days) thanks to :     method_for_query: retrieveActiveJob The problem is that it fowards to a 404 page. How to redirect

[symfony-users] Re: A simple private messaging system plugin [does it exists ?]

2010-10-09 Thread Tristan
be easy enough. Try googling phpbb3 external login. There's about 20 lines of code that let's you get the login information after someone has logged into phpBB3. Then add that to symfony and you get PMs plus forums. On Sat, Oct 9, 2010 at 4:17 AM, Tristan tristan.bessou...@gmail.com wrote: Nobody

[symfony-users] Re: A simple private messaging system plugin [does it exists ?]

2010-10-08 Thread Tristan
Nobody ? ='( -- 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 To

[symfony-users] A simple private messaging system plugin [does it exists ?]

2010-10-07 Thread Tristan
Hello, I'm looking for a simple plugin (SF 1.4 / Doctrine) which allows to ; - send a private message to a sfDoctrineGuardUser via a send a private message link - send a mail to the user each time a private message is sent - possibility to reply / check the private mailbox I've been searching

[symfony-users] Re: How to use the admin filter on the frontend

2010-09-25 Thread Tristan
    }   } } and in the template: ?php echo $form - renderFormTag(url_for(customers)); ? table   ?php echo $form; ? /table input type=submit value=Filter / /form That help? Daniel On Sep 23, 7:36 pm, Tristan tristan.bessou...@gmail.com wrote: Do you have an example please ? Cause as i never see

[symfony-users] Re: How to use the admin filter on the frontend

2010-09-23 Thread Tristan
, and validate the data when they are submitted, just like with a regular form. The only difference is, you also have a method $filter - getCriteria(), which returns a criteria that you can then use to query the database. That make sense? Daniel On Sep 21, 2:14 pm, Tristan tristan.bessou

[symfony-users] How to set security.yml for an abstract module like : sfGuardPermission / sfGuardGroup

2010-09-23 Thread Tristan
Hello, i'm securing my backend because i'm going to recruit some moderators. The probel is that i can access to the sfGuardPermission / sfGuardGroup modules and there are abstract, meaning there are no folders name sfGuardPermission / sfGuardGroup How to set the credential to admin in order to

[symfony-users] How to use the admin filter on the frontend

2010-09-21 Thread Tristan
Hello, I want to let the visitor the possibility to filters the job result by category, location. (if i take an example to the jobeet context) by using the 'same' process that in the backend. How to do that ? How to customize it ? Do you have a ressource / tutorial link please ? Thanks.

[symfony-users] L18N helper not extracting strings in forms !

2010-08-09 Thread Tristan
Hello, i've followed an user advice with loading l18N helper this way : class stPlayerCvForm extends BasestPlayerCvForm { public function configure() { ProjectConfiguration::getActive()-loadHelpers( array( 'I18N' ) ); $this-removeFields();

[symfony-users] Re: L18N helper not extracting strings in forms !

2010-08-09 Thread Tristan
: Hi, It seems to search to __ calls only in template/partials. You can add them manually in xliff file, as long as you keep IDs incremented. Regards, Benoit -Original Message- From: Tristan tristan.bessou...@gmail.com Sent: lundi 9 août 2010 19:49 To: symfony users symfony

[symfony-users] load L18N helper in form class : how to ?

2010-08-07 Thread Tristan
Hello i know that it's not recommended to do so, but it's the quickest way i know. I tryed public function configure() { sfProjectConfiguration::getActive()-loadHelpers(array('I18N')); $this-widgetSchema-setLabels(array(

[symfony-users] Semgentation fault +Infinite loop... huh ?

2010-08-03 Thread Tristan
Hello, i've just tested a function (doctrine // symfony 1.4) : i'm on the backend, and i have a field, is_activated, i wanted when i click on it, that a mail is sending to the offer's owner (plus activating the filed of course :D) : http://pastebin.com/LuQb4nc6 Doing so = infinite loop = 100

[symfony-users] Re: Semgentation fault +Infinite loop... huh ?

2010-08-03 Thread Tristan
Here is what apache is saying for the 2nd solution : [Tue Aug 03 17:45:32 2010] [notice] child pid 821 exit signal Segmentation fault (11) [Tue Aug 03 17:45:33 2010] [notice] child pid 824 exit signal Segmentation fault (11) [Tue Aug 03 17:45:33 2010] [notice] child pid 803 exit signal

[symfony-users] Re: Semgentation fault +Infinite loop... huh ?

2010-08-03 Thread Tristan
If i remove the parent:: it still not work : public function setIsActivated($value) { if ($value == false) { $context = sfContext::getInstance();

[symfony-users] Re: Semgentation fault +Infinite loop... huh ?

2010-08-03 Thread Tristan
(daniel Lohse, we tryed $this-set('is_activated', true); is the synthax wrong ?) Ok, it took 3 men (2 symfony experts, and me (but i'm a beginner) to bypass that) We tested every possible solution with that function before giving up and writing - a batch custom action - plus a function like

[symfony-users] Re: 2 hours spent on : Unknown record property / related component fullname on sfGuardUserProfile

2010-08-01 Thread Tristan
ok i added the function to the sfGuardUserProfile, and it fixed the error On 1 août, 02:53, Tristan tristan.bessou...@gmail.com wrote: Hello, i'm close to shoot a bullet in my head, i've spent 2 plain hours on it : Right after creating a new account with sfForkedDoctrineApplyPlugin, i

[symfony-users] Re: Trying to redirect a user to a login page with ajax: 401 unauthorized

2010-08-01 Thread Tristan
mmhhh i'm not sure in understand everything here ='( -- 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

[symfony-users] 2 hours spent on : Unknown record property / related component fullname on sfGuardUserProfile

2010-07-31 Thread Tristan
Hello, i'm close to shoot a bullet in my head, i've spent 2 plain hours on it : Right after creating a new account with sfForkedDoctrineApplyPlugin, i keep getting this error : Unknown record property / related component fullname on sfGuardUserProfile It happens when i click on create an

[symfony-users] Trying to redirect a user to a login page with ajax: 401 unauthorized

2010-07-31 Thread Tristan
Hello in my action.class.php i've got something like : if ($request-isXmlHttpRequest()) { if ($this-getUser()-isAuthenticated()) { .. }else{ $this-redirect('sfGuardAuth/signin'); } }

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-29 Thread Tristan
that are from the previous version in lib/models/doctrine and lib/model/doctrine/base, and with new profile declaration they are placed in lib/model/doctrine/ sfForkedDoctrineApplyPlugin On 28 Lip, 01:52, Tristan tristan.bessou...@gmail.com wrote: Have you removed or cut sfGuardUserProfile

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-29 Thread Tristan
Ok, it seems that i have two declaration of sfGuardUserProfile, so i deleted mine, and kept the one from the plugin (merging my attributes) SQLSTATE[HY000]: General error: 1005 Can't create table 'mywebsite.#sql-7d_7b' (errno: 150). Failing Query: ALTER TABLE sf_guard_user_profile ADD

[symfony-users] urgent confirmed : /:sf_culture/ breaks my search module

2010-07-28 Thread Tristan
Hello, after hours of research, we found that : IS WORKING : player_search: url: /players/rechercher param: { module: propositions, action: search } ISN'T WORKING : player_search: url: /:sf_culture/players/rechercher param: { module: propositions, action: search } requirements:

[symfony-users] Re: urgent confirmed : /:sf_culture/ breaks my search module

2010-07-28 Thread Tristan
Ok, a friend told me a solution : my rules in rounting.yml are too much in the bottom i didn't know it must follow a hierachical pattern. I put my 2 routes in the begining of routing.yml and it fixed everything ! -- If you want to report a vulnerability issue on symfony, please send it to

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-27 Thread Tristan
All i have similar in that folder is : BasesfGuardUser.class -- 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

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-27 Thread Tristan
Sorry, i forgot to tell that i removed manually all the /lib/model/ doctrine/sfForkedDoctrineApplyPlugin/ then i redid a rebuild all. Then, a similar error, different line -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

[symfony-users] The search module being broken by internationalisation ?

2010-07-27 Thread Tristan
Hello, i've been following the jobeet job tutorial. I managed to create the search module, which worked before any internationalisation thing. I was hoping that i did something wrong, and i decided to tested on another module who needs search. Result : same error : My latest module : 404 |

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-27 Thread Tristan
Have you removed or cut sfGuardUserProfile declaration from schema.yml? Definitly not, that's where i store the user information since you cannot override sfGuardUser methods. Is anyone has tested the latest version of the plugin ? Cause either i'm missing a real important thing and it's all my

[symfony-users] latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-26 Thread Tristan
Hello, after upgrading to the 1.3.2 version of the sfForkedDoctrineApplyPlugin, here what i've got right after plugin:upgrade : [CODE] Warning: require(/Users/Tristan/Sites/plugins/ sfForkedDoctrineApplyPlugin/lib/model/doctrine/ PluginsfGuardUserProfileBasis.class.php) [function.require]: failed

[symfony-users] Re: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-26 Thread Tristan
it broke everything : even after removing the plugin, i stil have this message. -- 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: latest verion of sfForkedDoctrineApplyPlugin is broken

2010-07-26 Thread Tristan
When i rebuild my model, it outputs the same error at a different line. php symfony cc as many time as i could :d -- 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

[symfony-users] Problem with the website - My tasks

2009-07-12 Thread Yoda-BZH - Tristan Charbonneau
Hello I have a problem with the website. I recently (and successfully) created a plugin. I received a contribution proposal, but since then, when I want to see My Tasks, or when I go on my plugin page, I have a 500 error. The affected plugin is sfJqueryCarouselPlugin

[symfony-users] redirect + post

2009-01-17 Thread Tristan
+ set parameter + forward/ redirect), but it's not working ... Do you have any hint ? Tristan --~--~-~--~~~---~--~~ 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

[symfony-users] i18n routing.yml

2008-07-18 Thread Jean-Tristan Chanegue
Is it possible to do such a thing with Symfony ? If not, how can i handle this constraint ? Thanks Jean-Tristan Chanegue --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] Re: i18n routing.yml

2008-07-18 Thread Jean-Tristan Chanegue
Dustin, Thanks for the quick answer. That's exactly what I need! I'm still using Symfony 1.0 but that seems OK regarding http://trac.symfony-project.org/browser/plugins/ysfDimensionsPlugin/branches/1.0/README Regards, Jean-Tristan Chanegue On Fri, Jul 18, 2008 at 9:08 AM, Dustin Whittle

[symfony-users] Re: plugin dependencies

2008-02-22 Thread Tristan Rivoallan
On Fri, Feb 22, 2008 at 1:24 AM, Jonathan Wage [EMAIL PROTECTED] wrote: I don't think the symfony plugin installer looks at these dependencies currently. it does in sf-1.1 : http://trac.symfony-project.com/ticket/1907 ++ tristan --~--~-~--~~~---~--~~ You

[symfony-users] Re: How to integerat the Zen cart shopping cart in symfony framework?

2008-02-15 Thread Tristan Rivoallan
because it is not specific enough. it's like asking how can i implement a full fledged cms with symfony ;) if you need symfony expert to solve complete problems for you, take a look at http://trac.symfony-project.com/wiki/JobPostings and http://symfonians.net/jobs. regards, tristan

[symfony-users] Re: who's trying zend for eclipse?

2008-01-24 Thread Tristan Rivoallan
On Jan 24, 2008 4:44 PM, Nicolas Perriault [EMAIL PROTECTED] wrote: The full code reflection with type hinting through phpdoc tags is amazingly useful and worthes to give it a try. afaik, this feature is provided by eclipse PDT so you don't need neon to get it. ++ tristan

[symfony-users] Re: who's trying zend for eclipse?

2008-01-24 Thread Tristan Rivoallan
the money. ++ tristan --~--~-~--~~~---~--~~ 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 group, send email to [EMAIL PROTECTED

[symfony-users] Re: Symfonians, yet another place for the Symfony community

2008-01-21 Thread Tristan Rivoallan
a known issue with the format of sent emails that makes them rejected by very restrictive RBLs. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony

[symfony-users] Re: Symfony 1.1 Questions / IoC / Dependency Injection

2008-01-17 Thread Tristan Rivoallan
/browse_thread/thread/4eca35cd70993357/ i don't know how it's going. ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Issue while setting up sfSimpleForum_PayloadFilterChainPlugin

2008-01-16 Thread Tristan Rivoallan
hi, sorry to answer so late i did not see your email. i'm the maintainer of this plugin. i think the best way to help you would be to schedule a meeting on jabber (my adress is [EMAIL PROTECTED]). poke so that we can see when we are both available. regards, ++ tristan

[symfony-users] Re: Symfony talk in London - Feb 29th

2008-01-10 Thread Tristan Rivoallan
a lot. we have approx. 60 developers with ~ 15 people using symfony regularly. in exchange your logo will appear on a slide, free publicity! yey :) ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony

[symfony-users] Re: PeerObjects, MySQL and UTF-8 encoding

2008-01-09 Thread Tristan Rivoallan
time ago) a bug in creole that prevented to mix dsn and params syntax. Did you try dsn: mysql://x:[EMAIL PROTECTED]:3306/mybase?encoding=utf8 ? also did you check your http response's encoding ? 2 cents, tristan --~--~-~--~~~---~--~~ You received this message

[symfony-users] Re: Newbie With Seg Faults

2008-01-03 Thread Tristan Rivoallan
corresponding the segfault ? ++ tristan --~--~-~--~~~---~--~~ 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 group, send email

[symfony-users] Re: Symfoclipse?

2007-11-27 Thread Tristan Rivoallan
://noy.cc/symfoclipse/license.html ++ tristan --~--~-~--~~~---~--~~ 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 group, send

[symfony-users] Re: XLIFF tool?

2007-11-19 Thread Tristan Rivoallan
in a ticket ? this is the kind of stuff that is easily patchable. ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: XLIFF tool?

2007-11-16 Thread Tristan Rivoallan
. ++ tristan --~--~-~--~~~---~--~~ 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 group, send email to [EMAIL PROTECTED] For more

[symfony-users] Re: ASP model implementation on symfony

2007-10-26 Thread Tristan Rivoallan
On 10/23/07, Allan Andal [EMAIL PROTECTED] wrote: Any suggestion on how to implement an on-demand model (application service provider) in symfony? this plugin may prove useful : http://trac.symfony-project.com/wiki/sfDimensionsPlugin ++ tristan

[symfony-users] Re: We are migrating the symfony website...

2007-09-28 Thread Tristan Rivoallan
On 9/28/07, Grégoire Hubert [EMAIL PROTECTED] wrote: As you could see, we have migrated to a new server. Hope this will serve the community better. If you spot any issue, please let us know so we could fix it quickly. lightning fast ! congrats for the smooth move. ++ tristan

[symfony-users] Re: I would like to join your group; my membership is pending approval

2007-09-28 Thread Tristan Rivoallan
On 9/28/07, jamie cotton [EMAIL PROTECTED] wrote: Please add me to your group. you are in :) ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] linked symfony group

2007-09-26 Thread Tristan Rivoallan
hi everyone, there's now a symfony group on linkedin. go there to get an invitation : http://www.linkedin.com/e/gis/29205/0B1CA518B106 a good start for a symfony network :) ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: symfony-network.com

2007-09-26 Thread Tristan Rivoallan
interested in symfony are listed (hopefully), with access to their resumes, connections and recommandations. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send

[symfony-users] Re: sfPropelActAsNestedSetBehavior | unknown column error in function getLevel()

2007-09-25 Thread Tristan Rivoallan
, this looks like valid sql to me. The rdbms you are using is mysql right ? ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Forms API

2007-09-24 Thread Tristan Rivoallan
hi, On 9/22/07, Jack Bates [EMAIL PROTECTED] wrote: Is there anything like the Drupal Forms API for symfony? For programmatically writing standards accessible forms? Thanks, Jack this may help : http://trac.symfony-project.com/trac/wiki/sfFormBuilderPlugin ++ tristan

[symfony-users] Re: Symfony coders needed

2007-09-20 Thread Tristan Rivoallan
/wiki/DevelopersForHire ++ tristan --~--~-~--~~~---~--~~ 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 group, send email

[symfony-users] Re: cant get sfPropelVersionableBehaviorPlugin running

2007-09-06 Thread Tristan Rivoallan
\propel-generator\build- propel.xml:470:1: ERROR!! Attempt to set foreign key to nonexistent table, contact! you can try to : * deactivate the plugin * create all tables * reactivate plugin * create plugin tables i never encountered this problem before :/ ++ tristan

[symfony-users] Re: Output an excel file from an action

2007-09-05 Thread Tristan Rivoallan
with content type text/html. that's related to previous problem : headers are not sent, so your content-type is not taken into account. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group

[symfony-users] Re: csI18nRoutingPlugin release / Translatable URLs

2007-08-29 Thread Tristan Rivoallan
) ++ tristan --~--~-~--~~~---~--~~ 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 group, send email to [EMAIL PROTECTED] For more

[symfony-users] Re: automated code audit

2007-08-29 Thread Tristan Rivoallan
bundled PEAR standards sniffer to comply with symfony standards. ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: php_openssl.dll Warning ?

2007-08-10 Thread Tristan Rivoallan
module dynamically at runtime. where is php_openssl.dll located on your server ? the include path ('./ php_openssl.dll') seems wrong. Find the directory the dll is located and set extension_dir to the path of that directory. this will probably solve the problem. ++ tristan

[symfony-users] nested sets plugin versionning question

2007-08-07 Thread Tristan Rivoallan
it by svn:externals, what migration path would you prefer (not that there are that many) ? regards, tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: nested sets plugin versionning question

2007-08-07 Thread Tristan Rivoallan
will have to relocate those and i don't want to go ahead without noticing users first. Thanks again for all your work on this great plugin! thanks ! regards, tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[symfony-users] Re: sfSimpleForumPlugin

2007-08-06 Thread Tristan Rivoallan
On 8/6/07, Lukas Kahwe Smith [EMAIL PROTECTED] wrote: you should be leveraging pear dependencies for this . indeed. it would be great to have this fixed in 1.1 : http://trac.symfony-project.com/trac/ticket/1907 ++ tristan --~--~-~--~~~---~--~~ You received

[symfony-users] Re: sfPropelActAsNestedSetBehaviorPlugin Question

2007-08-05 Thread Tristan Rivoallan
On 8/5/07, Greg Freeman [EMAIL PROTECTED] wrote: Is it possible to retrieve a whole tree with multiple root nodes and no scope with 1 query? this feature is not implemented. Don't hesitate to send a patch if you code it :) ++ tristan --~--~-~--~~~---~--~~ You

[symfony-users] Re: sfPropelActAsNestedSetBehaviorPlugin Scope

2007-08-05 Thread Tristan Rivoallan
the scope. Please feel free to enlighten me on this. indeed : there's absolutely no dynamic ways to assign scope. And i don't see any better way to implement it (please note : i drank far too much pastis yesterday night). ++ tristan --~--~-~--~~~---~--~~ You

[symfony-users] Re: sfPropelActAsNestedSetBehavior and Oracle

2007-08-03 Thread Tristan Rivoallan
thing to do would be to turn these queries into criteria calls. it would grant full compliance with all rdbms supported py creole... ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Re: Using Scriptable Configuration with database

2007-08-02 Thread Tristan Rivoallan
On 8/2/07, Arnaud [EMAIL PROTECTED] wrote: Nobody has got an example of a config loaded by a database please ? no example, but it should not be difficult to write a database config compiler. take a look at classes in http://trac.symfony-project.com/trac/browser/trunk/lib/config ++ tristan

[symfony-users] sfPropelActAsNestedSetBehaviorPlugin 0.9.1

2007-07-23 Thread Tristan Rivoallan
references to scope node (Olivier.Mansour) * fixed postgresql compatibility (Maciej.Filipiak Krasimir.Angelov) * added a note about supported RDBMS (tristan) * made roadmap clearer (tristan) * removed useless Propel::getConnection (Eric.Fredj) * fixed scope handling in `deleteDescendants

[symfony-users] Re: i18n and sfPropelVersionableBehaviorPlugin

2007-07-20 Thread Tristan Rivoallan
other options for me. not that i know of. ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: i18n and sfPropelVersionableBehaviorPlugin

2007-07-20 Thread Tristan Rivoallan
this feature atm. ++ tristan --~--~-~--~~~---~--~~ 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 group, send email to [EMAIL

[symfony-users] Re: Database Replication support in symfony

2007-07-18 Thread Tristan Rivoallan
://groups.google.com/group/symfony-devs/browse_thread/thread/863aef7c668e937a/bd8523aa021ee23e?lnk=gst ++ tristan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Problems with Behaviour Plugins

2007-07-16 Thread Tristan Rivoallan
hi, On 7/14/07, Hamish Guthrie [EMAIL PROTECTED] wrote: [sfConfigurationException] Propel behavior actasnestedset is not registered what version of the plugin are you using ? ++ tristan --~--~-~--~~~---~--~~ You received this message because you

[symfony-users] Re: Problems with Behaviour Plugins

2007-07-16 Thread Tristan Rivoallan
On 7/16/07, Hamish Guthrie [EMAIL PROTECTED] wrote: Hi Tristan, What is really strange to me is that I can use the symfony propel-init-admin generator as well as the propel-init-crud without any problem, it is just the propel-generate-crud that gives me the issue. I am now looking at doing

[symfony-users] Re: Introduction and question regarding Doctrine

2007-07-11 Thread Tristan Rivoallan
are limiting your choice of plugins. indeed. but for the biggest problem of doctrine is its perpetually instable state. there's not even a named release. You have to keep up with a moving trunk. That's the reason i stick to propel, but i definitely keep an eye on doctrine. ++ tristan

[symfony-users] Re: Introduction and question regarding Doctrine

2007-07-11 Thread Tristan Rivoallan
On 7/11/07, Ian P. Christian [EMAIL PROTECTED] wrote: It's been slightly updated - please do feel free to update it, a one sided argument is no good to anyway. i don't have time for this atm, but it's on my todo list ;) ++ tristan --~--~-~--~~~---~--~~ You

[symfony-users] Re: Introduction and question regarding Doctrine

2007-07-11 Thread Tristan Rivoallan
to decide. there are no best practices defined by symfony. i may start to have tags / branches for some of my plugins. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group

[symfony-users] Re: sfZendPlugin for 1.0?

2007-07-10 Thread Tristan Rivoallan
On 7/10/07, Stefan Koopmanschap [EMAIL PROTECTED] wrote: Symfony autoloading does not use this structure (or does it?) it does not. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group

[symfony-users] Re: Batch scripts use 'sfWebRequest'?

2007-06-28 Thread Tristan Rivoallan
the controller depending on php's sapi ? ++ tristan --~--~-~--~~~---~--~~ 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 group, send

[symfony-users] Re: Batch scripts use 'sfWebRequest'?

2007-06-28 Thread Tristan Rivoallan
On 6/28/07, Fabien POTENCIER [EMAIL PROTECTED] wrote: This is not the way it works right now. Factories are per-environment. ok. but do you agree on the principle ? ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: Routing and url stored in db

2007-06-21 Thread Tristan Rivoallan
, this has already been answered on this list). ++ tristan --~--~-~--~~~---~--~~ 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

  1   2   >