[symfony-users] [dependency-injection] Possibility to provide parameters when referencing a service

2011-06-17 Thread Stefan Alexandru
Hello, I was wondering if it is possible to provide parameters when referencing a service. I'll try to explain what I mean. Let's say I have an abstract class Dao that is extended by classes Dao1 and Dao2. The abstract class Dao has a dependency on a class X. Class X needs some (scalar) parameters

[symfony-users] Re: Custom Authentication Provider

2011-06-09 Thread Stefan Reek
ld my own token) to your Listener. This token indicates if the user is authenticated or not. I hope I could point you in the right direction with this, if you need more info let me know. Regards, Stefan On Jun 8, 9:46 am, robertoNR wrote: > Nobody can help me? > > Roberto. > >

[symfony-users] Request::get() does not return POST parameters

2011-05-29 Thread Stefan Reek
s well as COOKIE params and whatnot, while the $request->request->get and $request->request->query should give me the POST/GET params separately. Is this a bug in Beta 2, or did I misunderstand the docs? regards, Stefan -- If you want to report a vulnerability issue on symfony, ple

Re: [symfony-users] [Symfony2] User authentication

2011-02-18 Thread Stefan Paschke
If you extended your controller class from Symfony\Bundle\FrameworkBundle\Controller\Controller, you should be able to access the container as an instance variable, like $this->container. regards Stefan Paschke On Feb 18, 2011, at 8:29 AM, Sébastien Roch wrote: > Hi, > I don&#x

Re: [symfony-users] 2 Classes for each Database Table, what to put in each one?

2010-12-14 Thread Stefan Paschke
yes you can: http://www.symfony-project.org/gentle-introduction/1_4/en/08-Inside-the-Model-Layer-Doctrine#chapter_08_sub_object_and_table_classes On Dec 14, 2010, at 1:02 PM, Andre Lopes wrote: > There are 2 classes for each Table, for example: > > JobeetJob.class.php and JobeetJobTable.class.p

Re: [symfony-users] Re: Weird cache issues under load, sf 1.4 as svn:external on Windows Server 2008 Standard

