Re: [symfony-users] help with translation?

2011-02-14 Thread Christophe COEVOET

Le 14/02/2011 21:18, violyn a écrit :

hi-
i am trying to use translation in the twig file generated by a
controller.  it doesn't work (the page is generated as normal, with no
translation).
here are the things i have done:

in app/config/config.yml i added this line:
translator: { fallback: en }

i created MyBundle/Resources/translations and put messages.fr_FR.php
there.  that file contains:
  'J\'aime Symfony2',
 'Welcome'=>  'Bienvenue',
);
?>

in my controller, i include:
use Symfony\Component\Translation\Translator;
use Symfony\Component\Locale\Locale;

This is not needed if you don't use the class in your controller.

also, in my controller, i manually set the locale as follows:
$this->container->get('request')->getSession()->setLocale('fr_FR');

in the twig file generated by the controller i made, i have:
  {% trans %}Welcome{% endtrans %}

However, it displays as Welcome when I use the controller to render
the twig file instead of the translated version.

I have read doc carefully, but I can't tell what I am missing.

Can someone please help me?
Do your clear your cache after enabling the translator ? This requires 
to re-compile the Twig templates to call the translator.


--
Christophe | Stof

--
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help getting the autoloader working within a component class?

2011-01-11 Thread Eric B
Thanks.  That seems to work much better.  Although I'm still not sure I
understand exactly why, considering that the component is part of the same
module that is trying to instantiate the LoginForm.

I am, however, having difficulty getting my component template to use a
slot.  Should it be able to?  I've included "use_helper( "partial" )" at the
top of the component template, and have the appropriate "slot()/end_slot()"
calls, but the content doesn't seem to be pushed into the appropriate slot
of the global layout.php template.

Is that expected behaviour from a component, or is there a problem with my
code?

Thx,

Eric



On Tue, Jan 11, 2011 at 11:32 AM, Gareth McCumskey wrote:

> Stick that form into either root/lib or into root/apps/frontend/lib
>
> On Mon, Jan 10, 2011 at 10:01 PM, Eric B  wrote:
>
>> Hi,
>>
>> I've run into a problem with a component instantiating an existing form,
>> so it has prompted me to look into the autoloader to figure out why it isn't
>> seeing the class.  I've come to the conclusion that I can't seem to figure
>> either out.  So I guess this becomes a 2 part question; one is just a
>> request for help to see how/why to instantiate a form within my component,
>> and one to get a little more info on how the autoloader is supposed to find
>> the class.
>>
>> Part 1:
>>
>> My component is fairly simple:
>>
>> frontend/modules/secure/actions/components.class.php:
>> class secureComponents extends sfComponents
>> {
>>   public function executeLogin()
>>   {
>> // instantiate the login form
>> $this->login = new LoginForm();
>>   }
>> }
>>
>> frontend/modules/secure/lib/form/LoginForm.class.php:
>> class LoginForm extends sfForm
>> {
>>   public function configure()
>>   {
>> $this->setWidgets( array(
>>   'email' => new sfWidgetFormInputText( array(), array( "required" =>
>> "true" ) ),
>>   'password' => new sfWidgetFormInputPassword( array(), array(
>> "required" => "true" ) ),
>> ) );
>> $this->setValidators( array(
>>   'email' => new sfValidatorEmail( array(), array( "invalid" =>
>> "Invalid email entered") ),
>>   'password' => new sfValidatorString(),
>> ) );
>>
>> $this->getWidgetSchema()->setNameFormat('login[%s]');
>>   }
>> }
>>
>>
>> My call to the component from within the layout template:
>> frontend/templates/layout.php:
>> 
>>
>> When I try to view any page, I get the following error message:
>> *Fatal error*: Class 'LoginForm' not found in *
>> E:\Dev\Projects\MIPP\apps\frontend\modules\secure\actions\components.class.php
>> * on line *13*
>>
>>
>> And thus, I started looking at the autoloader to determine why it isn't
>> finding the LoginForm in my component class.  But I can't figure out how the
>> autoloader is supposed to find the LoginForm class.  When I look at the
>> autoload/getClassPath() method in sfCoreAutoload I don't see how it is
>> searching for the LoginForm class.  I see the component calling the
>> getClassPath method by stepping through the code when it tries to
>> instantiate the LoginForm class, but it never finds it.
>>
>> Am I overseeing something simple somewhere?  Am I searching for something
>> in the wrong place?
>>
>> Thanks,
>>
>> Eric
>>
>>
>>
>>  --
>> If you want to report a vulnerability issue on symfony, please send it to
>> security at symfony-project.com
>>
>> 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+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/symfony-users?hl=en
>>
>
>
>
> --
> Gareth McCumskey
> http://garethmccumskey.blogspot.com
> twitter: @garethmcc
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help getting the autoloader working within a component class?

