[symfony-users] Trying to use sfConfig::set to set flag for filter

2011-04-01 Thread Jonathan Franks
I'm trying to set a flag in a doctrine listener so that a sfFilter knows whether to do something or not. In the listener I have... sfConfig::set('app_database_altered', true); In my filter I have... public function execute($filterChain) { $filterChain-execute(); var_dump

Re: [symfony-users] Trying to use sfConfig::set to set flag for filter

2011-04-01 Thread Jonathan Franks
is loaded after your event is called, so that override your value... Yohan g. 2011/4/1 Jonathan Franks jonat...@ifranks.com I'm trying to set a flag in a doctrine listener so that a sfFilter knows whether to do something or not. In the listener I have... sfConfig::set

[symfony-users] Re: cli memory problem...

2011-03-26 Thread Jonathan Franks
-account-126837.html Thanks for your help! Regards Jonathan On 23 Mar 2011, at 15:12, Gabriel Petchesi wrote: My suspicion is that the limitation is not related to PHP or Apche in any way, it's probably some setting on a system level that affects all running processes. That is why I said

Re: [symfony-users] Re: @orm:PrePersist and another listeners don't work

2011-03-24 Thread Jonathan Wage
Hi, I just tested here and the pre/postPersist is fired when you insert a new entity. Remember that Pre/PostUpdate is fired when you update the entity and Pre/PostPersist is triggered when you insert a new entity. - Jon 2011/3/24 Otávio Augusto Rodrigues Fernandes oaugus...@gmail.com Hi all,

[symfony-users] Re: cli memory problem...

2011-03-23 Thread Jonathan Franks
Hi Gabriel. Thanks! Following ur advice, I used a script to test memory usage that I found here... http://magazine.joomla.org/issues/Issue-Dec-2010/item/295-Are-you-getting-your-fair-share-of-PHP-memory?tmpl=componentprint=1 And you were right! Through the web, the script happily gets up to

[symfony-users] Re: cli memory problem...

2011-03-23 Thread Jonathan Franks
works fine in that context. Weird! Any ideas? Thanks Jonathan On 23 Mar 2011, at 14:12, Gabriel Petchesi wrote: My suspicion is that the limitation is not related to PHP or Apche in any way, it's probably some setting on a system level that affects all running processes. That is why

Re: [symfony-users] symfony 2 + mongodb

2011-03-23 Thread Jonathan Wage
Looks like you are configuring Entity, what do the classes look like in that folder? Are the mapped to the ODM? - Jon On Tue, Mar 22, 2011 at 10:43 PM, Diego Henrique Oliveira diegoholiveira...@gmail.com wrote: I am trying to configure MongoDB to work in a different folder from the default

Re: [symfony-users] Re: Bug using MongoDB?

2011-03-10 Thread Jonathan Wage
Hi, Can I see your configuration? - Jon On Wed, Mar 9, 2011 at 11:17 AM, HiDDeN davidmoralesmoj...@gmail.comwrote: It seems this is occuring when using Memcache as the metadata cache. On 9 mar, 11:43, HiDDeN davidmoralesmoj...@gmail.com wrote: I have just downloaded the PR7 version of

Re: [symfony-users] [Doctrine 2 + MongoDB] Generating document classes

2011-03-10 Thread Jonathan Wage
Hi, You just need to define your mapping files as yaml or xml then generate:documents from them using the CLI. - Jon On Wed, Mar 9, 2011 at 10:27 AM, HiDDeN davidmoralesmoj...@gmail.comwrote: Is there a way to define the collection configuration and then generate the document classes through

Re: [symfony-users] [Symfony2 pr7] - doctrine:generate:repositories error

2011-03-10 Thread Jonathan Wage
Can we see your ORM mappings configuration? - Jon On Thu, Mar 10, 2011 at 2:38 AM, jdewit jorisdewitblackbe...@gmail.comwrote: I get the error. [RuntimeException] Repository Application\MsmBundle\Entity\Repository\JobRepository and bundle don't have a common namespace, generation

Re: [symfony-users] Transitive Persistence

