Re: [symfony-users] Clear cache in action

2010-10-18 Thread Sela Yair
not to work. > > $ccTask = new sfClearCacheTask(); > $ccTask->run(); > > -- > Pierre-Yves LEBECQ > > > 2010/10/12 Sela Yair > >> is there a single command in sfConfigCache to clear all the cache? >> i want to enable from the admin to do similar to symfony

Re: [symfony-users] Problem with fixtures and nested set behaviour schema

2010-10-14 Thread Sela Yair
i would assume it's the database relations, do you use the same database on windows and ubuntu? On 13 October 2010 15:34, Benjamin wrote: > Hello, > I have a schema with a nested set behaviour likes this: > > MName: > columns: >name: { type: string(45)} > > MValue: > actAs: >NestedSet:

Re: [symfony-users] Clear cache in action

2010-10-12 Thread Sela Yair
is there a single command in sfConfigCache to clear all the cache? i want to enable from the admin to do similar to symfony cc On 8 October 2010 15:00, Damien Alexandre wrote: > For this kind of question, > make sure to search in the documentation : > > > http://www.symfony-project.org/jobeet/1_

Re: [symfony-users] vjCommentPlugin and sfDoctrineGuardUser 5.0.0

2010-07-24 Thread Sela Yair
anyone has tried to upgrade from 4.0.x to 5.0.0 of sfGuardDoctrine ? as i get an erro On 23 July 2010 21:47, Gustavo Adrian wrote: > Don't matter. I forgot to enable the plugin again in > projectConfiguration.class.php > > > Thanks! > > > On Fri, Jul 23, 2010 at 5:44 PM, Gustavo Adrian < > comfo

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-22 Thread Sela Yair
On 22 July 2010 17:12, Jonathan Wage wrote: > We added the forgot password, register, etc. functionality. Everything > else stayed the way it was. > > - Jon > > On Thu, Jul 22, 2010 at 3:40 AM, Sela Yair wrote: > > what actually did you change in the 5.0.0 release? >

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-22 Thread Sela Yair
what actually did you change in the 5.0.0 release? On 18 July 2010 19:37, fizyk wrote: > Hello, > I'm trying to upgrade sfDoctrineGuardPlugin to the new version, and at > first found that surprised that although in changelog said there was > only change (fix) to the Remember Me? key generator, I

Re: [symfony-users] sfFacebookConnectPlugin cookie issues?

2010-07-22 Thread Sela Yair
not really, I just managed to fix the problem I had with this plugin to use facebook connect and using $sf_user->getCurrentFacebookUid() return to me the real user id in facebook. I used firebug to actually read the response I get from facebook server, have you tried that? On 21 July 2010 18:07, j

Re: [symfony-users] virtual column - doctrine

2010-06-09 Thread Sela Yair
Hi Maro thanks for your comment. i found in the jobeet tutorial discussion about “Virtual” columns after i read your comment and it's similar to what you suggest. my problem is that i want to sort according to that virtual column and also i don't use the admin generator in my frontend so not sure i

Re: [symfony-users] Re: sfForkedDoctrineApplyPlugin with sfFacebookConnectPlugin

2010-05-29 Thread Sela Yair
thanks for your reply. I got another question. in order to use the facebook api you need access to facebook you need url, but when you develop i got localhost domain and not a real one. do i miss something here? On 25 May 2010 16:32, Fabrice Bernhard wrote: > There is no reason they should confl

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Sela Yair
29, 2010 at 11:32 PM, Alexandru-Emil Lupu > wrote: > > Well ... you can try a VPS for a start. > > > > I have a provider that gives me 10 E / month the smallest packet > > http://www.intovps.com/ > > > > Alecs > > > > On Sat, May 29, 2010 at 2:

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Sela Yair
what is the cheapest i can get for a dedicated server? On 29 May 2010 14:20, comb wrote: > Thanks for your detailed answers pghotariu & rooster (Russ), > > I have a managed server for my business projects, but for a more or > less private page I have a shared host, too. They use mod_php5 + > chr

Re: [symfony-users] sfDoctrineGuardUser custom LDAP authenication funkyness

2010-05-08 Thread Sela Yair
this is app.yml in /config not app.yml in /apps/xxx why does it redirects to backend? i had similar problem, but i think setting that app.yml fixed it. all: sf_guard_plugin: success_signin_url: @homepage # the plugin use the referer as default success_signout_url: @homepage # the

Re: [symfony-users] Re: foreign key and sfDoctrineGuardPlugin

2010-05-05 Thread Sela Yair
4 May 2010 23:58, Sela Yair wrote: > thanks, that what i was after. > > > On 4 May 2010 18:27, Casey wrote: > >> Doctrine make this easier. The way you are doing it works, but it may >> be harder to maintain in the future. I would reccommend something >>

Re: [symfony-users] Re: foreign key and sfDoctrineGuardPlugin

2010-05-04 Thread Sela Yair
> specifically the configure() method, it will be much easier in the > future if you perform as little logic as possible in the action or the > view. > > HTH, > Casey > > On May 4, 4:27 am, Sela Yair wrote: > > I think I found slick solution, would like to get some feedb

Re: [symfony-users] Re: foreign key and sfDoctrineGuardPlugin

2010-05-04 Thread Sela Yair
*$formData['user_id'] = $this->getUser()->getGuardUser()->getId();* *$form->bind($formData, $request->getFiles($form->getName()));* *if ($form->isValid())* *{* On 4 May 2010 10:50, Sela Yair wrote: > Thanks. > Yes that's what I'm

Re: [symfony-users] send_msg

2010-05-04 Thread Sela Yair
you need to have SMTP server to connect to. Most ISP blocks to disable spamming so it would be impossible then to have one on your local computer. In the docs of symfony there's instructions how to configure gmail server. On 4 May 2010 00:57, safa boubekri wrote: > > how can specify details >

Re: [symfony-users] Re: foreign key and sfDoctrineGuardPlugin

2010-05-04 Thread Sela Yair
Thanks. Yes that's what I'm after. the following is the table in schema.yml Member: actAs: Timestampable: ~ columns: date_birth: type: date notnull: true logo: type: string(255) is_public: type: boolean notnull: true default: 1 is_activ

Re: [symfony-users] Re: Multiple File Uploads in Embed Form

2010-04-15 Thread Sela Yair
http://www.symfony-project.org/more-with-symfony/1_4/en/06-Advanced-Forms On 15 April 2010 09:27, saki wrote: > thx! which book contains this topic? > > On ápr. 14, 23:37, Sela Yair wrote: > > did you read the more symfony book? there's an example how to upload > > m

Re: [symfony-users] Multiple File Uploads in Embed Form

2010-04-14 Thread Sela Yair
did you read the more symfony book? there's an example how to upload multiple photos. On 14 April 2010 18:26, saki wrote: > hi girls, guys... > > i would like to implement a multiple file upload function on my page. > a lot of modules will use it, so i would like to store all the files > in a fo

Re: [symfony-users] Initial Setup

2010-04-07 Thread Sela Yair
hi Arrann, please describe the problem you encounter otherwise when read your post can't understand how to help. did you read the jobeet book? there is explanation how to modify the settings. Sela On 6 April 2010 12:53, Azda wrote: > Hi all, > > Right - to put it bluntly - I have no idea what I