2011-01-11 Thread Gareth McCumskey
Stick that form into either root/lib or into root/apps/frontend/lib

On Mon, Jan 10, 2011 at 10:01 PM, Eric B  wrote:

> Hi,
>
> I've run into a problem with a component instantiating an existing form, so
> it has prompted me to look into the autoloader to figure out why it isn't
> seeing the class.  I've come to the conclusion that I can't seem to figure
> either out.  So I guess this becomes a 2 part question; one is just a
> request for help to see how/why to instantiate a form within my component,
> and one to get a little more info on how the autoloader is supposed to find
> the class.
>
> Part 1:
>
> My component is fairly simple:
>
> frontend/modules/secure/actions/components.class.php:
> class secureComponents extends sfComponents
> {
>   public function executeLogin()
>   {
> // instantiate the login form
> $this->login = new LoginForm();
>   }
> }
>
> frontend/modules/secure/lib/form/LoginForm.class.php:
> class LoginForm extends sfForm
> {
>   public function configure()
>   {
> $this->setWidgets( array(
>   'email' => new sfWidgetFormInputText( array(), array( "required" =>
> "true" ) ),
>   'password' => new sfWidgetFormInputPassword( array(), array(
> "required" => "true" ) ),
> ) );
> $this->setValidators( array(
>   'email' => new sfValidatorEmail( array(), array( "invalid" =>
> "Invalid email entered") ),
>   'password' => new sfValidatorString(),
> ) );
>
> $this->getWidgetSchema()->setNameFormat('login[%s]');
>   }
> }
>
>
> My call to the component from within the layout template:
> frontend/templates/layout.php:
> 
>
> When I try to view any page, I get the following error message:
> *Fatal error*: Class 'LoginForm' not found in *
> E:\Dev\Projects\MIPP\apps\frontend\modules\secure\actions\components.class.php
> * on line *13*
>
>
> And thus, I started looking at the autoloader to determine why it isn't
> finding the LoginForm in my component class.  But I can't figure out how the
> autoloader is supposed to find the LoginForm class.  When I look at the
> autoload/getClassPath() method in sfCoreAutoload I don't see how it is
> searching for the LoginForm class.  I see the component calling the
> getClassPath method by stepping through the code when it tries to
> instantiate the LoginForm class, but it never finds it.
>
> Am I overseeing something simple somewhere?  Am I searching for something
> in the wrong place?
>
> Thanks,
>
> Eric
>
>
>
>  --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>



-- 
Gareth McCumskey
http://garethmccumskey.blogspot.com
twitter: @garethmcc

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help Optimization Loading Symfony

2011-01-02 Thread Stéphane
Hello,

About loading performances:
for doctrine :
http://www.doctrine-project.org/documentation/manual/1_0/en/improving-performance:compile
for symfony : http://www.symfony-project.org/book/1_0/18-performance search
for Optimizing your code

Regards,

Before Printing, Think about Your Environmental Responsibility!
Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale!


On Thu, Dec 30, 2010 at 2:54 PM, Wizermil  wrote:

> Hi,
>
> My company started a web service project using symfony 1.4.x +
> Doctrine + MySQL (FYI: I upgraded the project to 1.4.8) few months
> ago.
> Just to let you know what we are doing it's kind of openfeint (http://
> openfeint.com/) webservices to handle a community, leaderboards, game
> profile (level, xp, ...), virtual currency and items.
> The system is hosted on Amazon EC2 we are using 1 server for MySQL
> (ubuntu 10.10 large 64bits percona server 5.1) and many servers (ec2
> large 64bits ubuntu 9.04 + Nginx 0.7 + PPHP-FPM 5.3 + Memcached + APC)
> depending of the number of users using the services, they are behind a
> load balancer.
>
> Our main problem is the variance of the response time for example a
> service returning the timestamp of the server (http://
> services.yagasp.com/time/get.json) is between 85-200ms.
> The 2nd problem is the latency from chrome dev tool we have almost at
> each request 100-200ms of latency and I have no idea of the reason
> (the load average of the server is always under 1.0). The request time
> can be checked easily from a facebook games we developped: Masterchef
> (http://apps.facebook.com/mastercheflejeu)
>
> Now I'm assigned to the project to debug and optimize it. You will see
> below all the tests, modifications I did to solve those problems,
> without real success.
> 1. I thought that it was linked to our system: sclar (https://
> www.scalr.net/) that wasn't fast enough to launch new instances but
> after many tests I saw that i wasn't the case and our settings where
> good.
> 2. Then I noticed that symfony open a connection to db at each request
> so I'd changed the server:mysql to percona (http://www.percona.com/
> software/percona-server/) to be sure that the db server is able to
> handle high number of connections (stat from the db max 30
> connections) but I'm pretty sure that php driver are optimized to keep
> a pool of connection opened. It didn't change anything about time
> response or latency.
> 3. Log of slow queries, all our sql queries are executed in less than
> 100ms, I know that we are using a lot of join with doctrine and it's
> not recommended for performance but right now I'm not sure that it
> explains our time response for services not doing any sql requests
> like time :D (I checked with symfony debug consol)
> 4. Log execution time of each request from nginx. It seems that there
> are all under 200ms so it means the info returned by chrome dev tools
> are not false. Great news but it's doesn't really help us in our case.
> 5. Using ab to see the time response the only information that it gave
> me is that with concurrency the time response is increasing but at a
> specific level (that I didn't defined) it's not the case. It doesn't
> make any sense but you will see the charts at this urls:
> http://www.megaupload.com/?d=SVR7T690 and
> http://www.megaupload.com/?d=IDYZCMAX
> 6. Profiling with XHProf (http://www.megaupload.com/?d=FCK266ZW) TI
> saw which methods are consuming a lot of time at each request (I'used
> the service time in prod environment) and it seems that it's the
> initialization and the loading of the classes so we are probably
> messing with parameters making the framework slower than it should be.
>
> Thanks for all the users that will spend the time to read and if you
> have any hints that could help me optimize the loading of symfony
> please let me know.
>
> Cheers,
>
> Mathieu
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help with symfony chapter 3...data model

2010-12-23 Thread oscar balladares
Of course, feel free to create that directory "web/uploads/jobs/" ;)

That should gonna make it.

2010/12/22 Wiynn 

> in the data model chapter this is explaind but i donot get it "The job
> fixture file references two images. You can download them
> (http://www.symfony-project.org/get/jobeet/sensio-labs.gif,
> http://www.symfony-project.org/get/jobeet/extreme-sensio.gif) and put
> them under the web/uploads/jobs/ directory". i realise that i donot
> have this path but mine is web/uploads should i create the jobs as a
> new folder and then put those images ? when i run my stuff in a
> browser i only get the text but the images are donot appear in the
> layout..am vey new to this what should ido 2 download these
> pictures.
>
> pliz help
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help needed for newbie

2010-10-22 Thread ashish kumar
or u can add this line in ur web server config file
alias sf yourproject/lib/vendor/symfony/data/web/sf
this sud work ..

ashish

On Sat, Oct 23, 2010 at 12:10 AM, Jérémie  wrote:

> 2 solutions :
> copy and paste the folder lib/vendor/symfony/data/web/sf/ in web/
>
> or
>
> in web/ , do :
> ln -s yourproject/lib/vendor/symfony/data/web/sf .
>
> Jérémie
>
> Le vendredi 22 octobre 2010 à 11:11 -0700, apc...@dsl.pipex.com a
> écrit :
> > I am a bit new to this symfony framework. I am having a problem seeing
> > the images on the  "Symfony Project Created" page. I can see all the
> > writing but no pictures. I installed the project using netbeans. I am
> > attempting to do the project described on the main site
> > http://www.symfony-project.org/. I am on day one.
> > It says, if I get no images that  I should check that my server can
> > see the path symfony_data/web/sf/directory.
> >
> > How do i do this
> >
> > Any help much appreciated
> >
> > Reto
> >
>
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>



-- 
Regards

Ashish Kumar
+919916810048
ash...@hobit.in

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help needed for newbie

2010-10-22 Thread Jérémie
2 solutions : 
copy and paste the folder lib/vendor/symfony/data/web/sf/ in web/

or

in web/ , do :
ln -s yourproject/lib/vendor/symfony/data/web/sf .

Jérémie

Le vendredi 22 octobre 2010 à 11:11 -0700, apc...@dsl.pipex.com a
écrit :
> I am a bit new to this symfony framework. I am having a problem seeing
> the images on the  "Symfony Project Created" page. I can see all the
> writing but no pictures. I installed the project using netbeans. I am
> attempting to do the project described on the main site
> http://www.symfony-project.org/. I am on day one.
> It says, if I get no images that  I should check that my server can
> see the path symfony_data/web/sf/directory.
> 
> How do i do this
> 
> Any help much appreciated
> 
> Reto
> 


-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help with action preExecute() and forward()

2010-09-01 Thread Syam

Hi,

You should use a "component slot".

Regards,

On 09/01/2010 10:10 AM, Cyrille37 wrote:

Hello,
After read some posts, I'd learned the rule that one action for one
template.
So I now need some architect's ideas to solve a case.

To fill a slot used in the layout, I call a DB Query in the
action::preExecute().

But when there is an action::forward(), this preExecute() is called
twice, and so the DB Query too. That's the problem :
   - Where may I put the DB Query ?
   - Where to fill the slot ?

thanks a lot for your lights ;-)
Cyrille.

   


--
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help with action preExecute() and forward()

2010-09-01 Thread Gareth McCumskey
Fill the slot using an action? No need to use preExecute(). preExecute is
usually only called when every action in your module has some pre-processing
that needs doing.

On Wed, Sep 1, 2010 at 10:10 AM, Cyrille37  wrote:

> Hello,
> After read some posts, I'd learned the rule that one action for one
> template.
> So I now need some architect's ideas to solve a case.
>
> To fill a slot used in the layout, I call a DB Query in the
> action::preExecute().
>
> But when there is an action::forward(), this preExecute() is called
> twice, and so the DB Query too. That's the problem :
>  - Where may I put the DB Query ?
>  - Where to fill the slot ?
>
> thanks a lot for your lights ;-)
> Cyrille.
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>



