[symfony-users] Re: Process incoming emails using Symfony

2007-06-05 Thread Nathan Vonnahme
You might also look at the Postie plugin for WordPress: http://www.economysizegeek.com/?page_id=395 A cron job (or callback in another page, see cronless_postie) executes a PHP page, which checks the POP or IMAP box. Attachments are stored in a writable directory (like file uploads would be),

[symfony-users] Re: Auto completion based on value of other form element

2007-06-05 Thread Martin Kreidenweis
Hi, > I've run into a situation where I need to offer auto completion based > on the value of another field on the form, as well as the value in > the auto completed field itself. > Is there a recommended way to go about this? You can use the "with" parameter. Have a look at http://www.symfo

[symfony-users] sfGuardPlugin and sfAuthUser customization

2007-06-05 Thread Sébastien CAS
Hi all, I use sfGuardPlugin and I want to customize the sfAuthUser. So, I'have created a model named myProfile and modified the app.yml like that: all: sf_guard_plugin: profile_class: myProfile profile_field_name: user_id In the back-end, I can easily add

[symfony-users] Auto completion based on value of other form element

2007-06-05 Thread Alexander Deruwe
Hey everyone, I've run into a situation where I need to offer auto completion based on the value of another field on the form, as well as the value in the auto completed field itself. Is there a recommended way to go about this? I've tried (foolishly, I'm pretty sure :) to embed Prototype $F

[symfony-users] Re: Process incoming emails using Symfony

2007-06-05 Thread Joby Walker
I use a Perl script (mercilessly copied from Request Tracker) that posts the content of the email to a webform. The original rt-mailgate (before configuring...): > http://svn.bestpractical.com/cgi-bin/index.cgi/bps/view/rt/branches/3.6-RELEASE/bin/rt-mailgate.in This mechanism works wonderfully

[symfony-users] sfDirectorChart

2007-06-05 Thread Franck Schneider
Hi, Does anyone have test the sfDirectorPlugin ? I can't make it work ! Does someone have a code example to show me how to use it in an template ? Thanx --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony use

[symfony-users] Re: changing the module to load inside a filter

2007-06-05 Thread Matthias Nothhaft
Lukas Kahwe Smith wrote: > Matthias Nothhaft wrote: >> Fabien POTENCIER wrote: >>> You can try something like this (not tested) in your filter: >>> >>> $context = $this->getContext(); >>> $controller = $context->getController(); >>> >>> $actionInstance = $controller->getAction($moduleName, $action

[symfony-users] Re: changing the module to load inside a filter

2007-06-05 Thread Lukas Kahwe Smith
Matthias Nothhaft wrote: > Fabien POTENCIER wrote: >> You can try something like this (not tested) in your filter: >> >> $context = $this->getContext(); >> $controller = $context->getController(); >> >> $actionInstance = $controller->getAction($moduleName, $actionName); >> $actionInstance->initial

[symfony-users] Re: changing the module to load inside a filter

2007-06-05 Thread Matthias Nothhaft
Fabien POTENCIER wrote: > You can try something like this (not tested) in your filter: > > $context = $this->getContext(); > $controller = $context->getController(); > > $actionInstance = $controller->getAction($moduleName, $actionName); > $actionInstance->initialize($context); > $context->getAc

[symfony-users] Re: Problem to delete an askeet user

2007-06-05 Thread Rafael George
I think you will find it here. http://www.symfony-project.com/askeet/20 On 6/5/07, senechaux <[EMAIL PROTECTED]> wrote: > > I didn't found where is the action to delete an user, can you help > me?? > > Thanks > > On 4 jun, 17:26, "Rafael George" <[EMAIL PROTECTED]> wrote: > > AFAIK, askeet can d

[symfony-users] Re: sfDoctrine stable version

2007-06-05 Thread Nathanael D. Noblet
Marek wrote: > Hi, > > I know there's not any official stable version, but many svn revisions > just don't work. So what revisions are you using? I work with > postgres, and would like to experiment with table inheritance, so > please if anyone is using this combination let me know what revision

[symfony-users] Re: sfDoctrine stable version

2007-06-05 Thread Matthias Nothhaft
Marek wrote: > Hi, > > I know there's not any official stable version, but many svn revisions > just don't work. So what revisions are you using? I work with > postgres, and would like to experiment with table inheritance, so > please if anyone is using this combination let me know what revision

[symfony-users] Re: Store Sessions in DB

2007-06-05 Thread andyjeffries
Thanks Mat. That could do with mentioning in the book (as it will error if it doesn't exist), hint, hint, Fabien ;-) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, sen

[symfony-users] Re: Process incoming emails using Symfony

2007-06-05 Thread andyjeffries
I'd say you aren't going to be able to direct them to a symfony module, but a file in symfony's batch/ folder may be almost as good (it'll then have access to your model and symfony classes). For decoding it, I've only used PEAR's Mail_MIME, but it's pretty good/ easy. Cheers, Andy --~--~--

[symfony-users] Re: propel-build-sql problem for multiple Database

2007-06-05 Thread andyjeffries
I came across this recently (in my first week of starting with symfony - aren't I a lucky chap to hit this one so early). The answer is to specify a different model for the second schema (whichever you decide is the second one). A given model in propel can only have one database. So you need a

[symfony-users] Re: sfDoctrine stable version

2007-06-05 Thread bugalood
Hi ! The version on SVN seems to be unstable because the creator of Doctrine is performing a complete refactoring of the application. However, older versions work well ! On 5 juin, 13:30, Marek <[EMAIL PROTECTED]> wrote: > Hi, > > I know there's not any official stable version, but many svn revi

[symfony-users] sfDoctrine stable version

2007-06-05 Thread Marek
Hi, I know there's not any official stable version, but many svn revisions just don't work. So what revisions are you using? I work with postgres, and would like to experiment with table inheritance, so please if anyone is using this combination let me know what revision you are using. Other comm

[symfony-users] propel-build-sql problem for multiple Database

2007-06-05 Thread JJ
Hello, I am getting following error when I try do do : symfony propel-build-sql PHP Fatal error: Call to a member function addTable() on a non-object in /usr/share/pear/symfony/vendor/propel-generator/classes/propel/phing/PropelSQLTask.php on line 233 I have two schema files for both database. i

[symfony-users] Re: Problem with pear with symfony plugin-install

2007-06-05 Thread Arnaud
Thank you ! It's work now :) --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Process incoming emails using Symfony

2007-06-05 Thread Jorge Laranjo
Can't you use a pop3 or imap account for that? That way you can check those inbox and parse all the email you want to. I use the Zend framework for that. Just use the bridge from Symfony to the Zend framework. Jorge Laranjo http://jorge.laranjo.eu On 6/5/07, RobRoyAus <[EMAIL PROTECTED]> wrote:

[symfony-users] Re: Store Sessions in DB

2007-06-05 Thread Mat
You must create the session table, if it doesn't exist, you'll get an error. CREATE TABLE `session_storage` ( `session_id` varchar(255) collate latin1_general_ci NOT NULL, `session_data` longtext collate latin1_general_ci NOT NULL, `session_time` bigint(20) NOT NULL, PRIMARY KEY (`sessio

[symfony-users] Process incoming emails using Symfony

2007-06-05 Thread RobRoyAus
Does anyone here have experience processing incoming emails using Symfony? I want to parse all incoming emails and for validated emails load the attachments into a new database record - in a similar fashion to the Flickr "Upload by Email" service (http://www.flickr.com/account/ uploadbyemail/ - y

[symfony-users] Re: Problem to delete an askeet user

2007-06-05 Thread senechaux
I didn't found where is the action to delete an user, can you help me?? Thanks On 4 jun, 17:26, "Rafael George" <[EMAIL PROTECTED]> wrote: > AFAIK, askeet can delete users you must be an administrator for making > the deletion of a user, and talking about the anonymous user you can > have the us

[symfony-users] Re: Store Sessions in DB

2007-06-05 Thread andyjeffries
> seehttp://www.symfony-project.com/book/trunk/06-Inside-the-Controller-La... > > On the server side, symfony stores user sessions in files by default. > You can store them in your database by changing the value of the class > parameter in factories.yml, as shown in Listing 6-21. I actually have

[symfony-users] Re: Symfony cache + PHP fatal error

2007-06-05 Thread Kiril Angov
I think the problem I posted bellow is cause by the debug javascript toolbar. because I was calling the action with frontent_dev.php/member/test But this still does not explain why I am getting the same error when I turn on the caching for the production environment. Do you need any information