2010-08-10 Thread Stefan Koopmanschap
no real similarities in the situation where it happened :( Stefan On Tue, Aug 10, 2010 at 3:54 PM, pghoratiu wrote: > Hi! > > Have no idea what could this be, in my opinion it is something related > to locking at the FS level. > > My suggestion is to try one of the fol

Re: [symfony-users] Excluding from Filter and Form builder

2010-07-15 Thread Stefan Paschke
if you are using Doctrine, you can turn filters off like this: SomeModel: options: symfony: form: false filter: false it's described on day 10 of the Jobeet tutorial regards Le Jul 15, 2010 à 4:16 PM, Gábor Fási a écrit : > I'm using this: > >_propel_behaviors: >

Re: [symfony-users] domain

2010-02-23 Thread Stefan Koopmanschap
tp://groups.google.com/group/symfony-users?hl=en. > > -- Stefan Koopmanschap Symfony Community Manager stefan.koopmansc...@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 t

Re: [symfony-users] Re: sflive2010 Symfony Core Dev Q&A session

2010-02-19 Thread Stefan Koopmanschap
2010, at 20:58, a...@speedypin.com wrote: > >> Thanks dude, your efforts are appreciated. Great vids. >> >> On Feb 17, 5:50 am, Ben Haines wrote: >>> After Stefan Koopmanschap's talk about community on Saturday at >>> sflive2010 I feel compelled to give something back ;

Re: [symfony-users] sfLive contest winner ...

2010-02-19 Thread Stefan Koopmanschap
Hi Simone, I'm going to chase this for you :) Stefan On Fri, Feb 19, 2010 at 4:25 PM, Simone Fumagalli wrote: > I remember there was a sort of contest for the best review/picture/ > tweet during the sfLive 2010 can we have the links for reviews and the > photo ? > > Th

Re: [symfony-users] Re: Ajax Forms

2010-02-09 Thread Stefan Paschke
Ajax form validation works like regular form validation. The action inits and binds the form class, if it does not validate, you just return the bound form complete with error messages. It's described in the jobeet tutorial. Stefan On Feb 10, 2010, at 7:24 AM, Samuel Morhaim wrote: >

Re: [symfony-users] Re: Ajax Forms

2010-02-09 Thread Stefan Paschke
added to the list, and an empty form. To delete an entry from the from, you could just replace the block that contains the form. Sometimes, it may also be appropriate to write a jQuery function that removes one row from the list and sends a delete call to the server which is not answered. regards

Re: [symfony-users] Bad saving on PropelChoice

2010-02-09 Thread Stefan Paschke
'] = new sfWidgetFormChoice(array( 'choices' => array( '' => '-Seleccione-', true=> 'Resuelto', false => 'No Resuelto'

Re: [symfony-users] Re: [1.3/1.4] How to best implement an address using the Symfony 1.3/1.4 Form Framework?

2010-02-03 Thread Stefan Paschke
ind / clean process does not affect the included widget, so its value must be collected in updateObject(): if ( array_key_exists( 'neck_girth', $values['units'] ) ) { $this->object->setUnit( $values['units']['neck_girth'] ); } can't send yo

Re: [symfony-users] [1.3/1.]How to best implement an address using the Symfony 1.3/1.4 Form Framework?

2010-02-03 Thread Stefan Paschke
bject() methods. If you really just want 4 individual text input fields, I'd use 4 standard widgets. Stefan On Feb 3, 2010, at 2:51 PM, Stephen Melrose wrote: > I have a database table with the following fields, > > address_1 > address_2 > address_3 > address_4 > >

Re: [symfony-users] What do you use symphony for?

2010-02-01 Thread Stefan Paschke
ly by overwriting methods in classes provided for that purpose. regards Stefan On Jan 27, 2010, at 1:37 AM, raviu wrote: > Hello, > > Could you tell us what you use symphony for, and how it has helped. > Just a summary of one or two lines. I'm making up a report and would >

[symfony-users] sfPropelParanoidBehaviorPlugin not available any more?

2010-01-21 Thread Stefan Paschke
lugin" symfony-project.org says the plugin is stable and compatible with versions 1.0 thru 1.4. Anyone know what the problem ist? Anyone using this plugin with 1.3 / 1.4? regards Stefan -- You received this message because you are subscribed to the Google Groups "symfony users" gr

[symfony-users] sfCombinePlugin for sf 1.3

2010-01-04 Thread Stefan
Hi, does anybody know, if there will be a sfCombinePlugin for Symfony 1.3? or can i use the 1.1.0 version for 1.3 as well? -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-us...@googlegroups.com. To

[symfony-users] generic way to tell if a Propel object has i18n

2009-11-23 Thread Stefan Paschke
the specific class names. To my amazement, my generated Base classes do not have anything like 'hasI18n()' or 'isI18n'. Stefan -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to

Re: [symfony-users] Re: Save embedded forms at diferent times

2009-11-20 Thread Stefan Paschke
naForm($denunciado); >} in the 'update' case, you do aggregate the objects correctly >$this->embedForm('conciliador', $conciliadorForm); >$this->embedForm('denunciante', $denuncianteForm); >$this->embedForm('denunciado'

Re: [symfony-users] Re: Save embedded forms at diferent times

2009-11-19 Thread Stefan Paschke
PersonaForm( $this->object->getPersona(), $this->options ); $this->embedForm( "persona", $persona_form ); } otherwise, the Audienca object won't know what to do with the embedded Persona, I guess. regards Stefan On Nov 19, 2009, at 5:16 PM, Germana Oliveira w

Re: [symfony-users] Re: Save embedded forms at diferent times

2009-11-18 Thread Stefan Paschke
u configure the first embedded form? > 3. Save embedded Form number2 (this embedded Form have some Foreign Key > from Main Form) Stefan -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symf

[symfony-users] Re: sfValidatorPropelUnique fails on updates - 1.2

2009-11-16 Thread Stefan Paschke
; => false ) ), ) ); so basically you are passing the primary key as a hidden value. This seems odd, because the form will know the difference between insert and update and behave correctly without doing this, yet somehow the sfValidatorPropelUnique doesn't. best wishes Stefan &

[symfony-users] Re: Symfony BugHuntDay - Who 's coming?

2009-11-09 Thread Stefan Koopmanschap
People coming from the Utrecht area might be able to get a ride in my car. I can take up to three people with me to Belgium Stefan On Thu, Nov 5, 2009 at 7:41 PM, James Cauwelier wrote: > > Are there other people with similar problems?  Which railway station > would be accessib

[symfony-users] CSRF breaks after ajax authentication

