[symfony-users] is there a way to unsubscribe from this group?

2010-01-15 Thread Zeek
Was there any follow up regarding the bug that kept sending out email? I recall Fabien looked into it and decided that Google was responsible for the bug, but usually Google fixes such bugs in 24 or 48 hours. This has been going on for 2 months or so. I've trouble believing that Google would leave

[symfony-users] Re: The user profile class "sfGuardUserProfile" does not exist.

2009-12-29 Thread Zeek
29, 4:11 pm, Sorom Uzomah wrote: > Hi Zeek, > > Thanks for your response. In my lib/model I have SfGuardUserProfile not > sfGuardUserProfile, but all the other classes start with a capital letter. Do > I need to specifically change this to small letters and I have other projec

[symfony-users] Re: Passing Params to Routes

2009-12-28 Thread Zeek
Can you show us an example URL? And what does your doSelectByDomain methods look like? On Dec 28, 11:15 am, Rob Wilkerson wrote: > On Mon, Dec 28, 2009 at 11:11 AM, Gábor Fási wrote: > > I guess you want this: > > > param: { module: page, action: show, domain_slug: whatever, slug: whatever2

[symfony-users] Re: Veeeeeeeeeerry Strange Error with a form

2009-12-28 Thread Zeek
Have you installed the sfErrorHandler plugin? http://www.symfony-project.org/plugins/sfErrorHandlerPlugin Symfony will swallow certain kinds of errors. For instance, passing parameters of the wrong type, when type hinting is in use. It is good to have that plugin installed. On Dec 28, 1:32 pm

[symfony-users] Re: Veeeeeeeeeerry Strange Error with a form

2009-12-28 Thread Zeek
> So I put an echo statement in the constructor of sfFormDoctrine, the > first constructor that should be encountered by PHP generating the > object, and folks, it never gets executed. Somewhere in building the > object hierarchy, php crashes, or some Symfony/Doctrine code throws an > exception. N

[symfony-users] Re: Veeeeeeeeeerry Strange Error with a form

2009-12-28 Thread Zeek
> When I run it in production mode, accessing the ...URL/new link > produces NO output, sends a 500 Server Error return code. Using die > statements, I found that it stops at the ONE line in 'executeNew' > function of the action class. Why use die statements? Why not use Symfony's logger? If yo

[symfony-users] Re: The user profile class "sfGuardUserProfile" does not exist.

2009-12-28 Thread Zeek
Sorom, what do you get if you do this: echo get_class($this->getUser()->getGuardUser()->getProfile()); Do you get an error when this is called? echo get_class($this->getUser()->getGuardUser()); If you look in lib/model do you see a sfGuardUserProfile class? It is case sensitive. Be sure you do

[symfony-users] Re: Netbeans with symfony support: tasks without "sudo"

2009-12-28 Thread Zeek
On Dec 27, 2:36 pm, tirengarfio wrote: > The only way i know to avoid writing "sudo" is logging in the > operative system as root. But i dont want to logging as root. > > Is there anyone more? > Log in as root and change the permissions so that you no longer have to log in as root to call the

[symfony-users] Are Propel behaviors disallowed in Symfony tasks?

2009-12-21 Thread Zeek
I ssh to the server, to the directory of my website. On the command line, I call: symfony QuestionAnswerContest:remindAskersAboutTheirExpiredQuestions myDomain.com I get this error (lit up in red in my terminal window): Propel behavior "sfPropelActAsTaggableBehavior" is not registered I have t

[symfony-users] Re: PHP Fatal error: Uncaught exception 'sfStopException'

2009-09-25 Thread zeek
I've never called forward(), but the documentation says "This method stops the action. So, no code is executed after a call to this method." I assume it is throwing the exception to stop the action. I would think this propagates up and is caught at a higher level, though apparently that is not ha

[symfony-users] Re: Call For Information Re-organization [opinions needed]

2009-09-24 Thread zeek
> If there is a technical platform for it wiki or something, i would be glad > to help the symfony team to write, translate or add examples in the > documentation > > > > On Thu, Sep 24, 2009 at 04:16, zeek wrote: > > > On Sep 23, 8:10 am, fakingfantastic wrote: > &

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

2009-09-24 Thread zeek
On Sep 24, 3:05 pm, Eno wrote: > On Wed, 23 Sep 2009, bghost wrote: > > No offense Fabien, this is a well-meaning criticism. I know that you > > invested so much effort into Symfony. However,  you are a little > > exaggerated forcing object model and  object-oriented programming > > where it is

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

2009-09-24 Thread zeek
On Sep 24, 11:04 am, bghost wrote: > This is generated HTML code that I got after inserting the language > component within a table cell: > > > > where component 'language' is a component that uses Symfony WEB forms: > (from Jobeet tutorial): > > >   type="hidden"> > > > > >   Language >

[symfony-users] Re: Different validation for update/insert

2009-09-23 Thread zeek
The Symfony form framework is maybe too complicated (Symfony is now an MVCF architecture), but if you are going to use it at all, you have to stick with one form class for each model. You are inviting a lot of pain if you start using multiple form classes. On Sep 23, 6:16 am, Simone Fumagalli

[symfony-users] Re: Call For Information Re-organization [opinions needed]

2009-09-23 Thread zeek
On Sep 23, 8:10 am, fakingfantastic wrote: > I recently had a discussion with Fabien about this topic, and he > suggested it would be best if I stage the debate here. > > Has anyone ever felt like the information they needed to get on > Symfony was hard to find? Do you find that the information

[symfony-users] Re: Symfony with integrated Wordpress

2009-09-23 Thread zeek
Why do you try to include wp-blog-header.php in Symfony? Any risk of name collisions between Symfony variables and WordPress variables? Or constants? On Sep 23, 4:14 pm, Nat wrote: > Does anyone know anything about Wordpress + Symfony together?  Thanks > in advance > > I've taken over develop

[symfony-users] Re: Symfony with integrated Wordpress

2009-09-23 Thread zeek
What error appears in the PHP error logs? If there are none, and you're dealing with a fatal error, that would mean there is an error somewhere that is being suppressed with the use of the "@" operator. On Sep 23, 4:14 pm, Nat wrote: > Does anyone know anything about Wordpress + Symfony toget

[symfony-users] Re: Symfony with integrated Wordpress

2009-09-23 Thread zeek
Theodo integreated Wordpress and Symfony: http://www.theodo.fr/blog/2009/03/integrate-wordpress-into-symfony/comment-page-1/ On Sep 23, 4:14 pm, Nat wrote: > Does anyone know anything about Wordpress + Symfony together?  Thanks > in advance > > I've taken over development of a CMS built on sy

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

2009-09-23 Thread zeek
> What is the point and what the benefits of the code generated if 90% > of the code must be re-written on the completely different way? You are free to write a plugin that auto-generates the CRUD forms in any way you wish. > The result of all this is a complex directory structure, many empt

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

2009-09-23 Thread zeek
> Packaging and releasing plugin to Symfony repository takes a bit more > time, but pluginizing module for your own use only takes minutes with > benefit of reusability over multiple projects. Possibly a one page checklist should b given some prominence. The info is there in the book, but it gets

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

2009-09-23 Thread zeek
Farrukh, The kind of re-use that you are talking about, from one project to the next, should be done with a plugin. It is the plugins that allow you to "putting the schema model n peer classes in one folder so all one would need is to copy the folder n customize it ." On Sep 23, 9:51 am, F

[symfony-users] Re: the jquery date widget is killing a page in IE 7

2009-09-22 Thread zeek
fixed here: http://trac.symfony-project.org/changeset/15842 On Sep 21, 11:48 pm, "Michael J. Stuart" wrote: > I am using sfWidgetFormJQueryDate for a date widget on a form. This > form works well in FireFox, Safari and Google Chrome. However, the > page won't load in IE 7 (have not yet checke