-- 
Gareth McCumskey
http://garethmccumskey.blogspot.com
twitter: @garethmcc

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help me in this problem starting symfony on ubuntu and xampp

2010-06-18 Thread Gareth McCumskey
First of all, as has been said, do not work as root EVER on a linux system. 
Users are there for your protection.

Secondly, this problem is simply because you are trying to access your newly 
created symfony application from a browser as a user trying to get to a 
directory with the user for that directory being www-data. The best way to 
resolve this in Ubuntu is to add your user (that you browse with) to the www-
data user group. You can also then add the www-data user to your group. This 
means that as a user you can access web apps you create under /var/www as if 
you were the www-data user. There are applets within Ubuntu under System 
Administration to help make that easy so no need really to use command line to 
do this.

Hope that helps :)

On Thursday 17 June 2010 20:27:40 Dina aquarius wrote:
> Dear Symfony Users,
> 
>   You are users and me is just a beginner who can't start the using
> until now because of the errors. I installed ubuntu and xampp using the
> root user not "sudo"  or "gksudo". Also, did the same for installing
> symfony. I created the projects directory in the "/root" ( the directory
> of the root user not "/home" directory of the local users). I created the
> project app and frontend. I configured the Httpd.conf like this:
> 
>   * *
> 
> *ServerName localhost *
> 
> *DocumentRoot "/root/myproject/web" *
> 
> *DirectoryIndex index.php *
> 
> *Alias /sf /usr/share/php/data/symfony/web/sf *
> 
> * *
> 
> * AllowOverride All *
> 
> * Allow from All *
> 
> * *
> 
> * *
> 
> * AllowOverride All *
> 
> * Allow from All *
> 
> * *
> 
> * *
> 
> the "http://localhost"; works fine ( i.e the Xampp). But the "
> 
> *http://localhost/frontend_dev.php/";  don't works and says
> *
> 
> Access forbidden!
> 
> You don't have permission to access the requested directory. There is
> either no index document or the directory is read-protected.
> 
> If you think this is a server error, please contact the
> webmaster.
> 
> Error 403
> 
>   Will it be solved if I repeat the steps but create the project folder
> outside the root? Please, help me urgently.
> 
> Thanks for your time,
> Dina

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help me in this problem starting symfony on ubuntu and xampp

2010-06-17 Thread khalid
test with ./symfony project:permissions if is don't work your web file must
be www-data chmod -R www-data:www-data but i'am not sure

2010/6/17 Diego Bello 

> On Thu, Jun 17, 2010 at 2:27 PM, Dina aquarius
>  wrote:
> > Dear Symfony Users,
> >
> >   You are users and me is just a beginner who can't start the using
> > until now because of the errors. I installed ubuntu and xampp using the
> root
> > user not "sudo"  or "gksudo". Also, did the same for installing symfony.
> I
> > created the projects directory in the "/root" ( the directory of the root
> > user not "/home" directory of the local users). I created the project app
> > and frontend. I configured the Httpd.conf like this:
> >
> > 
> >
> > ServerName localhost
> >
> > DocumentRoot "/root/myproject/web"
> >
> > DirectoryIndex index.php
> >
> > Alias /sf /usr/share/php/data/symfony/web/sf
> >
> > 
> >
> > AllowOverride All
> >
> > Allow from All
> >
> > 
> >
> > 
> >
> > AllowOverride All
> >
> > Allow from All
> >
> > 
> >
> > 
> >
> > the "http://localhost"; works fine ( i.e the Xampp). But the "
> >
> > http://localhost/frontend_dev.php/";  don't works and says
> >
> > Access forbidden!
> >
> > You don't have permission to access the requested directory. There is
> either
> > no index document or the directory is read-protected.
> >
> > If you think this is a server error, please contact the webmaster.
> >
> > Error 403
> >
> >   Will it be solved if I repeat the steps but create the project folder
> > outside the root? Please, help me urgently.
> >
> > Thanks for your time,
> > Dina
> >
> > --
> > If you want to report a vulnerability issue on symfony, please send it to
> > security at symfony-project.com
> >
> > 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+unsubscr...@googlegroups.com
> > For more options, visit this group at
> > http://groups.google.com/group/symfony-users?hl=en
> >
>
> Do never work as root!
>
> That will never work because the webserver can not access any
> directory inside the root directory.
>
> Try moving the code to a user directory and make sure that his home
> directory has read permissions for everybody.
>
> Regards.
>
>
>
> --
> Diego Bello Carreño
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help me in this problem starting symfony on ubuntu and xampp

2010-06-17 Thread Diego Bello
On Thu, Jun 17, 2010 at 2:27 PM, Dina aquarius
 wrote:
> Dear Symfony Users,
>
>   You are users and me is just a beginner who can't start the using
> until now because of the errors. I installed ubuntu and xampp using the root
> user not "sudo"  or "gksudo". Also, did the same for installing symfony. I
> created the projects directory in the "/root" ( the directory of the root
> user not "/home" directory of the local users). I created the project app
> and frontend. I configured the Httpd.conf like this:
>
> 
>
> ServerName localhost
>
> DocumentRoot "/root/myproject/web"
>
> DirectoryIndex index.php
>
> Alias /sf /usr/share/php/data/symfony/web/sf
>
> 
>
> AllowOverride All
>
> Allow from All
>
> 
>
> 
>
> AllowOverride All
>
> Allow from All
>
> 
>
> 
>
> the "http://localhost"; works fine ( i.e the Xampp). But the "
>
> http://localhost/frontend_dev.php/"  don't works and says
>
> Access forbidden!
>
> You don't have permission to access the requested directory. There is either
> no index document or the directory is read-protected.
>
> If you think this is a server error, please contact the webmaster.
>
> Error 403
>
>   Will it be solved if I repeat the steps but create the project folder
> outside the root? Please, help me urgently.
>
> Thanks for your time,
> Dina
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

Do never work as root!

That will never work because the webserver can not access any
directory inside the root directory.

Try moving the code to a user directory and make sure that his home
directory has read permissions for everybody.

Regards.



-- 
Diego Bello Carreño

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help with doctrine SQL

2010-05-24 Thread Philipp Mohrenweiser
Not a collection ? so you should probably use a limit 1 statement ...
but if you  want to get back multiple entrys the collection should be
the right thing !?



2010/5/24 Simone Fumagalli :
> Hello. I'm trying to write this SQL statement in DQL !
>
> The SQL looks like :
>
> SELECT SUM(col1), SUM(col2), SUM(col3)
> FROM slave_table
> WHERE master_id = ?
> AND
> (
> (year = ? and month < ? and priority = ?)
> OR
> (year = ? and month > ? and priority = ?)
> )
>
> I also would to get back a SlaveTable object and not a
> Doctrine_collection
>
> Is this possible ?
>
> Thanks
>
> --
> Simone
>
> --
> If you want to report a vulnerability issue on symfony, please send it to 
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help

