Re: [symfony-users] Re: Symfony2 virtualhost

2010-09-14 Thread jlil mostafa
please try this exmeple for XP, do the same for Lunix: ServerName symfony DocumentRoot "D:/AXAMPP/htdocs/monprojetsf/web" DirectoryIndex index.php Alias /sf "D:\AXAMPP\htdocs\symfony103\data\web\sf" AllowOverride All Allow from All AllowOverride All Allow from All Best Regards 2010/9/15 Jo

[symfony-users] Re: Symfony2 virtualhost

2010-09-14 Thread Josh
That's for 1.4, i'm asking for symfony2. Those folders do not exist. On Sep 15, 9:32 am, jlil mostafa wrote: > Hello. > > try this link. > > http://www.symfony-project.org/getting-started/1_4/en/05-Web-Server-C... > > Best Regards. > > 2010/9/15 Josh : > > > > > > > How do a setup a VirtualHost f

Re: [symfony-users] Symfony2 virtualhost

2010-09-14 Thread jlil mostafa
Hello. try this link. http://www.symfony-project.org/getting-started/1_4/en/05-Web-Server-Configuration Best Regards. 2010/9/15 Josh : > How do a setup a VirtualHost for Symfony2? There is no virtualhost > examples anywhere, and it's vastly different from 1.x.. > > Don't want to use the sandbox

[symfony-users] Re: [symfony2-sandbox PR3] doctrine:mapping:import , error runtime

2010-09-14 Thread spike3111
Yeah, no problem. Gilles On 14 sep, 11:14, Fabien Potencier wrote: > Can you open a ticket for the Doctrine problem on the Doctrine ticketing > system? > > http://www.doctrine-project.org/jira/secure/Dashboard.jspa > > Thanks, > > Fabien > > -- > Fabien Potencier > Sensio CEO - symfony lead deve

[symfony-users] media server support for static content

2010-09-14 Thread pghoratiu
Hi, The following is not strictly symfony related but I'm hoping someone on the list can give me a hint for a solution. I have several websites: * fish.com * eagle.com * bear.com and I want all the static resources (css, js, images, uploads) to be served by a common domain, let's say media.fis

[symfony-users] Re: Connection to MS sql server

2010-09-14 Thread Daniel A.Tiecher
Hello, Could you give us a little more information about your setup? OS, PHP Version, etc. The only time I needed to create a symfony project that talked to a MSSQL instance I used pdo_mssql on Windows (dev machine) and pdo_dblib on the production server (Linux). I won't say it was an easy thing

[symfony-users] Symfony2 virtualhost

2010-09-14 Thread Josh
How do a setup a VirtualHost for Symfony2? There is no virtualhost examples anywhere, and it's vastly different from 1.x.. Don't want to use the sandbox either. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this messag

Re: [symfony-users] Re: Equivalent to setPeerCountMethod in Doctrine

2010-09-14 Thread Social It
Just found it. There is an equivalent: $pager->setCountQuery($query, [params]) The only thing you need to do is in your pagination navigation helper: $pagerRange = $pager->getRange('Sliding',array('chunk' => 5)); $pages = $pagerRange->rangeAroundPage(); foreach ($pages as $page) On Tue,

[symfony-users] Re: Equivalent to setPeerCountMethod in Doctrine

