[symfony-users] Re: Full library of freeze

2008-07-13 Thread Andreas Hucks
rolled update on each > of the projects OR when are you hosting a project on a hosting > provider where installing symfony is not possible. > > Disk space is not a real matter nowadays. > > My two cents. > > Frank > > On Jul 11, 2:53 pm, Andreas Hucks <[EMAIL PROT

[symfony-users] Re: Full library of freeze

2008-07-11 Thread Andreas Hucks
BTW, is there a reason not to link symfony as an svn external under lib/vendor and then just project:deploy the whole thing? There would be some files (generators etc.) uploaded that are not needed, but the litte wasted space wouldn't matter, and transfer only takes place once at initial depl

[symfony-users] Re: Autoloading and tasks

2008-07-09 Thread Andreas Hucks
I solved the problem, there seems to be missing some info on task configuration. For those experiencing similar problems, take a look at ticket #3951. Andreas Andreas Hucks schrieb: > Hi, > > I am trying to use my first custom task in 1.1, using Swift to send out > some ma

[symfony-users] Autoloading and tasks

2008-07-09 Thread Andreas Hucks
Hi, I am trying to use my first custom task in 1.1, using Swift to send out some mails. I get a "Fatal error: Class 'Swift' not found in [...]" Manual loading is a workaround, but no long-term solution. Swift is correctly installed in lib/vendor/swift, the cache was cleared as well. I found

[symfony-users] Re: How to know where we are ? (on wich page ?)

2008-07-09 Thread Andreas Hucks
You can compare the route used in the link_to() function in the menu to the current route name using: sfContext::getInstance()->getRouting()->getCurrentRouteName() If it matches, output a different CSS class for the link in question. Andreas Sylver schrieb: > no idee ? :/ > > On 8 juil, 12:

[symfony-users] Problems with propel:build-forms

2008-07-04 Thread Andreas Hucks
Hi all, I am (for the first time) trying to generate base forms using "symfony propel:build-forms" as described in the new forms book. However, all that is generated is a single, empty, BaseFormPropel.class.php file. There a two things that are different in my setup: I use schema.xml, not .y

[symfony-users] "Symfony 1.1, as a transition release..."

2008-06-29 Thread Andreas Hucks
Hi, first, a big thank you very much to the devs for your effort with symfony so far. I started converting my own plugins that I use for my projects for 1.1. Only in the last days I started noticing from the list and some blog posts 1.1 is considered a "transition release" to 1.2. Is there a

[symfony-users] Re: off topic: svn gui for OS X

2008-05-02 Thread Andreas Hucks
IMO, both RapidSvn and svnX are far too buggy and incomplete to actually use. Development of both apps seems to have stopped long ago as well. SCPlugin looks promising, but has a few bugs listed that make me not want to use it yet... SyncroSVNClient is pretty awesome for me. It's not free, but

[symfony-users] Re:

2007-12-18 Thread Andreas Hucks
Whether you can use those depends on your PHP configuration, not on symfony (short_open_tag in php.ini). Although using short tags is not recommended in the symfony coding guidelines, IIRC. Cheers, Andreas Teck schrieb: > I'm new to symfony. > > I downloaded the sample code from Easy Ajax t

[symfony-users] Re: How extend a class from a plugin

2007-10-12 Thread Andreas Hucks
stand your question - you already have the extended stub class to add your own methods. If you still need to extend it... just extend it. 3) If you mean "extend the user model" you can do that using a seperate profile table, as described in the documentation. Cheers Andreas Hucks schri

[symfony-users] Re: How extend a class from a plugin

2007-10-12 Thread Andreas Hucks
1) Extend sfGuardUser 2) Set your new class as the parent class in myUser.class.php instead of sfGuardUser. Cheers Jonathan Moreira Cardozo schrieb: > Guyz please help me, i have to extend the sfGuardUser class from > sfGuardPlugin how i do this? > --~--~-~--~~~---

[symfony-users] Propel-Build tasts fail - "Cant Load default Task list"

2007-08-22 Thread Andreas Hucks
Hi, all my propel-build-xxx tasks fail with the message "Cant Load default Task list". This started happening with all projects on my machine. I've found an old forum post here: http://www.symfony-project.com/forum/index.php/m/6459/ that suggests reinstalling phing should do the trick. But P

[symfony-users] Re: new symfony plugin, sfLightWindowPlugin

2007-08-16 Thread Andreas Hucks
Awesome! Do you plan on adding this to svn? Cheers, Andreas Scott Meves schrieb: > Hello fellow symfony users, > > We just uploaded a new plugin, sfLightWindowPlugin, to the growing > number of symfony plugins on the wiki. I was a big fan of LightWindow v2 > because it used prototype.js and

[symfony-users] Re: installing symfony on MacBook Pro

2007-05-19 Thread Andreas Hucks
Actually, there is a XAMPP version for OSX. Works well for me, although I had some trouble with wrong file permissions out of the box. Cheers, Andreas Brian Hoke schrieb: > I just got a MacBook Pro after years of developing on a PC - what's my > best bet for getting PHP5/MySQL5/symfony install

[symfony-users] Re: What if there were ... SymfonyCamp?

2007-04-12 Thread Andreas Hucks
Seconded. Cheers, Andreas Martin Groh schrieb: > I love camping in the Netherlands and I'd like to take part. > Since my boss is not willing to pay for anything, this would be private > fun for me. So I'd prefer a "fair" pricing. --~--~-~--~~~---~--~~ You receiv

[symfony-users] Re: translation in a non-language context

2007-04-12 Thread Andreas Hucks
Take a look at the sfDimensionsPlugin: http://trac.symfony-project.com/trac/wiki/sfDimensionsPlugin Cheers, Andreas Martin Groh schrieb: > Hi, > > on my site I come to a point, where I need translation in a more > 'functional/operative' way rather than language translation. > I'm thinking of

[symfony-users] Re: Setting default permissions for log files? (unable to write to file)

2007-04-12 Thread Andreas Hucks
ou set on that log directory. > > > cheers, > > roel > > > Andreas Hucks wrote: >> Hi all, >> >> the server I run my app on will run cronjobs (= symfony batch files) as >> a different user than the webserver. This is a fixed setting and I am &

[symfony-users] Setting default permissions for log files? (unable to write to file)

2007-04-11 Thread Andreas Hucks
Hi all, the server I run my app on will run cronjobs (= symfony batch files) as a different user than the webserver. This is a fixed setting and I am not able to change users for cronjobs. Because of this, my batch files are not able to write to frontend_prod.log. While I can fix this tempora