[symfony-users] Re: sfShop - open source platform for building e-commerce solution, based on symfony

2008-08-25 Thread Dmitry Nesteruk
yes, I am planing make release of platform, but I can not say a date of release. Some developers was joined to me. Now they working on code reviewing, when they start working on development, we will decide what should have first release and I think we can set a date of release. 2008/8/26 Tom Haski

[symfony-users] Re: plugin page feature request

2008-08-25 Thread Yuretsz
Yeah, comments would be great. On Tue, Aug 26, 2008 at 6:23 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]>wrote: > > Hello there, > > It will be nice if we had a comments section per plugin, like the php > manual. > > Is something like this already been done? > > Also, I keep seeing an hex numer in s

[symfony-users] Re: Sending email through Symfony 1.0 CLI batch file

2008-08-25 Thread Sumedh
How do I send parameters? :( The email template is using some params that are usually sent in the request... Now I want to send values to same parameters from the batch file... On Aug 26, 10:01 am, Sumedh <[EMAIL PROTECTED]> wrote: > Got it... > > The is_internal setting in module.yml of the ma

[symfony-users] Re: Sending email through Symfony 1.0 CLI batch file

2008-08-25 Thread Sumedh
Got it... The is_internal setting in module.yml of the mail module... Now I need to see how to send parameters to the template that it's using in the mail... :) On Aug 25, 4:54 pm, Sumedh <[EMAIL PROTECTED]> wrote: > Hi friends... > > I have successfully created a batch script...I want to do so

[symfony-users] sfApprovablePlugin issues

2008-08-25 Thread [EMAIL PROTECTED]
Im accesing my objects via sfPropelPager, and I get all objects, eve those unaproved. Does anyone nows how to fix that? I didnt see any code inside the sfApprovable plugin that hooks on the retrievebypk methods... Thanks. --~--~-~--~~~---~--~~ You received this

[symfony-users] plugin page feature request

2008-08-25 Thread [EMAIL PROTECTED]
Hello there, It will be nice if we had a comments section per plugin, like the php manual. Is something like this already been done? Also, I keep seeing an hex numer in some plugins page, and firefox refuses to load those. Content encoding error. Best. --~--~-~--~~~--

[symfony-users] Re: new plugins page??

2008-08-25 Thread Lee Bolding
Thanks Fabien. I've just noticed another problem - not sure if this is true for more than just the plugin I've noticed it on... the ReCaptchaPlugin has a README tab, which directs the user to http://trac.symfony-project.com/wiki/sfReCaptchaPlugin , which then redirects back to the plugin pag

[symfony-users] Re: is nestedset from propel plugin 1.3 working correctly??

2008-08-25 Thread Ant Cunningham
turn off propel.builder.addIncludes in your propel.ini. The symfony autoload should take care of it for you because everything in lib.model should get loaded as needed... On 8/25/08 7:17 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > W odpowiedzi na e-mail od: Ant Cunningham otrzymany

[symfony-users] Re: is nestedset from propel plugin 1.3 working correctly??

2008-08-25 Thread [EMAIL PROTECTED]
W odpowiedzi na e-mail od: Ant Cunningham otrzymany dnia 2008-08-26 00:34 : > It shouldnt be calling BaseUsers... it should be calling UsersNestedSet. > When you apply a nested set to a column the class hierarchy looks like this: > > BaseModelClass > NestedSetModelClass > ModelClass >

[symfony-users] Re: sfShop - open source platform for building e-commerce solution, based on symfony

2008-08-25 Thread Tom Haskins-Vaughan
Hi Dmitry, Are you planning to or have you already released the code? I couldn't find it on the symfony plugins repository. I'm interested in taking a look. Cheers, Tom Dmitry Nesteruk wrote: > I am working on supports different delivery and payment services. I > updated demo site from svn.

[symfony-users] Re: is nestedset from propel plugin 1.3 working correctly??

2008-08-25 Thread Ant Cunningham
It shouldnt be calling BaseUsers... it should be calling UsersNestedSet. When you apply a nested set to a column the class hierarchy looks like this: BaseModelClass NestedSetModelClass ModelClass BaseModelClassPeer ModelClassNestedSetPeer ModelClassPeer Beyond that i don

[symfony-users] is nestedset from propel plugin 1.3 working correctly??

2008-08-25 Thread [EMAIL PROTECTED]
can anybody confirm that nestedset from propel plugin 1.3 is working correctly?? I am getting exceptions Call to undefined method BaseUsers::makeRoot when trying to make root for model Users for example $root = new Users(); $root->setUsername('test'); $root->setPasswo

[symfony-users] Re: sfShop - open source platform for building e-commerce solution, based on symfony

2008-08-25 Thread Dmitry Nesteruk
I am working on supports different delivery and payment services. I updated demo site from svn. The demo site is displaying last version of platform now. This version supports Flat, Ups and Flat delivery services, also added module for manage delivery services ( http://demo.sfshop.dev-zp.com/web/ad

[symfony-users] Re: Symfony + Prototype JavaScript Image Cropper UI

2008-08-25 Thread Kiril Angov
I must wait for commit rights from Fabien because of the new plugins systems. Here is the installable plugin archive. On Sat, Aug 23, 2008 at 9:31 AM, Kiril Angov <[EMAIL PROTECTED]> wrote: > I did use the same javascript cropper + sfThumbnailPlugin and > Imagemagick. As you said, I had to implem

[symfony-users] Form Widget

2008-08-25 Thread Atif Khan
Hello there I have been playing with the Form widgets. In the form helper there is a form select country tag. Does the widget support that feature ? Thank you Atif --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "s

[symfony-users] Re: sending email+cli

2008-08-25 Thread gestadieu
$this0>logMessage is a shortcut to use in action/component, in a batch you must use sfContext::getInstance()->getController()->sendEmail(...) On Aug 24, 1:44 pm, kusum <[EMAIL PROTECTED]> wrote: > hi, >     i have written a batch script and executing it from command > line,and executing it from c

[symfony-users] Re: sfGuard - how to implement registration

2008-08-25 Thread javo
I'm sorry but can somebody show me how to do that?, I'd like to see some code example for a start, I'm trying to write that, but I'm newbie to symfony On Aug 25, 10:49 am, Lee Bolding <[EMAIL PROTECTED]> wrote: > On 25 Aug 2008, at 09:02, javo wrote: > > > public function executeUpdate($request)

[symfony-users] choosing template/action show area in layout.php

2008-08-25 Thread torso
Hi! How I can choose different templates/actions to shown in the div's. I have this kind of layout. getRaw('sf_content') ?>//this should be action news test THIS SHOULD BE ACTION LOGIN

[symfony-users] Sending email through Symfony 1.0 CLI batch file

2008-08-25 Thread Sumedh
Hi friends... I have successfully created a batch script...I want to do some DB stuff and send some mails... I could successfully do the DB work... But facing some problem in sending email... I am doing this - $email = sfContext::getInstance()->getController()->sendEmail('mail', 'sendTalkToUs

[symfony-users] Re: sfGuard - how to implement registration

2008-08-25 Thread Lee Bolding
On 25 Aug 2008, at 09:02, javo wrote: > public function executeUpdate($request) > { >$this->forward404Unless($request->isMethod('post')); >$this->form = new > SfGuardUserProfileForm(SfGuardUserProfilePeer::retrieveByPk($request- >> getParameter('id'))); >$this->form->bind($request-

[symfony-users] Missing Link "Plugin"

2008-08-25 Thread Dominik Tuleweit
Hi, the main menu at the symfony page contains: About Installation Documentation Plugins Community Blog Development At the board the menu point "Plugins" is missing: About Installation Documentation Community Blog Development Greetings from Nuremberg Dominik --~--~-~--~~~-

[symfony-users] Re: sfShop - open source platform for building e-commerce solution, based on symfony

2008-08-25 Thread Sylvain - Com-Océan
Nice work, I did something similar for 2 projects. But how it is possible to manage delivery cost ? -- Sylvain Papet - Développeur Web Agence de communication Com-Océan www.com-ocean.com / +33 4 90 66 48 82 Dmitry Nesteruk a écrit : > I wrote the message about my effort some time ago > http

[symfony-users] Re: Chain tasks together?

2008-08-25 Thread Jonathan Wage
Isn't that what this does? http://svn.symfony-project.com/branches/1.1/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildAllLoadTask.class.php - Jon On Sun, Aug 24, 2008 at 1:57 PM, Charley Tiggs <[EMAIL PROTECTED]> wrote: > > Hi all, > > Is there a way to execute multiple tasks from within one

[symfony-users] Re: sfGuard - how to implement registration

2008-08-25 Thread javo
First of all thank you for your answers, I have latest sfGuard installed, but I can't do that anyway I tried to edit my user/update action, here's the code public function executeUpdate($request) { $this->forward404Unless($request->isMethod('post')); $this->form = new SfGuardUserProf