2009-09-27 Thread Stefan
will fail, because Symfony detects an 'CSRF attack'. I found an unresolved ticket for Symfony 1.1 (#3932), but that doesn't help me much. Does anybody know how to proceed? Thanks, Stefan --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] Re: publication project on the server - where place files ?

2009-09-17 Thread Stefan Koopmanschap
Hi, No, the document root of your webserver should point to symfony's "web" directory. Everything outside of that should not be included in your document root (otherwise people could for instance access config/ databases.yml file and see your database credentials). Stefan On

[symfony-users] Re: Symfony aspires to be pure OOP, so why the hell are helpers implemented as functions instead of as methods of classes?

2009-09-08 Thread Stefan Koopmanschap
ending classes? You could have (partial) code reuse which would be very useful, where this is not easily done right now (because you have to manually load the base helper in your helper before you call it). Anyway, I was *not* saying symfony helpers will be that way, I was only saying I was d

[symfony-users] Re: Symfony aspires to be pure OOP, so why the hell are helpers implemented as functions instead of as methods of classes?

2009-09-08 Thread Stefan Koopmanschap
harder to read. Stefan On Mon, Sep 7, 2009 at 3:20 AM, Jake Barnes wrote: > > > I am confused. In most respects Symfony presents itself an OOP > framework which implements several best-practice   design patterns, > such as MVC and Front Controller, and Symfony takes advantage of so

[symfony-users] save() or doSave() for an embedded form

2009-09-05 Thread stefan
I try to customize a save method of an embedded doctrine form. In fact, I want to copy some values from the parent form. MemberForm embeds BillingForm. and I want first_name and last_name from billing table to be automatically inserted from the MemberForm fields. I tried some code (even the die()

[symfony-users] external parameters to a sfForm

2009-09-05 Thread stefan
Hello, Probably there is another way, I am very new to symfony and it's hard for now. In a signup page have a sfForm (SignupForm) which embeds several other forms (MemberForm, ProductForm)... etc. But the MemberForm behaves a little different depending on some GET parameter for the signup page.

[symfony-users] Re: jobeet tutorial backend app problem

2009-09-04 Thread Stefan Koopmanschap
Hi, Some basic checks to make sure this is not the problem: Did you build-all or build-form? Have you cleared the cache? These would be the two main reasons which might cause/solve this Stefan On Fri, Sep 4, 2009 at 11:21 PM, dc wrote: > > Hello, > > I'm approximately fol

[symfony-users] jobeet day 12 - getJobeetCategory()

2009-09-01 Thread stefan
Hello, I am reading the doctrine edition. In day 12, it says "But the JobeetJob class already has a getJobeetCategory() method that returns the related category object". I opened lib/model/doctrine/ JobeetJob.class.php and I can't see a getJobeetCategory(). Neither in the base class. Although it

[symfony-users] Re: global functions: where do I put it?

2009-08-31 Thread Stefan Koopmanschap
you could also put it in the form of a validator of course (having said that, you might want to look at symfony's e-mail validator: http://www.symfony-project.org/api/1_2/sfValidatorEmail) Stefan On Sep 1, 8:13 am, jarthel wrote: > I have an "email address" format checker that

[symfony-users] Re: Identity Management in PHP

2009-08-10 Thread Stefan Koopmanschap
Hi, Why is OpenID out of the question for internal applications? You could set up an OpenID server on your local network which will allow people to log in within your local server. Just an idea ;) Stefan On Mon, Aug 10, 2009 at 1:38 AM, Sherif wrote: > > Thanks Guys. > OpenID is o

[symfony-users] Re: Identity Management in PHP

2009-08-09 Thread Stefan Koopmanschap
in's to be the leading implementation). OpenID seems to be a great solution for SSO. Stefan On Sun, Aug 9, 2009 at 7:40 AM, Sherif wrote: > > Hey Guys, > I had a quick question regarding Identity management. I currently have > a whole lot of PHP apps (some symfony) running on a ser

[symfony-users] Re: What about sf 1.0 extended support?

2009-08-08 Thread Stefan Koopmanschap
continue support, please do keep in touch with me. As the new community manager I would like to stay updated on this and perhaps be a point of contact to those who want to continue the support. Sincerely, Stefan On Fri, Aug 7, 2009 at 2:55 PM, Sid Ferreira wrote: > Hi folks! > I was thinking ab

[symfony-users] Re: Problem with Doctrine build from existing DB

2009-07-08 Thread Stefan Sturm
ad problem with that... In my tables a foreign key field has this format: tablename__fieldname This works fine... Greetings, Stefan Sturm --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" grou

[symfony-users] Re: Problem with Doctrine build from existing DB

2009-07-08 Thread Stefan Sturm
Hello, 2009/7/7 Jonathan Wage : > The double underscores in your column names might be causing the problem. this is not nice, because we have a lo double underscores in our DB... Greetings, Stefan Sturm --~--~-~--~~~---~--~~ You received this message beca

[symfony-users] Re: Working with Symfony, Doctrine and an IDE( here Netbeans )

2009-07-08 Thread Stefan Sturm
Hello, I found this in the forums, but it is not working with 1.2... http://forum.symfony-project.org/index.php/m/81335/#msg_81335 Greetings, Stefan Sturm --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sy

[symfony-users] Working with Symfony, Doctrine and an IDE( here Netbeans )

2009-07-07 Thread Stefan Sturm
lds of the tables. So, is there a way to generate this getter and setter methods? Thanks for your help, Stefan Sturm --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to th

[symfony-users] Problem with Doctrine build from existing DB

2009-07-07 Thread Stefan Sturm
line 275 I'm all new to symfone and I don't know where to look for this error. I'm working at the Jobeet Tutorial, there is everything fine. But when I try my own DB, I get this error... Hope somebody can Help me :-) Greetings, Stefan Sturm --~--~-~--~~~-

[symfony-users] Re: Generate Doctrine Models from an existing DB using Symfony

2009-07-07 Thread Stefan Sturm
Hello, thank you that's it :-) Greetings, Stefan Sturm 2009/7/6 Gábor Fási : > > php symfony doctrine:build-schema > > On Mon, Jul 6, 2009 at 17:16, Stefan Sturm > wrote: >> >> Hello, >> >> I'm all new to Symfony. >> >> I try to

[symfony-users] Generate Doctrine Models from an existing DB using Symfony

2009-07-06 Thread Stefan Sturm
ebody can help me. Greetings, Stefan Sturm --~--~-~--~~~---~--~~ 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 gr

[symfony-users] Re: Shopping Cart Plugin - 1.2 - Doctrine

2009-06-24 Thread Stefan Koopmanschap
(or, of course, contribute them as a patch to Fabien for possible inclusion in the plugin). Stefan On Wed, Jun 24, 2009 at 10:36 AM, Duendon wrote: > > Hi all, > > Does anyone know if you can use the Shopping Cart plugin, available > for Symfony 1.2, with Doctrine - and how to do t

[symfony-users] Re: How to handle async. background-tasks initiated by the frontend..

2009-06-24 Thread Stefan Koopmanschap
immediately came up for me as serious solutions for what you are trying to do. Stefan [1]: http://www.symfony-project.org/plugins/sfJobQueuePlugin [2]: http://www.zend.com/platform On Wed, Jun 24, 2009 at 1:32 PM, Christian Weyand wrote: > > Hello everyone, > > we've built a feature where w

[symfony-users] Re: Symfony CMS Plugins

2009-04-06 Thread Stefan Koopmanschap
This may be a stupid question, but since I've mentioned this at SymfonyCamp last year as well... ;) why not use DbFinderPlugin for this? On Tue, Mar 31, 2009 at 4:40 AM, Jonathan Wage wrote: > I won't develop a version for Propel but someone is welcome to form my > version and convert it for Pr

[symfony-users] Re: Doctrine Validator fails on unique field

2009-03-25 Thread Stefan Schweizer
Hi Justin, I have the same problem with validatin faults. To get around it we simply delete all sfGuard* entries in the dumped data.yml. Not a good solution but a working one. Maybe this is not as intended and someone finds a better way to do it later.. -Stefan

[symfony-users] Re: jobeet tutorial

2009-03-17 Thread Stefan Koopmanschap
Hi, Could you explain a bit more what your problem is, I am a bit unsure what you're seeing right now Sincerely, Stefan On Fri, Mar 6, 2009 at 1:08 PM, Vikaash wrote: > > hai > I m rightnow going through symfony jobeet tutorial. > At the end of 3rd day after putting all th

[symfony-users] Re: PDO problems on Jobeet tutorial

2009-01-18 Thread Stefan Koopmanschap
Hi, I've heard more reports of this with people using the WAMP package. The solution I've heard is to switch to the XAMPP distribution. I have not tested this myself, as I don't have the Windows platform yet (currently downloading my Win7 though). Stefan On Sat, Jan 17, 2

[symfony-users] Re: sfManagerPlugin teaser: build a CMS on top of your symfony application

2008-12-21 Thread Stefan Koopmanschap
ideas about the CMS. Sincerely, Stefan On Sat, Dec 20, 2008 at 3:03 AM, Bernhard Schussek wrote: > > Hi fellow symfonians, > > > I want to speak a little bit about a plugin that I currently work on > and get some feedback about it from you. > > > I was always rathe

[symfony-users] Re: Plugin repository should be more informative

2008-12-18 Thread Stefan Koopmanschap
g too much. A user comment system is something I think the plugin directory could possibly benefit from. Stefan On Thu, Dec 18, 2008 at 11:12 AM, Yuretsz wrote: > > Symfnony's plugin repository http://www.symfony-project.org/plugins/ has 369 > plugins. Thats alot. > Some of

[symfony-users] Re: Extending DbFinder

2008-12-17 Thread Stefan Koopmanschap
You can always open a ticket, and preferably of course add a patch to it. The original author of the plugin has stopped maintaining it, I think officially Kris Wallsmith is now the maintainer of the plugin. Since he's very busy with a lot of stuff, adding patches might help a lot. Stefan O

[symfony-users] Symfony prejudices and myths

2008-11-25 Thread Stefan Koopmanschap
like symfony without really knowing what symfony is. I want prejudices and urban legends about our beloved frameworks that I can defuse and clear up for those present. Thanks in advance for any help you guys can give me in this, and I look forward to your responses. Sincerely,

[symfony-users] Re: Symfony and code performance overhead

2008-10-28 Thread Stefan Koopmanschap
even though it's not representative it will give an indication of overhead (as that was the point Rasmus was making in the first place). Perhaps that information may help you. Really, you should not be using that information as it's not representative though. Stefan On Tue, Oct 28,

[symfony-users] Re: Symfony + SOA

2008-10-24 Thread Stefan Koopmanschap
situations are getting less and less often though, as in a lot of situations, PHP will do just fine and even symfony will help you fine in this. So without knowing too much of the specifics, I can't go into this too much. But I hope this helps nonetheless. Stefan On Fri, Oct 24, 2008 at 6:44 PM, s

[symfony-users] Re: IDE for symfony?

2008-05-22 Thread Stefan Koopmanschap
I personally use Zend Studio for Eclipse, which works well if you add symfony to the "library". But there is also the free Symfoclipse, an Eclipse plugin. I have not worked with it yet, so I don't know how good it is. Stefan On May 22, 3:32 am, "Daevid Vincent" <[EM

[symfony-users] Dutch PHP Conference

2008-02-21 Thread Stefan Koopmanschap
te at http://www.phpconference.nl/. Keep in mind that last year the registration was full in two weeks time! This year there is more capacity, but still it may go fast, so if you want to be sure of a seat, register ASAP! :) Stefan --~--~-~--~~~---~--~~ You received this message b

[symfony-users] Re: apache and symfony .htaccess issue.

2008-02-15 Thread Stefan Koopmanschap
site1/web you just replace the "app" directory by a symlink to the web/ directory of the correct project. The best thing about this is that you can just symfony sync everything in place and it'll immediately work. Stefan --~--~-~--~~~---~--~~ You r

[symfony-users] Re: Help the core team save time!

2008-02-11 Thread Stefan Koopmanschap
On Feb 9, 4:28 am, Carl Vondrick <[EMAIL PROTECTED]> wrote: > On Friday, February 08, 2008, Dustin Whittle wrote: > > If we all work together, we can save Fabien & Francois a lot of time so > > they can spend it on more important things (like family!).. > > What is the process for commit access to

[symfony-users] Re: Best model for system

2008-01-23 Thread Stefan Koopmanschap
Hi, I personally would go for two applications, one for visitors, clients and collectors, and one for administrators. seperating specific content into modules which are secured for specific credentials. But I guess this is open for discussion, other people may do it any other way. Stefan On

symfony-users@googlegroups.com

2008-01-22 Thread Stefan Koopmanschap
An excellent idea, I have donated a bit! On Jan 22, 10:48 am, "Ian P. Christian" <[EMAIL PROTECTED]> wrote: > Hi guys, > > With the help of a few others, I have been collecting donations to get > Fabien and Francois a gift. I was hoping to collect enough to get a > little present for them both t

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

2008-01-21 Thread Stefan Koopmanschap
OK, for some reason my first registration attempt never sent me my e- mail. Registering with another username and another e-mailaddress though was a success. What a great application! Stefan On Jan 21, 12:28 pm, Stefan Koopmanschap <[EMAIL PROTECTED]> wrote: > Hiya > > Looks i

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

2008-01-21 Thread Stefan Koopmanschap
Hiya Looks interesting, and the response so far is so positive I'm very curious. I just registered and maybe I am just really really too impatient but I've yet to receive the confirmation e-mail :( Stefan On Jan 20, 10:54 pm, "Nicolas Perriault" <[EMAIL PROTECTED]> wr

[symfony-users] Symfony @ PHP Abstract Podcast

2008-01-17 Thread Stefan Koopmanschap
Hey All, Today,the podcast I did for Zend has been published on the PHP Abstract Podcast. It gives a short overview of the framework. Enjoy! http://devzone.zend.com/article/2981-PHP-Abstract-Podcast-Episode-32-Introduction-to-symfony Stefan

[symfony-users] Re: New symfony website

2008-01-14 Thread Stefan Koopmanschap
r dev environment / debugging turned on in production. This also exposes a lot of information about your application. Aside from that, I like what you've done with the select boxes to make selections and subselections :) Stefan On Jan 11, 1:21 pm, sameer <[EMAIL PROTECTED]> wrote: > Hi A

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

2008-01-12 Thread Stefan Koopmanschap
symfony and when a good occasion comes, we will definitely be moving from supporters to users there as well. I hope this helps. Feel free to use the logo from www.ibuildings.com :) Sincerely, Stefan On Jan 10, 2:19 pm, "Ian P. Christian" <[EMAIL PROTECTED]> wrote: > Hi guys, &

[symfony-users] Re: CMS written in Symfony / Call for help

2008-01-11 Thread Stefan Koopmanschap
Hi, Interesting project, I'm going to look at it over the coming days I think :) Stefan On Jan 11, 9:03 am, Piers Warmers <[EMAIL PROTECTED]> wrote: > Hi All, > > A quick message to announce a project some of us here at my company > have been working on. > > St

[symfony-users] Happy new year!

2008-01-01 Thread Stefan Koopmanschap
I want to wish the whole symfony community a fantastisch new year! Happy new year everyone! --~--~-~--~~~---~--~~ 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@goo

[symfony-users] Re:

2007-12-20 Thread Stefan Koopmanschap
I have uploaded a new version of the example code in the ticket I created, if/when it goes to the website it up to Fabien I guess :) On Dec 18, 10:54 am, Teck <[EMAIL PROTECTED]> wrote: > I'm new to symfony. > > I downloaded the sample code from Easy Ajax tutorial > at

[symfony-users] Re:

2007-12-19 Thread Stefan Koopmanschap
Opened a ticket: http://trac.symfony-project.com/ticket/2695 I may add it to my own TODO list for the symfony sprint tomorrow. :) On Dec 18, 11:48 am, Teck <[EMAIL PROTECTED]> wrote: > Thanks guys. > > Would anyone mind opening a ticket at trac? > I'm not as experienced as I should be when using

[symfony-users] Re: Installation on Leopard

2007-12-19 Thread Stefan Koopmanschap
For some reason missed this. Zend Core should be good enough as well. i've been wanting to try this out, just need to get myself to actually do that ;) On Dec 18, 11:47 am, Kiril Angov <[EMAIL PROTECTED]> wrote: > Any reason not to usehttp://www.zend.com/en/products/core/index > > Kupo > > Teck w

[symfony-users] Re: Installation on Leopard

2007-12-18 Thread Stefan Koopmanschap
just use macports. I have set up my php and mysql using macports, and things are running fine. :) On Dec 18, 11:33 am, Alexander Deruwe <[EMAIL PROTECTED]> wrote: > On 18 Dec 2007, at 01:09, Teck wrote: > > > Is anybody working on Leopard version? > > I found that on Leopard the easiest way out i

[symfony-users] Re: Installation on Leopard

2007-12-18 Thread Stefan Koopmanschap
I am using symfony Leopard with Mysql5, so it will work fine :) On Dec 18, 1:09 am, Teck <[EMAIL PROTECTED]> wrote: > Hi, > > I've been reading wiki articles on the official site such as: > > *http://trac.symfony-project.com/wiki/osXDevelopmentEnvironment > *http://trac.symfony-project.com/wiki/I

[symfony-users] Re: shared hosting recommendations

2007-11-18 Thread Stefan Koopmanschap
There is, sort of: http://trac.symfony-project.com/wiki/HostsSupportingSymfony On Nov 18, 8:24 pm, "Bayarsaikhan [Singleton LLC]" <[EMAIL PROTECTED]> wrote: > on symfony website, i mean. > > On 11/18/07, Bayarsaikhan [Singleton LLC] <[EMAIL PROTECTED]> wrote: > > > > > > > it would be nice if the

[symfony-users] Re: I can work as a freelancer

2007-10-18 Thread Stefan Koopmanschap
Tolga, Add yourself to the list on this page: http://trac.symfony-project.com/wiki/DevelopersForHire It's always good to have yourself on that list if you're available for hire for symfony work :) Stefan On Oct 18, 10:40 am, tolga <[EMAIL PROTECTED]> wrote: > Hi, > I ca