2011-03-04 Thread Jonathan Wage
Hi, Yes. It cascades to all references automatically in Doctrine1. In Doctrine2 each reference must have cascading specifically enabled. This is for performance reasons that it is off by default. - Jon On Mon, Feb 28, 2011 at 4:59 PM, keymaster ad...@optionosophy.com wrote: I've searched the

Re: [symfony-users] [Sf2] doctrine:schema:create

2011-03-03 Thread Jonathan Wage
The configuration for the latest version in git should look like the following: doctrine: dbal: dbname: dbname orm: auto_generate_proxy_classes: true mappings: MainBundle: ~ - Jon On Wed, Mar 2, 2011 at 5:54 PM, liuggio liug...@gmail.com wrote: I

Re: [symfony-users] [Symfony 2] How to inject a Service into a Form

2011-03-03 Thread Jonathan Wage
Hi, Make your form class a service prototype and then you can inject anything you want and retrieve instances of the form from DIC. Essentially the DIC becomes your form factory. - Jon On Thu, Mar 3, 2011 at 9:48 PM, Jan Eichhorn j...@pixel-web.org wrote: Hi, actually i want to add an

Re: [symfony-users] Doctrine2, Date and Oracle

2010-12-03 Thread Jonathan Wage
-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

[symfony-users] Debug Toolbar Memory Use Value

2010-10-25 Thread Jonathan Franks
What does this amount mean? I have some pages with a value as high as 12544.0 KB. Is that bad? Thanks Jonathan -- 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

[symfony-users] Re: Zend Lucene Search Results - Strange order

2010-10-19 Thread Jonathan
found this... http://trac.symfony-project.org/ticket/5859 implemented suggested solution #3. It works now! Thanks On Oct 18, 10:56 pm, Jonathan Franks jonat...@ifranks.com wrote: I've followed the Jobeet Tutorial chapter on search and managed to implement a lucene based search engine

Re: [symfony-users] Zend Lucene Search - Parser problem

2010-10-19 Thread Jonathan Franks
Hi Adam, The chapter after search adds implements getting the results by ajax. The javascript that sends the request adds an asterisk (*) to the end of the search query. You can add asterisks to the ends of the words in the user search query. On 19 Oct 2010, at 10:59, Adam wrote: Hi I

Re: [symfony-users] Re: Zend Lucene Search - Parser problem

2010-10-19 Thread Jonathan Franks
* but i get Error: At least 3 non-wildcard characters are required at the beginning of pattern. ) On okt. 19, 16:38, Jonathan Franks jonat...@ifranks.com wrote: Hi Adam, The chapter after search adds implements getting the results by ajax. The javascript that sends the request adds an asterisk

[symfony-users] Date Problem : last day of the month

2010-09-30 Thread Jonathan Tondeur
Hello everybody, We have a problem with the following code in our form : $years = range(1900, 2099); $dateWidget = new sfWidgetFormDate( array('years' = array_combine($years, $years), 'format' = '%day% / %month% / %year%' ) );

Re: [symfony-users] Re: Doctrine2 symfony 1.4

2010-08-30 Thread Jonathan Wage
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message

Re: [symfony-users] Re: Doctrine2 symfony 1.4

2010-08-29 Thread Jonathan Wage
...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

Re: [symfony-users] [Symfony2] How to configure Doctrine\ORM\Configuration

2010-08-24 Thread Jonathan Wage
+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send

Re: [symfony-users] How to load a Doctrine 2 Custom Mapping

2010-08-24 Thread Jonathan Wage
at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] Re: created_at gets deleted on edit

2010-08-24 Thread Jonathan Wage
://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] Generate Document Classes for MongoDb

2010-08-24 Thread Jonathan Wage
-- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] what difference between Doctrine_core and Doctrine objects ?

2010-08-16 Thread Jonathan Wage
from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report

Re: [symfony-users] Symfony 1.4/Doctrine 1.2: specifying initial autoincrement value in a schema yaml file

