Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-24 Thread gimler
the doctrine version sfDoctrineGuardExtraPlugin work 100% with doctrine is testet and i use it in my live projects. the propel version sfGuardExtraPlugin didn't work i will fix it this week. greetings Gimler On 23 Mrz., 21:56, ckemmler ckemm...@gmail.com wrote: Hi Gimler, Good to know

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-24 Thread ckemmler
Great! Looking forward to use/debug it. Will it have a captcha (hint)? On Mar 24, 1:23 am, gimler gordon.fra...@web.de wrote: the doctrine version sfDoctrineGuardExtraPlugin work 100% with doctrine is testet and i use it in my live projects. the propel version sfGuardExtraPlugin didn't work

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-23 Thread gimler
hello, i have developed this plugin and ported for propel but don't test it ; ( so my question is work the plugin with propel??? do you have any problems with it? So that i can complete the documentation??? greeting gimler On 22 Mrz., 01:06, Sid Bachtiar sid.bacht...@gmail.com wrote: With

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-23 Thread dsb
Are you still getting this Fatal Error. You need to execute - doctrine:bulild-all-reload command, this should create the required files. I dont know which command in Propel does the same job. On Mar 21, 5:03 pm, Lawrence Krubner lkrub...@geocities.com wrote: On Mar 20, 7:57 pm, ckemmler

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-23 Thread ckemmler
Hi Gimler, Good to know you're the plugin's owner :-) If I understand well, you have written the plugin, then ported it to propel without really testing it. Am I right? I don't really understand the dependencies to propel actually, please forgive my ignorance. So why/how was it working outside

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread Lawrence Krubner
On Mar 20, 7:18 pm, ckemmler ckemm...@gmail.com wrote: Thanks! Did that. I have two problems now 1. the README there tells me: * Add method `retrieveByUsernameOrEmailAddress` to get a user by email or username in lib/model/sfGuardPlugin/sfGuardUserPeer.class e.q. [PHP]

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread Lawrence Krubner
On Mar 20, 7:57 pm, ckemmler ckemm...@gmail.com wrote: This might be more interesting: I just tried to trigger the register action by going to: http://localhost/web/frontend_dev.php/sfGuardRegister/register This got me: Fatal error: Class 'sfGuardFormRegister' not found in /eclipse/

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread ckemmler
Hey Pixelmeister, Lawrence, this is the setup functoin in my ProjectConfiguration: public function setup() { // for compatibility / remove and enable only the plugins you want $this-enableAllPluginsExcept(array('sfDoctrinePlugin', 'sfCompat10Plugin')); } in settings.yml, I have:

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread Fási Gábor
Did you clear your cache after installing the plugin? On Sat, Mar 21, 2009 at 00:57, ckemmler ckemm...@gmail.com wrote: This might be more interesting: I just tried to trigger the register action by going to: http://localhost/web/frontend_dev.php/sfGuardRegister/register This got me:

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread ckemmler
uh-ho! Seems I haven't I'm definitely getting one step further, but I suppose it isn't quite good enough yet :-( Thanks anyway! On Mar 21, 2:57 pm, Fási Gábor maerl...@gmail.com wrote: Did you clear your cache after installing the plugin? On Sat, Mar 21, 2009 at 00:57, ckemmler

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-21 Thread Sid Bachtiar
With Symfony, when there's a problem, first clear cache :-D On Sun, Mar 22, 2009 at 12:56 PM, ckemmler ckemm...@gmail.com wrote: uh-ho! Seems I haven't I'm definitely getting one step further, but I suppose it isn't quite good enough yet :-( Thanks anyway! On Mar 21, 2:57 pm, Fási Gábor

Re : [symfony-users] sfGuardExtraPlugin

2009-03-20 Thread Loïc Vernet
Try by SVN or download the pear package. ++ De : ckemmler ckemm...@gmail.com À : symfony users symfony-users@googlegroups.com Envoyé le : Vendredi, 20 Mars 2009, 23h58mn 04s Objet : [symfony-users] sfGuardExtraPlugin This plugin seems to buy me everything I

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-20 Thread ckemmler
Thanks! Did that. I have two problems now 1. the README there tells me: * Add method `retrieveByUsernameOrEmailAddress` to get a user by email or username in lib/model/sfGuardPlugin/sfGuardUserPeer.class e.q. [PHP] static public function retrieveByUsernameOrEmailAddress

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-20 Thread ckemmler
This might be more interesting: I just tried to trigger the register action by going to: http://localhost/web/frontend_dev.php/sfGuardRegister/register This got me: Fatal error: Class 'sfGuardFormRegister' not found in /eclipse/

Re: Re : [symfony-users] sfGuardExtraPlugin

2009-03-20 Thread pixelmeister
Try symfony plugin:inslall --release=xx.xx.xx sfGuardExtraPlugin and make shure you register the plugin in the ProjectConfiguration.class.php Example: $this-enablePlugins('sfGuardExtraPlugin'); OR $this-enableAllPluginsExcept(array('sfXXXPlugin', 'sfCompat10Plugin')); regards,