[symfony-users] Re: Book Corrections

2007-10-16 Thread Stefan Koopmanschap
You can submit errata through the Apress website: http://www.apress.com/book/errata/630 On Oct 16, 9:27 pm, Eno <[EMAIL PROTECTED]> wrote: > On Oct 16, 3:25 pm, Eno <[EMAIL PROTECTED]> wrote: > > > Do book error get into the PDF version that Apress sells online? > > I meant do corrections get ba

[symfony-users] Re: Symfony - Forge

2007-10-11 Thread Stefan Koopmanschap
nt for, so that's what it should be used for ;) Stefan On Oct 10, 11:48 pm, Jon Busby <[EMAIL PROTECTED]> wrote: > I remember some talk about this a while back, but (see as I'm about to > release my completely unfinished e-commerse code plus paypal and google > checkout plu

[symfony-users] Re: symfony-framework.nl launched!

2007-10-04 Thread Stefan Koopmanschap
Heh, year. I have to be honest here, Dave's pointers on the usage of the YUI css framework helped me out a lot while doing the layout of this site. Thanks Dave! :) On Oct 4, 10:37 pm, "Dave Dash" <[EMAIL PROTECTED]> wrote: > Nice use of the reset/font/grid css framework :

[symfony-users] symfony-framework.nl launched!