2010-07-25 Thread Jonathan Wage
://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] Re: upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-23 Thread Jonathan Wage
like the package 5.0.0? Then I can use the svn:externals and don't worry about some future changes which wouldn't be compatible with my app. On 22 čnc, 18:12, Jonathan Wage jonw...@gmail.com wrote: We added the forgot password, register, etc. functionality. Everything else stayed the way

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-22 Thread Jonathan Wage
to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

Re: [symfony-users] Symfony now powering Startrek.com

2010-07-21 Thread Jonathan Wage
://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] [Doctrine] [newbie question] I got Class BaseFoo not found in c:\ ... models\Foo.php when I'm using Foo class

2010-07-20 Thread Jonathan Wage
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 -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-19 Thread Jonathan Wage
to symfony-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-19 Thread Jonathan Wage
Oh, I see the problem. One second I need to create another package. - Jon On Mon, Jul 19, 2010 at 9:38 AM, Jonathan Wage jonw...@gmail.com wrote: Hi, Hmm, what other changes were there? I didn't intend to do this. - Jon On Sun, Jul 18, 2010 at 1:37 PM, fizyk fi...@fizyk.net.pl wrote

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-19 Thread Jonathan Wage
Yes, it was a mistake. I need to release the 1.3 branch as 4.0.3 now and I'll package trunk as 5.0. - Jon 2010/7/19 Michał Piotrowski mkkp...@gmail.com: Hi, 2010/7/19 Jonathan Wage jonw...@gmail.com: Hi, Hmm, what other changes were there? It looks like a full trunk to me. I didn't

Re: [symfony-users] upgrade sfDoctrineGuardPlugin from 4.0.1 to 4.0.2

2010-07-19 Thread Jonathan Wage
Ok. Try now. You can upgrade to 4.0.3 for the remember me fix and 5.0.0 is trunk with the new functionality. Sorry about that! Thanks, Jon On Mon, Jul 19, 2010 at 9:43 AM, Jonathan Wage jonw...@gmail.com wrote: Yes, it was a mistake. I need to release the 1.3 branch as 4.0.3 now and I'll

Re: [symfony-users] [symfony 2] conflict: annotation validation on a Doctrine Entity using annotation mapping

2010-07-15 Thread Jonathan Wage
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 -- Jonathan H

Re: [symfony-users] Symfony 1.3 Issue with Doctrine_Table::createQuery and multiple databases

2010-07-06 Thread Jonathan Wage
For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] Admin generator, Symfony 2

2010-07-05 Thread Jonathan Wage
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received

Re: [symfony-users] Re: Symfony2 Doctrine2 $this-container-getDatabaseConnection() throws 'undefined method'

2010-06-25 Thread Jonathan Wage
this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage http://www.twitter.com/jwage -- 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

Re: [symfony-users] Symfony 1.4 Alias

2010-05-31 Thread Jonathan Wage
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow

Re: [symfony-users] Re: Possible Bug?

2010-05-27 Thread Jonathan Wage
email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com

Re: [symfony-users] Doctrine documentation is gone??

2010-05-14 Thread Jonathan Wage
-- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow me on Twitter: http://www.twitter.com/jwage You can contact Jonathan about Doctrine, Symfony and Open-Source or for training

Re: [symfony-users] findBy order?

2010-04-29 Thread Jonathan Wage
to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine

Re: [symfony-users] doSelect array result converted to ArrayDecorator in template

2010-04-22 Thread Jonathan Wage
from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

Re: [symfony-users] Re: doSelect array result converted to ArrayDecorator in template

2010-04-22 Thread Jonathan Wage
queries in my templates. Do you? - Jon On Apr 22, 5:31 pm, Jonathan Wage jonw...@gmail.com wrote: Hi, The idea of a MVC is that you don't do any data retrieving or manipulation in your templates. You should do this in your controller and pass the value you want to your views

[symfony-users] sf_method requirement being ignored...

2010-04-06 Thread Jonathan Franks
I'm trying to make my code enforce a PUT request on a certain url... basket_add: url:/basket/add/:class/:id param: { module: jbShoppingBasket, action: add } class: sfRequestRoute requirements: sf_method:[put] ./symfony

[symfony-users] Re: Swift Mailer Configuration