2010-05-13 Thread Gareth McCumskey
Don't take this the wrong way, but all the questions you have asked so 
far have been very basic features of symfony. Perhaps spend some more 
time learning symfony with the documentation provided (even do the 
tutorials) and you will find you wont be asking questions as much :)

On Thursday 13 May 2010 11:50:28 safa boubekri wrote:
> than you a  lot it's resolved

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help

2010-05-13 Thread safa boubekri
than you a  lot it's resolved

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


RE: [symfony-users] help

2010-05-13 Thread Daniel Kucharski
You need to save the 'personne' object before sending the mail

$this->form->getObject()->save();


-Original Message-
From: symfony-users@googlegroups.com [mailto:symfony-us...@googlegroups.com]
On Behalf Of safa boubekri
Sent: donderdag 13 mei 2010 11:27
To: symfony-users
Subject: [symfony-users] help

hello  every body

i put this code

 public function executeCreate(sfWebRequest $request)
 {

 $this -> formpersonne= new personneForm();
 $this->form = $this->configuration->getForm($this->personne);

if ($request->isMethod('post'))
{
$this->form->bind($request->getParameter($this->form->getName()));

if ($this->form->isValid())
{

$head = "From: Admin <.$email_admin.>\n";

 $object  = 'inscription reussite';
 $message='je vous informe  que vous êtes  inscrit dans  votre association';
 $email=$this->form->getValue('Email');

mail($email, $object, $message, $head);
sfView::NONE;

return $this->redirect($this->getRequest()->getReferer());

}

the MSG has be  send successfuly  but  the  data  doest  add in the database


thank you

-- 
If you want to report a vulnerability issue on symfony, please send it to
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help

2010-05-13 Thread Pietrino Atzeni

Hi again,
you forgot to call $this->form->save();

Hope this helps,
Pietro


hello  every body

i put this code

  public function executeCreate(sfWebRequest $request)
  {

  $this ->  formpersonne= new personneForm();
  $this->form = $this->configuration->getForm($this->personne);

if ($request->isMethod('post'))
{
$this->form->bind($request->getParameter($this->form->getName()));

if ($this->form->isValid())
{

$head = "From: Admin<.$email_admin.>\n";

  $object  = 'inscription reussite';
  $message='je vous informe  que vous êtes  inscrit dans  votre association';
  $email=$this->form->getValue('Email');

mail($email, $object, $message, $head);
sfView::NONE;

return $this->redirect($this->getRequest()->getReferer());

}

the MSG has be  send successfuly  but  the  data  doest  add in the database


thank you



--
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help - transfer of projects brings up errors

2010-04-13 Thread Eno
On Tue, 13 Apr 2010, xris wrote:

> i recently trained on symfony and wanted to install the same projects
> we did to my ubuntu box back at home. i have already done the
> webserver configuration but when i try to access the jobeet
> application i get the following error:
> my previous user was symfony and current user is phpfreakcgithinji
> 
> Warning: require(/home/symfony/Projects/jobeet/lib/vendor/symfony/lib/
> plugins/sfDoctrinePlugin/lib/database/sfDoctrineDatabase.class.php)
> [function.require]: failed to open stream: No such file or directory
> in /home/phpfreakcgithinji/Projects/jobeet/lib/vendor/symfony/lib/
> autoload/sfAutoload.class.php on line 188
> 
> please help me so that i may proceed with using symfony

DYCC?

(Did You Clear Cache?)



--


-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe, reply using "remove me" as the subject.


Re: [symfony-users] help

2010-04-07 Thread safa boubekri
hello  i cant double  the user  because  it must be  one   but   for the
username et  password  i  put exactly i m sure

   thank you

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe, reply using "remove me" as the subject.


Re: [symfony-users] help

2010-04-05 Thread Germana Oliveira
the only thing i can tell you, is to double check the username you create
and be sure you remember the password exactly as you typed it iwhe you
create the user.

But if you need to work on the backend, you just have to edit your
security.yml file and say 'off'



2010/4/5 safa boubekri 

> hello
>
> i  follow   http://www.symfony-project.org/jobeet/1_2/Doctrine/en/13
>
>  i need your help i  create an administrator user  but in the exuction
> i have The username and/or password is invalid.  i cant  access to my apps
> backend
>
>
> thank you
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> 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+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en
>



-- 
Germana Oliveira

germanaoliveirab arroba gmail punto com
http://626f67.wordpress.com
http://slcarabobo.wordpress.com

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe, reply using "remove me" as the subject.


Re: [symfony-users] Help with Symfony routing problem.

2010-03-19 Thread Eno
On Thu, 18 Mar 2010, DarrenMr wrote:

> Hi guys here is my route YAML:
> product:
>   url: /product_:brand_:name
>   param: { module: products, action: view }
>   requirements: { brand: \d+, name: ([a-z0-9-])+ }
> 
> However I get this error when I try to access the page:
> Unable to parse "/product_:brand_:name" route near ":name".
> 
> When my url is like:
> http://64.13.224.188/frontend_dev.php/product_1_test

I think someone alreacy answered this a few days ago. You need to 
configure the underscore character as a parameter separator - see the 
earlier answers.



-- 


-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


Re: [symfony-users] help il list

2010-03-13 Thread Syam

I am not sure to understand,

You want to retreive category from the existing job ? right ?

But if this is the case, what about the first record ? You won't have 
any existing category, does not make sense ... (or you have to display a 
select input and a free text input, then get the value from one of the 
two fields ...)


I think you should create a jobCategory model whith one-to-many relation 
to your job model, this is a simplier way and faster to execute :


job:
 connection: doctrine
 tableName: job
 columns:
   id_marchandise:
 type: integer(4)
 primary: true
 autoincrement: true
  job_category_id: integer
  sub_category:
 type: string(50)
 relations:
   jobCategory:
 type: one
 foreignType: many
 onDelete: SET NULL

jobCategory:
 columns:
   name: string(128)



Belgacem TLILI wrote:

i have this class
job:
  connection: doctrine
  tableName: job
  columns:
id_marchandise:
  type: integer(4)
  primary: true
  autoincrement: true
   category:
  type: string(50)
   sub_category:
  type: string(50)

i would like have the data  of this table in (of my database) like a
list of option in indexSuccess.php

like this in html


Petit Colis
Moyen Colis
Grand Colis

//the data from database

Petite Palette
Moyenne Palette
Grande Palette


how can i do this

how can i build a doctrine request (DQL)

  


--
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] help

2010-03-08 Thread Michał Piotrowski
2010/3/8 Buddhika Perera :
> Guys i am looking for a good tutorial on how to use symfony for use
> feedback form example where it uses mysql database?
>
>
> pls send some link or tutorials on how to do it .

schema

Notification:
  actAs:
Signable:
  created:
name: created_by
type: integer
  updated:
name: updated_by
type: integer
Timestampable:
  columns:
user_id: { type: integer(5), notnull: true }
content: { type: string(8096), notnull: true }
state:   { type: integer(1), notnull: true, default: 0 }
  indexes:
notification_myindex:
  fields: [user_id, state, created_at]
  relations:
User:
  class:sfGuardUser
  local:user_id
  foreign:  id
  onDelete: CASCADE

action

 * @versionSVN: $Id: actions.class.php 23810 2009-11-12 11:07:44Z
Kris.Wallsmith $
 */
class notificationActions extends sfActions
{
  public function executeNew(sfWebRequest $request)
  {
$this->form = new NotificationForm();
  }

  public function executeCreate(sfWebRequest $request)
  {
$this->forward404Unless($request->isMethod(sfRequest::POST));

$this->form = new NotificationForm();

$this->processForm($request, $this->form);

$this->setTemplate('new');
  }

  protected function processForm(sfWebRequest $request, sfForm $form)
  {
$form->bind($request->getParameter($form->getName()),
$request->getFiles($form->getName()));
if ($form->isValid())
{
  $this->UserData = $this->getUser()->getUserData();
  $this->logged_user_id = $this->UserData['logged_user_id'];
  $this->logged_username = $this->UserData['logged_username'];

  $form->updateObject(array('user_id' => $this->logged_user_id));

  $notification = $form->save();

  $this->redirect('main', array('username' => $this->logged_username));
}
  }
}

_form.php





isMultipart() and print
'enctype="multipart/form-data" ' ?>>
  

  

  


  

  


  

  


newSuccess.php


  



  

  Zgłoszenie problemu z działaniem portalu

  
  

  W treści zgłoszenia problemu z działaniem portalu prosimy o
podanie jak największej ilości szczegółów dotyczących problemu -
pozwoli to na szybkie jego rozwiązanie. Dziękujemy za współpracę :)
  
  
   $form)) ?>

  
  
  


   3)) ?>
  
   3)) ?>
  
  