2007-10-04 Thread Stefan Koopmanschap
e/359/symfony-frameworknl-launched Anyway, feel free to help me test the site a bit if you have some time. Just click around and if you encounter anything, let me know :) Stefan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google G

[symfony-users] Re: phing package

2007-10-03 Thread Stefan Koopmanschap
When you install symfony through PEAR, I know for sure you don't have to do that anymore. I haven't used any other ways of installing symfony, but maybe anyone else here might? Stefan On Oct 3, 2:48 am, Geoff <[EMAIL PROTECTED]> wrote: > Did we still need to install the ph

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

2007-10-01 Thread Stefan Koopmanschap
his that showed interest in helping out. Stefan On Sep 26, 12:52 pm, "Francois Zaninotto" <[EMAIL PROTECTED] project.com> wrote: > The idea of doing a social stuff for symfony developers is nice. But why > reinvent the wheel and redevelop something while it is possible (an

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

2007-09-28 Thread Stefan Koopmanschap
Hi James, Good to see you here :) Stefan On Sep 28, 3:39 pm, "jamie cotton" <[EMAIL PROTECTED]> wrote: > Hello, > > I have gotten to know symfony through the "Symfony camp" held in Holland. > > Will probably be using Symfony for our next project, w

[symfony-users] Re: Migrations! Migrations!

