[symfony-users] symfony template vs smarty

2009-09-28 Thread hutchic
As a long term symfony user I personally want to use symfony templating component for a new system. Problem is I need to convince management. What are the advantages of symfony over smarty (phptal etc etc) from a management point of view? Thanks for your input / assistance. --~--~-~--~-

[symfony-users] contributing to a plugin

2009-01-30 Thread hutchic
Just a general suggestion that I believe the symfony plugins should allow user contributions. I've made a number of enhancements to various symfony plugins and was thinking it would be helpful if the community could make contributions to plugins. As an example I modified the propelLoadBalancer p

[symfony-users] Re: functional tests outputting to prompt

2008-06-10 Thread hutchic
Figured it out there was a exception in the code. On Jun 10, 11:22 am, hutchic <[EMAIL PROTECTED]> wrote: > Starting just this morning whenever I run a symfony functional test it > outputs the content of the page to the command prompt. > > Even using the default functional t

[symfony-users] functional tests outputting to prompt

2008-06-10 Thread hutchic
Starting just this morning whenever I run a symfony functional test it outputs the content of the page to the command prompt. Even using the default functional tests. I suspect a plugin, filter or yml file is causing this any help would be greatly appreciated. Thanks, Colin --~--~-~--

[symfony-users] Re: functional test for subdomain

2008-06-05 Thread hutchic
Figured it out $browser->initialize($url,'127.0.0.1'); Colin On Jun 5, 3:14 pm, hutchic <[EMAIL PROTECTED]> wrote: > Using sfBrowser how can I test a site that is designed to run on a > subdomain? > > Thanks, > Colin --~--~-~--~~~

[symfony-users] functional test for subdomain

2008-06-05 Thread hutchic
Using sfBrowser how can I test a site that is designed to run on a subdomain? Thanks, Colin --~--~-~--~~~---~--~~ 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@go

[symfony-users] output escapting

2008-05-30 Thread hutchic
Output escaping seems to be escaping any ' to ' Any help is appreciated. Colin --~--~-~--~~~---~--~~ 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.c

[symfony-users] production profiling

2008-04-09 Thread hutchic
In a production environment I'd like to be able to record profiling statistics such as execution time, number of queries and time per query. If anyone has some insight into how the web debug toolbar accesses these values and how I can get ahold of them it would be greatly appreciated. - Colin --

[symfony-users] Re: a mixing for all get*

2008-04-03 Thread hutchic
ia()); $user->getId(); to $user = UsersPeer::doSelectOne(new Criteria()); catchFatal($user,'getId'); $user->getId(); perhaps overriding the basepeer would help in someway suggestions welcomed. - Colin On Apr 2, 5:12 am, "Ian P. Christian" <[EMAIL PROTECTED]> wr

[symfony-users] a mixing for all get*

2008-04-01 Thread hutchic
I was wondering if someone could direct me on how to define a mixin for any model method matching get? I tried creating my own __set and adding a mixin for __set to no avail. If I had access to aspect programming I'd be in the zone unfortunately. Any help is appreciated. - Colin --~--~-

[symfony-users] session collisions

2008-03-28 Thread hutchic
We've recently moved to a multi-webhost multi-database setup. However now the session table keeps having collisions show slave status; Last_Error: Error 'Duplicate entry '6i9q8qvvjaif1k3pr0l1ardn50' for key 1' on query. Default database: 'yourclas_yc20080325'. Query: 'INSERT INTO sf_spy_session

[symfony-users] Re: build mysql from criteria

2007-10-05 Thread hutchic
anyways... back on topic. $c = new Criteria(); $c->add(SomeModelPeer::ID,'1'); $sql = magicalFunctionX($c,doSelectOne); echo $sql; should print: SELECT * FROM SomeModel WHERE id ='1' LIMIT 1. Any serious help would be greatly appreciated. - Colin On Oct 4, 4:38 pm, hu

[symfony-users] build mysql from criteria

2007-10-04 Thread hutchic
I'm trying to build mysql from a criteria object. Any help would be appreciated. - Colin --~--~-~--~~~---~--~~ 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@goo

[symfony-users] propel many-to-many example

2007-08-15 Thread hutchic
http://propel.phpdb.org/trac/wiki/Users/Documentation/1.2/ManyToManyRelationships getBookReaderRefsJoinReader(); foreach($readerRefs as $ref) { $reader = $ref->getReader(); // <-- this isn't an additional query // since we used the Join method above } }

[symfony-users] render a view into a variable?

2007-08-01 Thread hutchic
I'm creating the lost password action for my user module. I need the lost password view to render into a variable. Any advice on how this can be done would be greatly appreciated. - Colin --~--~-~--~~~---~--~~ You received this message because you are subscribe

[symfony-users] shared validation

2007-07-27 Thread hutchic
There has got to be a way to do this! I wanted shared validation between two applications. I suspect I could call sfValidatorConfigHandler execute using a filter but I just can't get it to work. Had anyone else found a way to share one yaml file between two different applications or even share