2010-03-31 Thread Jonathan
On Mar 30, 4:38 pm, Jonathan Franks jonat...@ifranks.com wrote: I'm a bit confused. I altered my factories.yml to look like this... all:   mailer:     param:       transport:         param:           host:       smtp.gmail.com           port:       465           encryption: ssl

[symfony-users] Swift Mailer Configuration

2010-03-30 Thread Jonathan Franks
I'm a bit confused. I altered my factories.yml to look like this... all: mailer: param: transport: param: host: smtp.gmail.com port: 465 encryption: ssl username: username password: password But, when I try to

Re: [symfony-users] Re: Using sf 2.0

2010-03-21 Thread Jonathan Wage
? Is there a sfDoctrine20Plugin? The plan for Doctrine 2 stable release is September 1st 2010. Yes, sfDoctrine2Plugin exists for symfony 1.3 and 1.4. - Jon Thanks in advance On 19 mar, 15:29, Jonathan Wage jonw...@gmail.com wrote: Hi, Symfony 2 just really isn't ready for a real project

Re: [symfony-users] Using sf 2.0

2010-03-19 Thread Jonathan Wage
as the subject. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow me on Twitter: http://www.twitter.com/jwage You can contact Jonathan about Doctrine, Symfony and Open-Source

Re: [symfony-users] Can someone help me translating this Doctrine snippet to Propel?

2010-03-14 Thread Jonathan Wage
To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer

Re: [symfony-users] Re: Doctrine schema for a widget system ?

2010-02-21 Thread Jonathan Wage
. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software

Re: [symfony-users] Re: Doctrine schema for a widget system ?

2010-02-21 Thread Jonathan Wage
' by 'testuser' and I still have the same error. Which is pretty weird since it since unrelated with the inheritance stuff... Anyway, any advice on the design question ? On 22 fév, 00:50, Jonathan Wage jonw...@gmail.com wrote: I think user is a reserved word :) Try changing the table name

Re: [symfony-users] Symfony 2 and changing a Bundle in the Application

2010-02-20 Thread Jonathan Wage
from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

Re: [symfony-users] app:clone task

2010-02-05 Thread Jonathan Wage
to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H

Re: [symfony-users] sfDoctrineGuard and behaviors

2009-12-30 Thread Jonathan Wage
...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony

Re: [symfony-users] ysfYUIPlugin and isXmlHttpRequest()

2009-12-19 Thread Jonathan Wage
this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

[symfony-users] New version of sfDoctrineGuardPlugin

2009-12-16 Thread Jonathan Wage
of sfDoctrineGuardPlugin containing many new cool things. Thanks, Jon -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow me on Twitter: http://www.twitter.com/jwage You can contact

[symfony-users] Using sfRouting to get Object from URL

2009-12-09 Thread Jonathan Dart
URL to get the object the user had been viewing. Is this the way to go about this? If so how do I got about getting an instance of sfRouting? Regards, Jonathan -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

Re: [symfony-users] token ##PACKAGE## in sf1.4 base model classes should be replaced by?

2009-12-07 Thread Jonathan Wage
...@googlegroups.com. To unsubscribe from this group, send email to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open

Re: [symfony-users] token ##PACKAGE## in sf1.4 base model classes should be replaced by?

2009-12-07 Thread Jonathan Wage
for your work. Just out of curiosity, what is the reason why ##EMAIL## is not parsed out of properties.ini, or rather not at all ATM? Georg Jonathan Wage schrieb: This is fixed now in SVN and the values come from the properties.ini file. - Jon On Thu, Dec 3, 2009 at 4:15 PM, Georg

Re: [symfony-users] Re: doctrine - Jonathan.Wage - what is wrong in my ticket ?

2009-12-01 Thread Jonathan Wage
to symfony-users+unsubscr...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com

Re: [symfony-users] Problem with sfDoctrineGuardPlugin

2009-12-01 Thread Jonathan Wage
...@googlegroups.comsymfony-users%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org

[symfony-users] sfGuardAuth not registering routes in sf1.4?