2007-09-28 Thread Stefan Koopmanschap
Yeah, I've also bookmarked this. Unfortunately, I haven't had the time to actually try it out yet. It looks pretty useful though. Stefan On Sep 27, 11:13 pm, "Fabian Lange" <[EMAIL PROTECTED]> wrote: > Hi, > > I remember the discussions about db migrat

[symfony-users] symfony-network.com

2007-09-25 Thread Stefan Koopmanschap
I can install a trac, open a subversion repository, etc on my DreamHost (where I host all my sites) to support the team effort of developing this site. We'll probably need someone to have some sort of project manager role, and a few developers. Interested parties, please do respond. T

[symfony-users] Re: symfony-jobs Google Group

2007-09-25 Thread Stefan Koopmanschap
Hi Well, this would definitely also be an option, but I wouldn't want to spam this group will all minor details of such development. It was just an idea, no need to do it that way. I'll start a thread asking for opinions. Stefan On Sep 25, 5:37 pm, "Rafael George" <[

[symfony-users] Re: symfony-jobs Google Group

2007-09-25 Thread Stefan Koopmanschap
gcimh > > > > <http://groups.google.com/group/symfony-jobs?hl=en&lnk=gcimh> > > > > > To temporarily assuage people's need to discuss job opportunities and > > > > find developers (and vice versa), I created this group. Perhaps on > > her

[symfony-users] Re: Symfony coders needed

2007-09-25 Thread Stefan Koopmanschap
iners, but I don't think this is necessary. As long as the community wants it, the community can make it ;) Stefan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To

[symfony-users] Re: Symfony coders needed

2007-09-25 Thread Stefan Koopmanschap
ally good to manage people, especially for small tasks. > > Kupo > > Stefan Koopmanschap wrote: > > Yes and no. > > > There is the wiki that does this already, however it would be nice to > > have some kind of system where you can manage your contacts with > > s

[symfony-users] Re: Symfony coders needed

2007-09-25 Thread Stefan Koopmanschap
d it's probably an idea that needs to develop a bit more, but I am working on it and if the community feels this is a good idea, I can give it more priority. Stefan On Sep 20, 10:49 am, Razvan POPA <[EMAIL PROTECTED]> wrote: > Hi. Wouldn't it be a good ideea to have a list/

[symfony-users] Re: sfJobQueuePlugin: managing job queues with Symfony

2007-09-18 Thread Stefan Koopmanschap
Ah thanks, this is just what I needed. I am currently working on a Propel-driven FeedAggregator plugin, and this might make managing the fetching of the feeds easier. I'm gonna study this one :) Stefan On Sep 17, 6:43 pm, Xavier Lacot <[EMAIL PROTECTED]> wrote: > Hello Symfony use

[symfony-users] Re: are sub-actions or sub-forms somehow possible?

2007-09-11 Thread Stefan Koopmanschap
these days do not support AJAX anymore? I understand the wish to have a fallback system, just wondering for what kind of system you want this fallback ;) Stefan On Sep 11, 6:19 pm, s8529hel <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to use symfony to create a frontend (b

[symfony-users] Re: wanna give seminar but have no ideas

2007-09-10 Thread Stefan Koopmanschap
It was in my original response to this topic ;) On Sep 10, 5:10 pm, "g0d br" <[EMAIL PROTECTED]> wrote: > Hi Stefan, > > Can you send me that list ? > > thank you > > 2007/9/10, Stefan Koopmanschap <[EMAIL PROTECTED]>: > > > > > > &

