Re: [symfony-users] Re: Could not find any configured connections

2011-01-11 Thread taidehuone
I am no regex expert but I took a look at the latest commits for symfony2 and very quickly stumbled upon this, dated 6th of January: https://github.com/symfony/symfony/commit/7ca046bfb596478a2fc9abd1f897b57f1c65cc12 I'm not sure if it could lead us to the root of the problem, but the changed

Re: [symfony-users] Re: Could not find any configured connections

2011-01-11 Thread Gustavo Adrian
I've made a pull request: https://github.com/fabpot/symfony/pull/381 https://github.com/fabpot/symfony/pull/381The DB connection services were marked as private. That's why you couldn't access them (and neither the Doctrine commands). On Mon, Jan 10, 2011 at 5:53 PM, taidehuone

[symfony-users] Re: multiple db connections problem

2011-01-11 Thread Venzon
I figured out how to force conenction service to appear in ProjectContainer class: In /Symfony/Bundle/DoctrineBundle/DependencyInjection/ DoctrineExtension.php in line 115 and 121 I set $containerDef- setPublic(true) Does anyone know how to set cotainer service to public by config.yml? -- If you

[symfony-users] Re: multiple db connections problem

2011-01-11 Thread Venzon
seems that problem was aleady detected and being fixed by devs [url]http://groups.google.com/group/symfony-devs/browse_thread/thread/ 1cacf3da5121179d?hl=en#[/url] -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this

[symfony-users] Re: multiple db connections problem

2011-01-11 Thread Venzon
seems that problem was aleady detected and being fixed by devs http://groups.google.com/group/symfony-devs/browse_thread/thread/1cacf3da5121179d?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

[symfony-users] Issue with sfForkedDoctrineApplyPlugin

2011-01-11 Thread sinu govind
Hi all, Finally I got the sfforkeddoctrineapplyplugin working fine and I have got the email. But still I am facing few issues. If in my app.xaml file, I give sfForkedApplyPlugin: from: email: fullname: the staff at yoursite.com If I give my email as my gmail or

[symfony-users] MINI HOWTO: implement a Twig extension in a bundle in Symfony 2

2011-01-11 Thread Tom Boutell
I've seen a lot of questions about how to implement a Twig extension successfully in a Symfony 2 project but no real answers (mostly snarky comments (: ). It took some figuring out. So here are the key steps: * Write your Twig extension in a bundle of your choice, let's say SillyCMSBundle *

[symfony-users] Re: Issue with sfForkedDoctrineApplyPlugin

2011-01-11 Thread Grzegorz Śliwiński
You mean same from email, like the gmail id? On Jan 11, 1:19 pm, sinu govind sinugov...@gmail.com wrote: Hi all, Finally I got the sfforkeddoctrineapplyplugin working fine and I have got the email. But still I am facing few issues. If in my app.xaml file, I give sfForkedApplyPlugin:        

Re: [symfony-users] Populate sfWidgetFormChoice choices with AJAX