2009-12-01 Thread Jonathan Dart
After upgrading to sf1.4 sfGuardUser/Group/Permission are not working for me. In settings.yml enabled_modules:[default, sfGuardGroup, sfGuardUser, sfGuardPermission, sfGuardAuth] When I go to sfGuardUser/index I get the following error: The route sf_guard_user_collection does not

[symfony-users] Re: sfGuardAuth not registering routes in sf1.4?

2009-12-01 Thread Jonathan Dart
and cc. On Dec 1, 2:36 pm, charolastra ejcon...@gmail.com wrote: I can confirm this... I'm setting up a new project today and having to set the routes by hand.  Is there a way to manually load them?  I'm new to Symfony, sorry :-$ On Dec 1, 2:23 pm, Jonathan Dart jonathand...@gmail.com wrote

Re: [symfony-users] Re: Multiple Doctrine Databases / Sf1.4 Issues

2009-11-26 Thread Jonathan Wage
options, visit this group at http://groups.google.com/group/symfony-users?hl=en. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow me on Twitter: http://www.twitter.com

[symfony-users] Re: Need advise regarding a Doctrine_Template that all CMS entities will actAs

2009-11-24 Thread Jonathan Dart
/backend.php/ guest / guest Every content class act as a content node. cf : http://sfcmssolution.fri-dev.com/cms/en/code-sample I'll release it in few days under creative common. On 23 nov, 22:59, Jonathan Dart jonathand...@gmail.com wrote: Hi Users, I'm planning on using Symfony to make

[symfony-users] Need advise regarding a Doctrine_Template that all CMS entities will actAs

2009-11-23 Thread Jonathan Dart
. I've done some experimenting and this strategy works, although I haven't quite figured out how to manage I18n related matters yet. Is this idea sane? Any feedback? Regards, Jonathan -- You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Re: How is Sympal plugin going?

2009-11-13 Thread Jonathan Wage
specific functionality. I know that there is the Sympal plugin being developed, but I do not know in which state it is and if there are other CMS which would integrate well (Joomla?). Cheers guys. Juan Pablo -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

[symfony-users] [sf1.3][doctrine 1.2] baseClassName

2009-11-07 Thread Jonathan Franks
as I want to have a few tables using my custom base class and these tables have different fields. I could use Doctrine Behaviors but this seems like overkill. Regards Jonathan --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Re: Symfony 1.3 + Doctrine 2

2009-11-04 Thread Jonathan Wage
/ www.puentesdiaz.com.ar/blog/novedades www.twitter.com/puentesdiaz Linux User n° 441474 Ubuntu/Symfony/Eclipse Rocks! Sign for Free License for Project Zero http://www.petitiononline.com/zerogpl/ -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com

[symfony-users] Re: sympal component content error

2009-11-03 Thread Jonathan Wage
Component : Content Table : content /prebr object with the following parameters array ()). Any suggestions? Thanks -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You should follow

[symfony-users] Re: Unknown method JobeetJob::getDateTimeObject

2009-10-29 Thread Jonathan Wage
')-format('y/m/d'). When running that code, I get this error: Unknown method JobeetJob::getDateTimeObject Is the getDateTimeObject supposed to be implemented by myself? Is it part of Doctrine? (I have not found it in the api). -- Jonathan H. Wage (+1 415 992 5468) Open Source Software

[symfony-users] Re: sf 1.3 - loading fixtures

2009-10-27 Thread Jonathan Wage
: name: TestLine04 quantity: 1 cost: -2.50 Doctrine Bug Tracking Reference: http://www.doctrine-project.org/jira/browse/DC-147 -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org

[symfony-users] Re: Where in symfony can I set doctrine-specific attributes ?

