[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 But

[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@g

[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 wr

[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] 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 rep

[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-

[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 chang

[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 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 type and instan

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

2010-12-27 Thread Tristan
Hi, I was wondering if that's possible, in the backend, to add a test to render a form using a form class "X" if it's the super_admin and using form class "Y" if it's another user. It's only because if it's not the super admin, i'm usetting fields via unset($this['name']); Where to add that

[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 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 the list of c

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

2010-12-27 Thread Tristan
ever you 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, Tri

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

2010-12-26 Thread Tristan
ow to achieve that ? I guess that the solution will be in the preExecute() function, but how to do that please ? Thanks, Tristan. -- 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 t

[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 wrote: > Hi, > > 2010/12/5 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 > &g

[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" ac

[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) : http://pastie.org/privat

[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, caus

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

2010-10-31 Thread Tristan
it failed 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

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

2010-10-31 Thread Tristan
trinePlugin/lib/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 wrote: > Any unordinary queries that might be occurring in the partials? > > On Oct 30, 2010 5:09 PM, "Tristan"

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

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

[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 : ht

[symfony-users] Re: Question with fowarding method

2010-10-22 Thread Tristan
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

[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 ? T

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

2010-10-09 Thread Tristan
> 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 wrote: > > Nob

[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 unsub

[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
customers = $query -> find(); //this is a propel15 > feature, otherwise use a peer class to select >     } >   } > > } > > and in the template: > > renderFormTag(url_for("customers")); ?> > >   > > > > > That help? > > Daniel &g

[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 p

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

2010-09-23 Thread Tristan
idate 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 p

[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] Re: L18N helper not extracting strings in forms !

2010-08-09 Thread Tristan
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 > Sent: lundi 9 août 2010 19:49 > To: symfony users >

[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: load L18N helper in form class : how to ?

2010-08-07 Thread Tristan
nfiguration > { >     public function configure() >     { >         ProjectConfiguration::getActive()->loadHelpers( array( 'I18N' ) ); >     } > > } > > On Sat, Aug 7, 2010 at 10:59 AM, Tristan wrote: > > > Hello > > > i know that it's

[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( 'categ

[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 t

[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(); $context->getConfigur

[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 Segmentatio

[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 e

[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 emai

[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 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 sfForkedDoctrineApplyP

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

2010-08-01 Thread Tristan
ok, thanks, once you've sleep a little can you tell me a little more please ? like where to search in the branch :D cause it's kinda huge there :D Thanks -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message beca

[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] 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 a

[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 CONSTRAIN

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

2010-07-29 Thread Tristan
problems with models 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 wrote: > > > Have you re

[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 sec

[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: 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] 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 | No

[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 received

[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
I did eveything you said, i uninstall the plugin i reinstalled the latest version of the plugin i cleared the cache Whend doing : php symfony doctrine:build --all --and-load --no- confirmation Fatal error: Class 'PluginsfGuardUserProfileBasis' not found in /Users/ Tristan/Sites

[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 Grou

[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] 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]: f

[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 http://www.symfony-project.o

[symfony-users] redirect + post

2009-01-17 Thread Tristan
method POST + 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,

[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, Dust

[symfony-users] i18n & routing.yml

2008-07-17 Thread Jean-Tristan Chanegue
xml 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

[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/tic

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

2008-02-15 Thread Tristan Rivoallan
does not get an answer 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://symfonian

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

2008-01-24 Thread Tristan Rivoallan
mp; profiler, which are worst 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 unsubscrib

[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 ge

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

2008-01-21 Thread Tristan Rivoallan
-mail :( check your spam, there's 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" gro

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

2008-01-21 Thread Tristan Rivoallan
: count me in for further developments. ++ 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 fro

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

2008-01-17 Thread Tristan Rivoallan
s.google.com/group/symfony-devs/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 p

[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, ++ tr

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

2008-01-10 Thread Tristan Rivoallan
age.com) - uses symfony 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

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

2008-01-09 Thread Tristan Rivoallan
[EMAIL PROTECTED]:3306/mybase there was (a long 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 --~--~-~--~~-

[symfony-users] Re: Newbie With Seg Faults

2008-01-03 Thread Tristan Rivoallan
t the apache error logs 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

[symfony-users] Re: Symfoclipse?

2007-11-27 Thread Tristan Rivoallan
me for non-commercial or job-related purposes." http://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 emai

[symfony-users] Re: XLIFF tool?

2007-11-19 Thread Tristan Rivoallan
l these requirements 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] Re: XLIFF tool?

2007-11-16 Thread Tristan Rivoallan
d it w/ symfony. ++ 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: 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

[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 thi

[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 mo

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

2007-09-26 Thread Tristan Rivoallan
ave a place where most of people 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

[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

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

2007-09-25 Thread Tristan Rivoallan
7;d love to get this running... that's pretty weird, 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" gro

[symfony-users] Re: Forms API

2007-09-24 Thread Tristan Rivoallan
code of plugin or Symfony the class comes from another plugin. ++ 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@googlegro

[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

[symfony-users] Re: Problem with Form Builder Plugin

2007-09-24 Thread Tristan Rivoallan
fFormBuilderPlugin\lib\BasesfFormBuilder.class.php on line 1630 > > What is this class for? Where can I find it? No info of it in > core, in documentation, and in Google. http://trac.symfony-project.com/trac/wiki/sfCollapsibleContentPlugin ++ tristan --~--~-~--~~

[symfony-users] Re: Symfony coders needed

2007-09-20 Thread Tristan Rivoallan
p://trac.symfony-project.com/trac/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.co

[symfony-users] Re: cant get sfPropelVersionableBehaviorPlugin running

2007-09-06 Thread Tristan Rivoallan
lowing reason: > C:\Programme\php5\PEAR\symfony\vendor\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 neve

[symfony-users] Re: Flexy Templating Plugin?

2007-09-05 Thread Tristan Rivoallan
tained ? * is it a real PHP5 system ? ++ 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 fro

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

2007-09-05 Thread Tristan Rivoallan
> Also, the page ends 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 Goog

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

2007-08-29 Thread Tristan Rivoallan
ll fledged pear channels ? if so, what documentation did you use to set them up ? regards, 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: automated code audit

2007-08-29 Thread Tristan Rivoallan
d not take too long to adapt 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 t

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

2007-08-29 Thread Tristan Rivoallan
ything with "sf" (imho) ++ 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

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

2007-08-10 Thread Tristan Rivoallan
fony does not load any 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 probabl

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

2007-08-07 Thread Tristan Rivoallan
is mail because people already using externals 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 th

[symfony-users] nested sets plugin versionning question

2007-08-07 Thread Tristan Rivoallan
u include 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, se

[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

[symfony-users] Re: AMFPHP or SABREAMF integration

2007-08-05 Thread Tristan Rivoallan
rac/wiki/sfSwiftPlugin hth, 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, sen

[symfony-users] Re: sfPropelActAsNestedSetBehaviorPlugin Scope

2007-08-05 Thread Tristan Rivoallan
t see any other dynamic ways to assign 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 t

[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

[symfony-users] Re: sfPropelActAsNestedSetBehaviorPlugin Question

2007-08-05 Thread Tristan Rivoallan
hi, On 8/5/07, Greg Freeman <[EMAIL PROTECTED]> wrote: > Could you use the root category's primary key as the scope? you can if you want to, but you still have to define it explicitely ++ tristan --~--~-~--~~~---~--~~ You received this message b

[symfony-users] Re: sfPropelActAsNestedSetBehavior and Oracle

2007-08-03 Thread Tristan Rivoallan
course, patches are welcome :) the best 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

[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 +

[symfony-users] sfSimpleForum_PayloadFilterChainPlugin-0.6

2007-08-02 Thread Tristan Rivoallan
inder : sfSimpleForum_PayloadFilterChainPlugin adds text transformations capabilities (code, smileys, bbcode, etc) to sfSimpleForum. ++ tristan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group.

  1   2   >