routing

notification_create:
  url: /portal/notification/c
  options: { model: Notification }
  param:   { module: notification, action: create }

notification_new:
  url: /portal/notification
  options: { model: Notification }
  param:   { module: notification, action: new }

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en


Re: [symfony-users] Help with titles in template? A global title?

2010-02-23 Thread Eno
On Tue, 23 Feb 2010, Darren884 wrote:

> Hi guys I am able to define per page and I have, however I have
> defined them like
> 
> New Article
> Edit Article
> 
> But in my template it does include_title().
> 
> I don't want to have to define:
> Site Name :: New Article
> Site Name :: Edit Article
> 
> in every yml file. Is there a way I could do Site Name in 1 file and
> have it display next to the defined title? Is this possible or am I
> going to have to be redundant throughout all my code?


You need to use slots in your layout:
http://www.symfony-project.org/book/1_2/07-Inside-the-View-Layer#chapter_07_sub_slots



-- 


-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.



Re: [symfony-users] Help please! json_encode problem in symfony

2010-01-28 Thread Eno
On Thu, 28 Jan 2010, Dong YANG wrote:

> Hi everyone,
> 
> I passed many hours for this strange thing, in fact I got a problem when
> using json_encode in symfony.
> 
>  In my front-end module, method executeIndex() as below:
> 
>   public function executeIndex(sfWebRequest $request)
>   {
> $this->test = $this->getRoute()->getObject();
> // Call json_encode, but return '{}'
> $json = json_encode($this->test);
> 
> // this simple test works
> $test = new stdClass();
> $test->id = new stdClass();
> var_dump(json_encode($test));
> }