2009-10-20 Thread Jonathan Wage
in my Doctrine model, and according to doctrine manual I have to set attribute Doctrine::ATTR_USE_NATIVE_ENUM to TRUE ( http://www.doctrine-project.org/documentation/manual/1_1/en/defining-models#columns:data-types:enum ) Where can I do it in symfony ? -- Jonathan H. Wage (+1 415 992

[symfony-users] Re: Where in symfony can I set doctrine-specific attributes ?

2009-10-20 Thread Jonathan Wage
: 250.412.9651 || Mobile: 250.886.4577 Skype: websage.ca || GTalk IM: gmarus http://websage.ca GnuPG-ID: 0x4309323E, http://pgp.mit.edu -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony

[symfony-users] Re: sf1.2 routes fail in sf1.3

2009-10-16 Thread Jonathan Franks
Hi Alex, if I remove the separator I don't get any matches. It worked perfectly in sf1.2 ! So, i'm wondering if its been deliberately stopped?? Regards Jonathan On 16 Oct 2009, at 07:33, Alexandre SALOME wrote: Could you try removing - from your segment separator ? url: /books

[symfony-users] Re: Connect to Sybase ASE

2009-10-16 Thread Jonathan Wage
: sa password: I have configured php.ini with pdo_mssql, but when I execute doctrine: build-schema symfony tell me that the sybase driver is unknown. There's something I need to add or modify? I'm over a NT plataform. Greetings. -- Jonathan H. Wage (+1 415 992 5468) Open Source

[symfony-users] sf1.3 ANSI color on the command line....

2009-10-15 Thread Jonathan Franks
is there a way to make this the default? instead of typing --color every time --~--~-~--~~~---~--~~ 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] testing routes

2009-10-15 Thread Jonathan Franks
the routes from my routing.yml ... $t-isDeeply($routing-parse('test.html'), array('module' = 'test', 'action' = 'test'), 'test.html passes'); etc... can anyone tell me how to load the routing.yml into my sfPatternRouting object?? Thanks Jonathan

[symfony-users] sf1.2 routes fail in sf1.3

2009-10-15 Thread Jonathan Franks
is this a deliberate change? Regards Jonathan --~--~-~--~~~---~--~~ 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

[symfony-users] Re: testing routes

2009-10-15 Thread Jonathan Franks
/load_data.php ;) On Thu, Oct 15, 2009 at 5:17 PM, Jonathan Franks jonat...@ifranks.com wrote: I have a very long, complicated routing.yml and I want to make sure that when I add a new route, it doesn't conflict with any of the existing ones. So, I wanna write a test which does something like

[symfony-users] Re: Sf/Doctrine : Using package option in schema file.

2009-10-06 Thread Jonathan Wage
david 316 2009-10-06 11:44 PluginUser.class.php -rw-r--r-- 1 david david 63 2009-10-06 11:44 PluginUserTable.class.php I want class in lib/model/[doctrine/]webservices. How can I do that ? Thanks for your support. David. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software

[symfony-users] Re: how to create a download link to a file in uploads directory?

2009-09-27 Thread Jonathan
) { if ( is_null($directory) ) { $directory = '/'.basename(sfConfig::get('sf_upload_dir')); } return 'a href='.url_for($directory.'/'.$filename).''.$label.'/ a'; } And then you can add UrlCustom to your standard_helpers in settings.yml Anyone have a nicer solution? = Jonathan

[symfony-users] Re: sfDoctrineGuardPlugin installation with symfony 1.3

2009-09-25 Thread Jonathan Wage
: No release available for plugin sfDoctrineGuardPlugin in symfony13/lib/plugin/sfPearRestPlugin.class.php on line 123 is that normal because symfony 1.3 is still under development? thanks cirpo -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

[symfony-users] Re: Symfony has definitely become too complicated framework

2009-09-24 Thread Jonathan Wage
that this is a lie. -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You can contact Jonathan about Doctrine, Symfony and Open-Source or for training, consulting, application development

[symfony-users] Re: Symfony has definitely become too complicated framework

2009-09-24 Thread Jonathan Wage
, 2009 at 8:58 AM, bghost bggho...@gmail.com wrote: It is necessary to invest so much effort to do a relatively simple application. Productivity and profitability of such work is very questionable. So, Symfony - Goodbye -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer

[symfony-users] Request data not found by getParameter unless square brackets used in form name format