[symfony-users] Re: wanna give seminar but have no ideas

2007-09-10 Thread Stefan Koopmanschap
, check the program at www.symfonycamp.com to see what we ended up doing. There's lots of topics that you can talk about when discussing symfony. :) Stefan On Sep 9, 5:20 pm, nitin <[EMAIL PROTECTED]> wrote: > I m in final year IT branch student.I wanna give seminar on > symfony.But

[symfony-users] Re: First version of SymfonyCamp program online

2007-08-19 Thread Stefan Koopmanschap
All people who registered so far should have received their confirmation yesterday. If you've yet to receive it, please let me know. Stefan On 17 aug, 10:42, Stefan Koopmanschap <[EMAIL PROTECTED]> wrote: > The first version of the program of the technology days of SymfonyCamp &

[symfony-users] First version of SymfonyCamp program online

2007-08-17 Thread Stefan Koopmanschap
or at least this weekend! Early bird registration deadline has been extended until August 22nd, because of the late publishing of the program. So take your chance, register now! :) Stefan --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[symfony-users] Re: SymfonyCamp update

2007-08-16 Thread Stefan Koopmanschap
announcements on speakers will be made hopefully as soon as possible. Stefan --~--~-~--~~~---~--~~ 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: SymfonyCamp update

2007-08-16 Thread Stefan Koopmanschap
you a good indication of what the program will look like. Sincerely, Stefan On Aug 16, 10:57 am, "Roel Vanhout" <[EMAIL PROTECTED]> wrote: > Do you have a projection on when the programme for the dev days will be > available? I'd like to know what subject wills be

[symfony-users] Re: SymfonyCamp update

2007-08-15 Thread Stefan Koopmanschap
shout that they will be here, it's up to them to do so. Sincerely, Stefan On Aug 15, 10:38 am, Thierry <[EMAIL PROTECTED]> wrote: > Which members from Holland are going? > Could you maybe publicize the list (give the registered people the > option to disclose this info) &g

[symfony-users] Re: SymfonyCamp update

2007-08-14 Thread Stefan Koopmanschap
Hi Darren, I have one other registration from the UK so far (and I think this person is a member here, so if he would like to get in touch with you, he can ;) ). Obviously, for privacy issues, I can not disclose any registration information. Stefan On Aug 14, 1:32 pm, "Darren Beale&quo

[symfony-users] SymfonyCamp update

2007-08-13 Thread Stefan Koopmanschap
g at http://upcoming.yahoo.com/event/20/ Anyway, have a look at www.symfonycamp.com ... I hope to see you there! Stefan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to

  1   2   >