2011-01-11 Thread Tom Haskins-Vaughan
What do you have so far? On Thu, Jan 6, 2011 at 10:10 AM, Emil Rømer Christensen christensen.e...@gmail.com wrote: Hi there, I have made a form with 3 select boxes using sfWidgetForm. Here is the schema for them: ServiceType:  columns:    name: { type: string(255), notnull: true, unique:

Re: [symfony-users] Re: A simple Wiki written in Symfony 2 (aka an interesting sandbox-derived practice project)

2011-01-11 Thread Tom Boutell
Update: this project now includes a Twig extension written as a Symfony bundle. The Twig extension implements a simple Wiki syntax. -- 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

[symfony-users] Loading Versionable-Date with doctrine:data-load

2011-01-11 Thread Daniel Reiche
Hi everyone, could not find any information on this one so please forgive me, if it has been answered before. I'm working on a sf1.4 Project using doctrine as my ORM. I have defined several tables in my model like in the following example. course: actAs: [Versionable, Searchable] columns:

Re: [symfony-users] Pagination problem

2011-01-11 Thread Tom Haskins-Vaughan
Are you still having trouble with this? I tried the link and didn't see anything wrong. On Fri, Jan 7, 2011 at 1:00 PM, Felipe Gutierrez fgutierrez.ch...@gmail.com wrote: Hi Im new in symfony I need a hand with pagination, Im trying to use pagination in a page for search terms, in the module I

Re: [symfony-users] sfForm getValidatorSchema()-setPreValidator() documentation

2011-01-11 Thread Tom Haskins-Vaughan
What are you trying to achieve? On Fri, Jan 7, 2011 at 2:39 PM, neanlos nean...@gmail.com wrote: Anyone has documentation about sfForm getValidatorSchema()- setPreValidator() mentioned in the article http://www.symfony-project.org/gentle-introduction/1_4/en/10-Forms? -- If you want to report

Re: [symfony-users] documentation about hasHelp() mentioned in gentle-introduction 1.4

2011-01-11 Thread Tom Haskins-Vaughan
I just grep'd for the phrase hasHelp in sf1.4.8 and came up with nothing. Is this not in the core library? On Fri, Jan 7, 2011 at 2:53 PM, neanlos nean...@gmail.com wrote: ... And anyone has documentation about the hasHelp function mentioned in the section Customizing Error Messages Display of

[symfony-users] Save the output of a task.

2011-01-11 Thread Javier Garcia
Hi, i have a long error message when i execute a task. In order to save the output i'm writing task foo.txt. But when i open foo.txt the error messages are not there. Any idea? Any alternative? Regards Javi -- If you want to report a vulnerability issue on symfony, please send it to

Re: [symfony-users] Save the output of a task.

2011-01-11 Thread Gábor Fási
You also need to redirect the stderr: task foo.txt 21 this redirects it to the stdout, so it gets logged to the same file. On Tue, Jan 11, 2011 at 15:56, Javier Garcia tirengar...@gmail.com wrote: Hi, i have a long error message when i execute a task. In order to save the output i'm

[symfony-users] After installing sfPropel15Plugin: error when i try to build classes

2011-01-11 Thread Javier Garcia
Hi, when i do propel:build --all-classes i get these errors below. I have followed the instructions that are in the README. sf 1.4 schemaconverting /home/javier/program...rueba1/config/schema.yml to XML schemaputting /home/javier/programazio...eba1/config/generated-schema.xml schema

[symfony-users] Re: Save the output of a task.

2011-01-11 Thread Javier Garcia
Thanks! On Jan 11, 4:58 pm, Gábor Fási maerl...@gmail.com wrote: You also need to redirect the stderr:     task foo.txt 21 this redirects it to the stdout, so it gets logged to the same file. On Tue, Jan 11, 2011 at 15:56, Javier Garcia tirengar...@gmail.com wrote: Hi, i have a long

[symfony-users] [Symfony2] Functional test

2011-01-11 Thread mremi
Hi, I try to use a transaction in a functional test with Symfony2 but apparently it does not work. It seems that two connections are opened because the kernel is rebooted for each request. Is anyone already tried it? Thanks -- If you want to report a vulnerability issue on symfony, please send

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

[symfony-users] unsubscribing from group

2011-01-11 Thread introvert
Hello, I'm having problems with unsubscribing from this group - I don't want to receive mails for each new post/reply. If I unsign from the group, send the mail to unsubscribe email, or click the unsubscription link in the email, I still get all the emails - seems like nothing resolves the

[symfony-users] Baan PHP Symfony programmeur

2011-01-11 Thread HAUSa
Because this is a job offer in Holland, please forgive me that I continue in Dutch. KiwiMedia (Utrecht) zoekt per direct een PHP Symfony programmeur! Ben je zelf op zoek naar een fulltime baan of ken je iemand? Neem dan contact met ons op! Momenteel doen wij projecten voor de Rabobank, de

Re: [symfony-users] Re: Minified JavaScript in Production

2011-01-11 Thread Thomas Rabaix
use https://github.com/rande/swCombinePlugin/ On 10 janv. 2011, at 23:11, Felix E. Klee wrote: On Sun, Jan 9, 2011 at 7:51 PM, Tom Boutell t...@punkave.com wrote: Apostrophe (a CMS plugin for Symfony, among other things) includes a minifier for JS and CSS which is integrated into Symfony so

Re: [symfony-users] Re: Minified JavaScript in Production

2011-01-11 Thread Felix E. Klee
On Tue, Jan 11, 2011 at 10:20 PM, Thomas Rabaix thomas.rab...@gmail.com wrote: use https://github.com/rande/swCombinePlugin/ Interesting! In fact, I had something like this in mind: Create minified versions only for deployment. The disadvantage though: The minified version cannot be tested in

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