Re: Symfony MOdule redirection Programming Web Development by ShawnCplus Symfony redirects are done with [icode]$action->forward('module', 'action');[/icode] OR [icode]$action->redirect('<route>');[/icode]. I'm not exactly sure what you're trying to accomplish. Symfony Programming Web Development by tycoon_007 Hi, I've been using an IDE for developing in PHP. I wanted a PHP framework and SYMFONY was one of the suggested ones. I need to complete this proj withing 3 months and have no time to learn anything complicated. I need feedbacks from people who have used Symfony and is it easy to learn? Thnx guys Re: Symfony Programming Web Development by tycoon_007 I know about the project and I AM willing to learn. What I dont have time for is test different frameworks like CakePHP, Symfony etc and then coming to a conclusion. It would make life easier if i know which is more easier n user friendly. Have already started Symfony, so just asking people who have used it for feedback. Thats all I'm askin :) Symfony validator: Access object being validated from ClassMetadata Programming Web Development by cossay I have the following class that I intend to validate by passing it in the symfony validator. <?php namespace Shop; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; use Shop\Validation\Constraint as ShopAssert; class Country { /**… Symfony + skipping actions Programming Web Development by hbmarar Hi, In symfony , if i have two modules. module A has functino to get the details and corresponding template has a list of comments to show from filesystem. But comments i want to keep as a seperate module and this asks me to skip from one action to another. is it possible to skip from a action in module A to action in module B and then … Symfony URL issue Programming Web Development by Albert Pinto Hi People... I'm very new to this Symfony thing... I'm working on a CRM... Issue is with the url part... I mean....after looging in, no matter which page I go through... It always displays as index.php at the end part of the url.... or sometimes some annoying url... http://127.0.0.1/myproject/symfony/web/index.php/auth/login I mean why can't … Re: Symfony URL issue Programming Web Development by LastMitch >Is there any way to get the proper url.... I mean the php filename on url... **Symfony** has it own way of using URL's: http://www.symfony-project.org/api/1_3/UrlHelper#method_public_path Choosing Symfony , Zend Framework, CakePHP Programming Web Development by htcorp Symfony , Zend Framework, CakePHP - Which Framework you will choose ? Re: Choosing Symfony , Zend Framework, CakePHP Programming Web Development by apsivam Symfony my choise Symfony MOdule redirection Programming Web Development by vssp Hi Friends I am working on symfony project. This is new frame work for me. So Please clarify my doubt. This is looklike community site. user able to create own sub domine. Public site have one login page ex([url]www.sample.com[/url]) individual user have one login page ex ([url]www.vssp.sample.com)[/url]. How to seprate the login … Re: Symfony MOdule redirection Programming Web Development by vssp [QUOTE=ShawnCplus;708963]Symfony redirects are done with [icode]$action->forward('module', 'action');[/icode] OR [icode]$action->redirect('<route>');[/icode]. I'm not exactly sure what you're trying to accomplish.[/QUOTE] Thanks for your reply . This code use only inside the module. But I want to call the module different user . … Re: Symfony Programming Web Development by Phaelax [QUOTE]I need to complete this proj withing 3 months and have no time to learn anything [/QUOTE] Sounds like you shouldn't have accepted a project you knew nothing about nor willing to learn anything about it. Running symfony on wamp server Programming Web Development by hakimkal Hey, some weeks ago, a friend asked me to try out the SYMFONY project framework, been a WINDOWS XP User running the WAMPSERVER 2.0 which has php5.2.5 running, I realize that the Symfony definitive guide PDF book had its focus more on *nix core systems though probably with a few regard for Windows User. This is how I got my own symphony running … help with setting up symfony Programming Web Development by puvi Hi ppl, I copied the code of a small php web application from a remote machine(where it was running fine) to my local machine. Symfony framework is used to generate the frontend of this application. I want to add some features and enhancements to this application, so I installed sf_sandbox and checked if its installed properly, it is working … Creating data grids in Symfony 2.1 Programming Web Development by I-Bickerstaff Hi! I'm working for a company that specializes in custom software development. Challenges are part of my daily routine and once I thought I want to share what my team has learned so far. You can find my thoughts here: http://cases.azoft.com/datagridbundle/ In a nutshell: *Recently, while working on one of our web development projects using … Can't save multiple checkboxes value (symfony) Programming Web Development by eantz Hi there, Someone using symfony? help me, please.. I have form class that I embed to another one.. In the embedded form, I have multiple checkboxes. But when I try to save it and I check some value of checkboxes, the error said "SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens". … Can you review my video on productivity when optimizing symfony application Programming Web Development by McLaren I am strugling to find my productivity bottlenecks. I decided I could record a video, so that someone could see how I work and my thinking process. I know one way to increase productivity is to have experience with something. But often there is tasks which are rarely or first time done. So this time I am trying to optimize symfony application … Re: Can you review my video on productivity when optimizing symfony application Programming Web Development by rproffitt I'm not a Symfony user. But your video with what looks like a dozen plus open apps could be a problem. When I write in Visual Studio or Android Studio, I don't have that many apps open. So there's that. I watched a bit at https://www.youtube.com/watch?v=HchMW8EhWPU to confirm you don't need that many apps open. Let me address something (… Re: Can you review my video on productivity when optimizing symfony application Programming Web Development by McLaren > As a test he handed out the same task to about 5 programmers and meaured the keystrokes, LOC (lines of code) and of course time. > > >Result? All over the map. It didn't make sense to him why one person slayed it in under one hour and the longest time was a few days. Tossing out the high and low it looked better in just under… Re: Symfony validator: Access object being validated from ClassMetadata Programming Web Development by cossay I solved my own problem. The solution is to create a custom Class Constraint Validator. Re: Symfony + skipping actions Programming Web Development by hbmarar Hi, I was able to solve this and the solution apt for such a need is using components. Think this way : module A is done and module B is included with component template. Harish Re: Symfony MOdule redirection Programming Web Development by ShawnCplus In the app directory app/<app>/config/settings.yml there is a configuration for login_module and login_action. Modify the action to redirect the user to the other site. Re: Choosing Symfony , Zend Framework, CakePHP Programming Web Development by hungnguyen I choose ZF! Re: Choosing Symfony , Zend Framework, CakePHP Programming Web Development by miguelp I do like codeIgniter best but from the tree you point out i'll choose ZendFramework without blinking. Symfony Doctrine help Programming Web Development by nodoso Hi everybody, I have some difficulties getting my objects mapped from a query. My query is this one: [code] $this->myPlanes = Doctrine_Query::create() ->from('FsPlane p') ->leftJoin('p.FsPlanetech t') ->leftJoin('t.FsPicture') ->where('player_id = ?',… Re: Creating data grids in Symfony 2.1 Programming Web Development by LastMitch >Hope it's useful. Feel free to ask, suggest, and comment here or on the article page. Nice article (tutorial) thanks for sharing! Re: Can't save multiple checkboxes value (symfony) Programming Web Development by vibhaJ post ur code where checkbox value is taken frm form. Re: Can't save multiple checkboxes value (symfony) Programming Web Development by sourcebits If you will use array of check boxes like <input type="checkbox" name="chek1[1]" value="AAA"> <input type="checkbox" name="chek1[2]" value="BBBB"> it may help. If you are using already, then if you will relook into the code , you will be able to find the issue by yourself. Re: Can't save multiple checkboxes value (symfony) Programming Web Development by eantz Before I move further, I want to ask something. If I use sfWidgetFormChoice with multiple and expanded set to true, is the type of the field in the database must set to Enum? Because in my case, I set it to int.. Re: Can you review my video on productivity when optimizing symfony application Programming Web Development by McLaren > what looks like a dozen plus open apps could be a problem why do you think so? I could get rid of resource manager, but I wanted to take a look at it from time to time, to see what is using my computer resourses. Another is - skype, but again, what if somebody wants to write me :) especially on non work time. I would understand …