2010-09-14 Thread ScherlOMatic
Hi! I took a look on the api (http://www.symfony-project.org/api/1_4/ sfDoctrinePager) and as you can see there is no equivalent. Maybe you could give us some more information about what you want to do, because it's been nearly a year since I worked with Propel. Ciao On 14 Sep., 13:43, Social

[symfony-users] General question about how to realize Internationalization

2010-09-14 Thread ScherlOMatic
Hello! I'm looking for a nice solution how to refractor a dirty code snippet which runs threw the code. The actual state: My symfony project runs on two dedicated servers. The first server hosts the site for the tld 'at' and the second one for 'de' and 'ch'. So all of them are german based websit

[symfony-users] Re: Setting up a Staging Environment - Suggestions?

2010-09-14 Thread ken
make use of the rsync task. move all data load into doctrine migration. setting up is as easy as rsync task doctrine:build-db doctrine:build-model doctrine:build-forms doctrine:build-filters doctrine:migrate On Sep 14, 11:40 pm, "Felix E. Klee" wrote: > I am looking for a simple way to setup a s

[symfony-users] Setting up a Staging Environment - Suggestions?

2010-09-14 Thread Felix E. Klee
I am looking for a simple way to setup a staging environment with Symfony 1.4. It will run on the production server. Not optimal, for sure. But, at the moment, unavoidable. Any suggestions on setting up a staging server in a smart way? What comes into my mind: * Set up a staging database. * Set

[symfony-users] Re: Add description text after formWidgets in admin generator

2010-09-14 Thread axel at
great! thx a lot On 14 Sep., 15:51, Massimiliano Arione wrote: > On 14 Set, 12:43, axel at wrote: > > > sometimes I would like to render a certain description text after a > > sfWidgetFormInputText rendered by admin generator. > > > eg. > > SpecialTextAttribut [__] "Please enter your bl

[symfony-users] Re: Add description text after formWidgets in admin generator

2010-09-14 Thread Massimiliano Arione
On 14 Set, 12:43, axel at wrote: > sometimes I would like to render a certain description text after a > sfWidgetFormInputText rendered by admin generator. > > eg. > SpecialTextAttribut [__] "Please enter your bla bla bla" > > any ideas how to achieve this? You can find it in the docs: h

[symfony-users] automated response

2010-09-14 Thread Saad Tazi | Twist Image
Merci de votre message. Je suis présentement absent du bureau. Je serai de retour le 25 septembre. L'accès à mes courriels pourrait être limité durant cette période. En cas d’urgence, vous pouvez rejoindre notre équipe technique en envoyant un courriel à l’adresse suivante: supp...@twistimage.c

[symfony-users] Re: Symfony2 Sandbox database collation

2010-09-14 Thread Florian
Hi, After reading the loadDbalConnection method of DoctrineExtension ( http://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/DoctrineBundle/DependencyInjection/DoctrineExtension.php#L137 ) I think you could test something like this: doctrine.dbal: connections: default: d

[symfony-users] Equivalent to setPeerCountMethod in Doctrine

2010-09-14 Thread Social It
In propel setPeerCountMethod is used to change the count query in pagination. Does anybody know its equivalent in doctrine? -- 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 Go

[symfony-users] Add description text after formWidgets in admin generator

2010-09-14 Thread axel at
hello, sometimes I would like to render a certain description text after a sfWidgetFormInputText rendered by admin generator. eg. SpecialTextAttribut [__] "Please enter your bla bla bla" any ideas how to achieve this? -- If you want to report a vulnerability issue on symfony, please se

[symfony-users] functionnal test with custom url like client.exemple.com

2010-09-14 Thread eljam
Hello, i'm using the technique of http://www.symfony-project.org/more-with-symfony/1_4/en/02-Advanced-Routing to make a multiclient plateform. What i'm suppose to do to avoid the error from the routing class when i make a test ? It's looking for an client object that cannot be created because the

Re: [symfony-users] [symfony2-sandbox PR3] doctrine:mapping:import , error runtime

2010-09-14 Thread Fabien Potencier
Can you open a ticket for the Doctrine problem on the Doctrine ticketing system? http://www.doctrine-project.org/jira/secure/Dashboard.jspa Thanks, Fabien -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.org | fabien.potencier.org Tél: +33 1 40 99 80 80

[symfony-users] [symfony2-sandbox PR3] doctrine:mapping:import , error runtime

2010-09-14 Thread spike3111
Hello, I test the sandbox PR3, and I wanted to test the command doctrine:mapping:import with a simple database with three tables (categories, articles, members). I have the following exception: [ErrorException] Runtime Notice: Only variables should be passed by reference in C: \Users\moi\Docum