2009-09-11 Thread Jonathan Dart
I have a form like so: class SearchForm extends sfForm { public function configure() { ... $this-widgetSchema-setNameFormat('search[%s]'); ... and an action like so: ... public function executeSearch(sfWebRequest $request) { $form = new SearchForm();

[symfony-users] Re: How to use raw mysql query in a symfony task

2009-08-08 Thread Jonathan Wage
mysql_query() or mysqli in a symfony task. Is there a way to get the connection through Doctrine to use the configured database for the given environment? Thanks, Klemens -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com

[symfony-users] Re: Doctrine order by sum(....) problem: Unknown aggregate alias: s

2009-07-22 Thread Jonathan Wage
-getRootAlias(); $q-leftJoin($m.Digg d ON ($m.id = d.digged_id AND d.digged_model = '$model')) -groupBy($m.id) -orderBy(sum(GREATEST(50/(time_to_sec(timediff (CURRENT_TIMESTAMP, d.created_at))/(3600*24)), 50)) DESC); return $q; } Please help! -- Jonathan H. Wage (+1

[symfony-users] Re: Slugify?

2009-07-20 Thread Jonathan Wage
...@wanadoo.fr wrote: Hello everybody, I'm French and and would like to know what means slugify. have you got a synonym or a translation in french for this word? thanks -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

[symfony-users] Re: How to stop doctrine creating tables for a single model?

2009-07-14 Thread Jonathan Wage
and the schema says don't export me (as in don't create a table). Any doctrine experts shed any light? Since the Doctrine code is in your symfony install, you can go look at the tasks code itself. -- -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist

[symfony-users] Re: symfony Day Cologne

2009-07-13 Thread Jonathan Wage
by various members of the symfony community, plus a workshop for beginners. The conference, both talks and the workshop, will be held in English. For more information you can visit http://www.symfonyday.com. greetings, Dennis -- Jonathan H. Wage (+1 415 992 5468) Open Source Software

[symfony-users] Re: Deployment Strategies

2009-07-09 Thread Jonathan Wage
: @garethmcc -- Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org You can contact Jonathan about Doctrine, Symfony and Open-Source or for training, consulting, application development, or business

[symfony-users] Re: Deployment Strategies

2009-07-09 Thread Jonathan Wage
at 10:08 AM, Pablo Godel pgo...@gmail.com wrote: Jon, What are the advantages you see on using this process instead of doing a checkout and then updates on the produciton side? Pablo On Thu, Jul 9, 2009 at 10:35 AM, Jonathan Wagejonw...@gmail.com wrote: My deployment process is simple

[symfony-users] Re: Deployment Strategies

2009-07-09 Thread Jonathan Wage
would recommend using some existing best practice for deployment like the svn diff/patch and capistrano approach. - Jon On Thu, Jul 9, 2009 at 12:02 PM, Eno symb...@gmail.com wrote: On Thu, 9 Jul 2009, Jonathan Wage wrote: Now the above commands are all done manually but a lot of times I just

[symfony-users] Re: Deployment Strategies

2009-07-09 Thread Jonathan Wage
Jonathan Wage schrieb: They are just ruby scripts :) You just write ruby code essentially to automate some commands in to a script that can be invoked easily across lots of machines. Honestly, the deployment of something is not the job of symfony. The way to do this has existed

[symfony-users] best way to access the query string from an sfRoute object...

2009-07-08 Thread Jonathan Franks
I'm building a sfRoute class and I want to have some parameters in the url itself and some appended in the query string. The problem is that I need to access all the parameters in my sfRoute class. The following... public function matchesUrl($url, $context = array()) { if (false

[symfony-users] Re: [sfGuardPlugin]: CAN NOT access

2009-07-08 Thread Jonathan Wage
| NULL | 1 | 1 | ++--+---+--+--+++---++ the error: The username and/or password is invalid, is showed. some help??? THANKSSS -- Jonathan H. Wage (+1 415 992 5468

[symfony-users] Re: [sfGuardPlugin]: CAN NOT access

2009-07-08 Thread Jonathan Wage
| NULL | 1 | 1 | ++--+---+--+--+++---++ the error: The username and/or password is invalid, is showed. some help??? THANKSSS -- Jonathan H. Wage (+1 415 992 5468

  1   2   3   4   5   >