What happens if you do this?

$test = $this->getRoute()->getObject();
$json = json_encode($test);
$this->test = $test;




-- 


-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.



Re: [symfony-users] Help with should be simple stuff...

2010-01-11 Thread Lee Bolding

On 12 Jan 2010, at 00:24, Darren884 wrote:

> I am trying to override my setPassword method for my employee model
> but everytime I try to overwrite it I get nothing from it. I was
> using:
> 
>   public function setPassword($password)
>   {
>   parent::setPassword(sh1($password));
>   }

try...

return parent::setPassword(sh1($password));
-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




Re: [symfony-users] Help A Newbie! sfdoctrineapply - setting group id upon registration

2009-12-16 Thread Alexandru-Emil Lupu
Override the save method in your sfGuardUser class. Sf creates 3 files in
the case of the plugins. A base class, a plugin class and the instantiated
class
I will be more verbose in around 1 hour

sent via htc magic

On Dec 17, 2009 5:33 AM, "Billy Paradise"  wrote:

Hi all,

I've been spinning for a few hours on this - admittedly I'm a very
junior programmer at this point.  Could you please point me in the
direction so I can auto-assign all new registrations through /apply to
sfGuardUserGroup 1 (for example)? I have different classes of user,
and all auto-created users need to be be given a group, rather than
left as NULL.

I believe the magic happens in apps/frontend/modules/sfApply/lib/
BasesfApplyActions.class.php, in  the executeApply function.

Thanks!

--

You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
.
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en.

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.




Re: [symfony-users] Help with display of doctrine float numbers

2009-12-14 Thread Alexandre Salomé
Hi,

  Which value do you have in your database ? (PHPMyAdmin or SQL client)

  What is the type of column defined in your schema ?

2009/12/13 PhiKapJames 

> I'm running into the issue where when I'm trying to use the default
> getValue() method that was automatically generated from a model, that
> it's not giving the correct place value.  I have for examply .4123 in
> my database, but it is only displaying .41.  When i look at the query
> log, it's not doing anything special to format the number.  How can I
> get the correct full value of .4123?
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "symfony users" group.
> To post to this group, send email to symfony-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> symfony-users+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/symfony-users?hl=en.
>
>
>


-- 
Alexandre Salomé
http://alexandre-salome.fr

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.