Re: [symfony-users] Clear cache in action

2010-10-18 Thread Sela Yair
for this not to work. $ccTask = new sfClearCacheTask(); $ccTask-run(); -- Pierre-Yves LEBECQ 2010/10/12 Sela Yair tzi...@gmail.com 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

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 benni.voll...@gmx.de wrote: Hello, I have a schema with a nested set behaviour likes this: MName: columns: name: { type: string(45)} MValue: actAs:

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 dalexan...@clever-age.com wrote: For this kind of question, make sure to search in the documentation :

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 comfortablynum...@gmail.com 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,

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,

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 fi...@fizyk.net.pl 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?

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

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 sa...@gmx.net 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

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

2010-05-29 Thread Sela Yair
, 2010 at 11:32 PM, Alexandru-Emil Lupu gang.al...@gmail.com 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:29 PM, Sela Yair tzi...@gmail.com wrote: what

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 fabri...@theodo.fr wrote: There is no reason

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

2010-05-09 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 #

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

2010-05-05 Thread Sela Yair
2010 23:58, Sela Yair tzi...@gmail.com wrote: thanks, that what i was after. On 4 May 2010 18:27, Casey casey.cam...@gmail.com 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 like

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

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 boubekri.s...@gmail.com wrote: how

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

2010-05-04 Thread Sela Yair
['user_id'] = $this-getUser()-getGuardUser()-getId();* *$form-bind($formData, $request-getFiles($form-getName()));* *if ($form-isValid())* *{* On 4 May 2010 10:50, Sela Yair tzi...@gmail.com wrote: Thanks. Yes that's what I'm after. the following is the table in schema.yml Member

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

2010-05-04 Thread Sela Yair
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 tzi...@gmail.com wrote: I think I found slick solution, would like to get some feedback if that's the ideal solution. in action.class.php i modified

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 sakrame...@gmail.com wrote: thx! which book contains this topic? On ápr. 14, 23:37, Sela Yair tzi...@gmail.com wrote: did you read the more symfony book? there's an example how to upload

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 sakrame...@gmail.com 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

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 a...@pixelperfectmedia.co.uk wrote: Hi all, Right - to put it