[symfony-users] Symfony 2 - anything like grails?

2010-07-01 Thread Bill P.
Hello, I have been using grails for a recent project as well as learning the original symfony structure. Is Symfony 2 going to be a bit more like grails in the structure? I enjoy the flexibility that symfony offers in the way I can specify certain settings for the database columns individually

[symfony-users] Getting 0 results

2010-05-12 Thread Bill P.
Hello, I have a ProductCategory class with a method: public function getActiveProductsQuery() { $q = Doctrine_Query::create() ->from('Product p, ProductCategory pc, ProductToProductCategory ptc') ->where('pc.slug = ?', $this->getId()) ->andWhere('pc.id = ptc.product_category_id') ->andWhere('p.id

[symfony-users] Generate-Module : Only Show and Index for FrontEnd (NO Edit or New)

2010-04-10 Thread Bill P.
Hello, Is there a parameter to 'generate-module' that will just do Show and Index without Edit and New? I want to leave those two to the backend portion of the site. Any suggestions? Thanks. -- If you want to report a vulnerability issue on symfony, please send it to security at symf

[symfony-users] One Product to Many Categories

2010-04-06 Thread Bill P.
I would like to be able to assign an item to multiple categories. I've been reading about how to assign many to many i think, but the association doesnt seem right. I should end up with a third table that records the item ID as well as the category ID that it is assigned to. Am I missing somethi

Re: [symfony-users] Re: CMS, Catalog/Cart - Users and Administration ???

2010-03-29 Thread Bill P.
: CMS, Catalog/Cart - Users and Administration ??? I'd recommend sfGuard. It's very well supported among many plugins On Fri, Mar 26, 2010 at 12:03 PM, Bill P. wrote: > I'm not married to anything yet. > Mainly trying to understand what or how I would do such a thing. > I want a

Re: [symfony-users] Re: CMS, Catalog/Cart - Users and Administration ???

2010-03-26 Thread Bill P.
users] Re: CMS, Catalog/Cart - Users and Administration ??? Which plugins do you want to use? Does they use sfGuardPlugin for users management? On 25 bře, 19:02, "Bill P." wrote: > Hello, > > I am setting up a site and want to know if this is possible: > > I have to build

[symfony-users] CMS, Catalog/Cart - Users and Administration ???

2010-03-25 Thread Bill P.
Hello, I am setting up a site and want to know if this is possible: I have to build a web site for a company that has some pages of static content they want to manage and also a product catalog they also want to update and allow people to add items to a cart. Looking through some of the CMS plu

Re: [symfony-users] You must pass a valid path to a directory containing Doctrine models

2010-03-08 Thread Bill P.
_ From: Eno To: "symfony-users@googlegroups.com" Sent: Thu, March 4, 2010 2:50:06 PM Subject: Re: [symfony-users] You must pass a valid path to a directory containing Doctrine models On Thu, 4 Mar 2010, Bill P. wrote: > I am trying to setup a new p

Re: [symfony-users] You must pass a valid path to a directory containing Doctrine models

2010-03-05 Thread Bill P.
_ From: Eno To: "symfony-users@googlegroups.com" Sent: Thu, March 4, 2010 2:50:06 PM Subject: Re: [symfony-users] You must pass a valid path to a directory containing Doctrine models On Thu, 4 Mar 2010, Bill P. wrote: > I am trying to setup a new p

[symfony-users] You must pass a valid path to a directory containing Doctrine models

2010-03-04 Thread Bill P.
(not sure if i posted this correctly last time) Hello, I am trying to setup a new project using NetBeans and this tutorial: http://wiki.netbeans.org/NB68symfony It is using propel, but I am setup with Doctrine. Everything seems to be setup correctly, but when I am trying to insert-sql, I ge

[symfony-users] Valid path to a directory containing Doctrine models

2010-03-04 Thread Bill P.
Hello, I am trying to setup a new project using NetBeans and this tutorial: http://wiki.netbeans.org/NB68symfony It is using propel, but I am setup with Doctrine. Everything seems to be setup correctly, but when I am trying to insert-sql, I get this error; You must pass a valid path to a direct

[symfony-users] Hiding / Not showing a column from DB in CRUD forms

2010-02-24 Thread Bill P.
Hello, I have been recently working in Grails (Java's symfony framework) and there is some weirdness if i want to create columns (properties) but not have them show up in the forms or be editable. So in symfony, how would I create 2 properties such as 'DateInserted' and 'beenProcessed' but hav