[symfony-users] Re: url's in backend application

2009-09-19 Thread mini_alexander
Sorry for long time with no answer but I had to upload everything and check - so now I know the answer. In backend we should really use link_to(), then Symfony automatic adds /backend.php at the beginning of the link: link_to('Change avatar', 'profile/change_avatar') Or we can create link

[symfony-users] Re: url's in backend application

2009-09-19 Thread mini_alexander
And one more thing - thx all for help. :) On 19 Wrz, 08:38, mini_alexander aoohra...@gmail.com wrote: Sorry for long time with no answer but I had to upload everything and check - so now I know the answer. In backend we should really use link_to(), then Symfony automatic adds /backend.php

[symfony-users] Re: Application or module

2009-09-19 Thread mbernasocchi
similar scenario: The application has several loosely tied parts that can be used separately or together, and all share the same login. Think ERP here, with CRM, Billing, Inventory etc. All parts are modular within the main application, but they are all pretty big applications with many modules

[symfony-users] Re: url's in backend application

2009-09-19 Thread Alexandru-Emil Lupu
I would recomend you to use link_to( ) way. You may need to change the Dispatcher name (let's say from backend to admin), then the whole links must be replaced ... instead, symfony will do it automatically A. On Sat, Sep 19, 2009 at 9:39 AM, mini_alexander aoohra...@gmail.com wrote: And one

[symfony-users] Re: an intermitent bug, different for each browser and user

2009-09-19 Thread Jake Barnes
Curiously, this line will thrown an error even when I'm authenticated: $sf_user-getGuardUser()-getId() The method getGuardUser() seems to return nothing. Oddly, if I wish to go to a secure page that has been defined with this security: all: is_secure: off memberList: is_secure: on I

[symfony-users] Re: url's in backend application

2009-09-19 Thread mini_alexander
thx for advice :) On 19 Wrz, 08:45, Alexandru-Emil Lupu gang.al...@gmail.com wrote: I would recomend you to use link_to( ) way. You may need to change the Dispatcher name (let's say from backend to admin), then the whole links must be replaced ... instead, symfony will do it automatically

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

2009-09-19 Thread mini_alexander
Symfony has the best documentation which I have ever seen. Jobeet tutorial is very long but in this tutorial is almost everything - all important things. For me the worst thing in Symfony are plugins. Many good plugins are old - for example shopping cart:

[symfony-users] functional tests on sfForms

2009-09-19 Thread Alexandru-Emil Lupu
HI there ! i have following error and i do not ow why i get this behavior. I have made 2 sfBrowserTests in order to test some register scenarios, but it seems that i am unable to make it work. my first test, is checking what happens if the user do not fill in in any values. My second test, is

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

2009-09-19 Thread Alexandru-Emil Lupu
Well the symfony plugins part is the maintainer / creator job to keep it updated. But as there is no motivational thing involved (money or need to use it in sf 1.2 or something else that don't cross my mind atm ), i do not think the maintainer will do it. Instead, you might create an account on SF

[symfony-users] Re: Insert custom styles in template

2009-09-19 Thread Davide Borsatto
Slots are the solution to your problem, read about them in the docs --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Insert custom styles in template

2009-09-19 Thread Gábor Fási
When you call use_stylesheet() in your action template, it won't create a link tag instantly, but it adds the file to the response's stylesheets. [1] Later, when your output is decorated with the layout, and when the processing gets to the include_stylesheets() call in hour head (hope you include

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

2009-09-19 Thread Daniel Echalar
Hi i'm studing and i'm newer, well, one year ago i was trying to learn symfony by my way (well in those times without internet), i could not do the hello world jaja , so i leave symfony. now i need to finish a web system until 31 of December and alone. two months ago i started to write the code of

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

2009-09-19 Thread mini_alexander
I am not yet enought good in Symfony to update plugins :) I think it should be list of about 20 the most important plugins in symfony and they should be updated in each new version of Symfony. On 19 Wrz, 11:45, Alexandru-Emil Lupu gang.al...@gmail.com wrote: Well the symfony plugins part is

[symfony-users] Re: PHP mail function not working

2009-09-19 Thread DEEPAK BHATIA
Thanks Eno, On Fri, Sep 18, 2009 at 11:08 PM, Eno symb...@gmail.com wrote: On Thu, 17 Sep 2009, DEEPAK BHATIA wrote: When I execute above php page, the mail is not going to the recipietn. Is it in the mail queue on the sending machine? Run 'mailq' to check. Can you send email from the

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

2009-09-19 Thread Gareth McCumskey
Any framework will be a large investment of time in the begginging. Oh well, see ya, don't let the door hit on the way out On Fri, Sep 18, 2009 at 3:58 PM, bghost bggho...@gmail.com wrote: It is necessary to invest so much effort to do a relatively simple application. Productivity and

[symfony-users] Re: functional tests on sfForms

2009-09-19 Thread Alexandru-Emil Lupu
lol Fixed: It seems that when you supply the WidgetSchema NameFormat, the values sent via post should be something like $browser-post('/en/register', array( '*WidgetSchema NameFormat*' = array('username'=' ','commit'='submit') ) )

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

2009-09-19 Thread Jake Barnes
Daniel, your post could serve as a very basic explanation of Symfony to newcomers? Do you think you could re-write this and fix some of the grammar? Post it on a blog somewhere and I'll link to it, and maybe others, and maybe some of the bigger Symfony blogs, like Symfony Nerds, will link to it.

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

2009-09-19 Thread Juampy72
I think it's all about coding or not. Symfony not only helps you developing faster but also teaches you a lot of clean, beautiful programming. If you do not find this learning curve enriching, then I suggest you better go for other framework such as Joomla where everything is more visual and you

[symfony-users] Re: an intermitent bug, different for each browser and user

2009-09-19 Thread Jake Barnes
Hacking around so much I forget what I've done so far. So now the problem is that I can not log out. Okay, so if I edit the file sfGuardUserSecurity.class.php and add in this echo and die statement: public function signOut() { $this-getAttributeHolder()-removeNamespace

[symfony-users] Re: an intermitent bug, different for each browser and user

2009-09-19 Thread Jake Barnes
Hmm, not sure what I just did, but now things work. I think the simple remember me filter described here was playing havoc with my site: http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer I implemented it just as it is described on that page. Seem like the most likely

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

2009-09-19 Thread Jake Barnes
On Sep 19, 12:03 pm, Juampy72 juamp...@gmail.com wrote: I think it's all about coding or not. Symfony not only helps you developing faster but also teaches you a lot of clean, beautiful programming. If you do not find this learning curve enriching, then I suggest you better go for other

[symfony-users] Re: Application or module

2009-09-19 Thread Alexandru-Emil Lupu
mbernasocchi , i'd go for #2 On Sat, Sep 19, 2009 at 9:40 AM, mbernasocchi mbernasoc...@gmail.comwrote: similar scenario: The application has several loosely tied parts that can be used separately or together, and all share the same login. Think ERP here, with CRM, Billing, Inventory

[symfony-users] Re: Application or module

2009-09-19 Thread Jake Barnes
I'd go with 2 or more modules. So far I've rarely seen a need for 2 applications. I think you only need separate applications when you are dealing with a huge project that has divisions that are entirely separate. For instance, a huge corporate intranet, offering services to the global sales

[symfony-users] Re: Application or module

2009-09-19 Thread Jake Barnes
Will your CRM ever have to talk to Billing or Inventory? If yes, keep it to one application. If no, then I could see separate applications. On Sep 19, 2:40 am, mbernasocchi mbernasoc...@gmail.com wrote: similar scenario: The application has several loosely tied parts that can be used

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

2009-09-19 Thread DEEPAK BHATIA
Hi, Yes I think, symfony gives a good platform to develop small or big web sites giving Model-View-Controller architecture for the same. But I think, cookbook and other things need to be kept updated with latest changes. I found that Swift Mail has been updated but cook book comes with old

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

2009-09-19 Thread Jose R. Prieto
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is Joomla a Framework? For me, it isn't Juampy72 escribió: I think it's all about coding or not. Symfony not only helps you developing faster but also teaches you a lot of clean, beautiful programming. If you do not find this learning

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

2009-09-19 Thread Dennis Riedel
I would make a difference: web application and web site. Joomla, Drupal and TYPO3 are great to build websites and manage static and multimedia content and adding some of the social necessities. This is all representational. All the rest that is en vogue today, (social apps) and plattforms,

[symfony-users] Re: mod_rewrite

2009-09-19 Thread Jeremy Thomerson
Yes - you should definitely do this - or else you are potentially opening up the possibility of others downloading your database config (including passwords), model code, etc... Jeremy Thomerson On Tue, Sep 15, 2009 at 3:26 PM, Eno symb...@gmail.com wrote: On Tue, 15 Sep 2009, sannaide wrote: