[symfony-users] apostrophePlugin now sf_output_escaping: true compatible

2010-08-07 Thread Tom Boutell
By popular request, apostrophePlugin is now compatible with the default Symfony project setting for automatic escaping of variables in templates and partials, sf_output_escaping: true. This work was done in the trunk of the plugin only, not the 1.4 stable release, because it's... well... stable. H

[symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread Psychonetics
Check this out: http://netbeans.org/kb/docs/php/symfony-screencast.html On Aug 7, 11:36 pm, Psychonetics wrote: > You can sync it with symfony and there is a tutorial on how to do this > on the web. > > On Aug 7, 11:12 pm, Psychonetics wrote: > > > netbeans > > > On Aug 4, 12:22 am, "Julian Rey

[symfony-users] Re: Error on creating Jobeet Database

2010-08-07 Thread Daniel Lohse
Hey there, well I'm kinda missing a question in there. :) Regarding your error with the mysql console: you clearly have the wrong password. But why are you doing it this way? The ./symfony doctrine:build --all command does create the database (it also drops the existing one, if any) for you. Y

[symfony-users] Re: load L18N helper in form class : how to ?

2010-08-07 Thread Tristan
I only have 2 forms to handle in L18N so i think it's better to load manually the helper in the 2 form. Thank you for your answer On 7 août, 19:48, Gustavo Adrian wrote: > use ProjectConfiguration::getActive() instead of sfProjectConfiguration. > > Although if you're going to use the i18n helper

[symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread Psychonetics
You can sync it with symfony and there is a tutorial on how to do this on the web. On Aug 7, 11:12 pm, Psychonetics wrote: > netbeans > > On Aug 4, 12:22 am, "Julian Reyes Escrigas" > > wrote: > > Hi > > > I need help for find a new editor for PHP, I'm using Netbeans 6.9 but I > > don't know for

[symfony-users] sfGuardAuth causes everything on my homepage to disappear when I embed any code that corresponds with $sform.. any ideas why?

2010-08-07 Thread Psychonetics
I'm trying to embed my sfDoctrineGuardPlugin login form on an existing page (homepage), this homepage template will be used on every page that links of the home. Please note I want the sfDoctrineGuardPlugin login form to take on my homepage template and discard what ever template it was originally

[symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread Psychonetics
netbeans On Aug 4, 12:22 am, "Julian Reyes Escrigas" wrote: > Hi > > I need help for find a new editor for PHP, I'm using Netbeans 6.9 but I > don't know for what is slow, always start very well but when the project > grows it's turns unstable > > I need only 3 characteristics > > 1.       Faster

Re: [symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread Constantin DRABO
Hi , Netbeans is more intuitive and much of commands are easy to be run . Best , 2010/8/7 Mauricio Rivera Schneider > I'm currently using netbeans. I agree that java can be slow, but imho > netbeans is the best FOSS IDE out there. > > Regards, > > Mauricio Rivera Schneider > Web Design & Deve

Re: [symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread Mauricio Rivera Schneider
I'm currently using netbeans. I agree that java can be slow, but imho netbeans is the best FOSS IDE out there. Regards, Mauricio Rivera Schneider Web Design & Development http://www.mauriciorivera.cl Contact Me Facebook Twitter

Re: [symfony-users] load L18N helper in form class : how to ?

2010-08-07 Thread Gustavo Adrian
use ProjectConfiguration::getActive() instead of sfProjectConfiguration. Although if you're going to use the i18n helper on many forms (like me), you could put that statement on yourAppnameConfiguration.class.php on the 'config' dir of the app: // apps/backend/config/backendConfiguration.class.ph

[symfony-users] Re: Can't configure Web Server

2010-08-07 Thread Pozzato
Thank you Gábor, I did it and run ok. Bye. Pozzato (Brazil) On 19 jul, 17:53, Gábor Fási wrote: > Actually, the 1.4 version has changed it towww.jobeet.com.localhost. > Go to the link you gave, and scroll a bit down to the "Configure a > dedicated Domain Name" box (it has no tag). > > > > On Mo

[symfony-users] Re: a good IDE for Symfony

2010-08-07 Thread xplo
I think latest eclipse pdt is a little faster than netbean for big project but i still use netbeans ~ There s also a new netbeans version 6.9.1 supposed faster that was just released but i didnt try it yet... On Aug 6, 4:45 pm, Alexandru-Emil Lupu wrote: > i use : > > vi, Netbeans, nano or mcedit

[symfony-users] The Task Configure:Database doesn't run

2010-08-07 Thread Mspozzato
Hi, When I try to run the task `configure:database` system refuses it with error message 'Task is not defined', but it's on the Symfony Tutorial, Day 3:The Data Model at http://www.symfony-project.org/jobeet/1_4/Doctrine/en/03. What's the problem please? -- If you want to report a vulnerability

[symfony-users] Problem to got name of category on my project!!

2010-08-07 Thread MariusNG
Hello!! Symfony World!! I have problem on my project at day 3 went i generate my project i don't have "Category name" but "Category ID" how will i do to get it? i'm new in symfony! i use it to build a big project and i use jobeet like my project reference!! i need your help! thank you and sorry abo

[symfony-users] load L18N helper in form class : how to ?

2010-08-07 Thread Tristan
Hello i know that it's not recommended to do so, but it's the quickest way i know. I tryed public function configure() { sfProjectConfiguration::getActive()->loadHelpers(array('I18N')); $this->widgetSchema->setLabels(array( 'categ

Re: [symfony-users] Re: Urls in Javascript

2010-08-07 Thread Stéphane
It shouldnt break. You should do this: Create a route to reach your module/action (/apps/$app/config/routing.yml, check doc). Then in a template, write something like: window.myactionurl = ""; alert(window.myactionurl); $.post(window.myactionurl, null, function(

[symfony-users] Re: Urls in Javascript

2010-08-07 Thread Phennim
Get the url from the DOM using js. $('a.do-ajax').click(function(){ var url = $(this).attr('href'); $.post(url, function(data){ //do stuff }); }); On Aug 7, 11:11 am, "Sebastien Armand [Pink]" wrote: > Hello everyone, > > I was wondering how to get an environment independent url in j

[symfony-users] Re: Symfony Installation in Godaddy hosting

2010-08-07 Thread Md Mostafizur Rahman milon
Hi Gustavo yah, i have check its show php 5 vesion thanks On Aug 6, 5:37 pm, Gustavo Adrian wrote: > Check in the hosting panel. There has to be an option to choose between PHP > version 4 and 5. > > On Fri, Aug 6, 2010 at 2:08 AM, Md Mostafizur Rahman milon > > wrote: > > dear Symfony user >

[symfony-users] Urls in Javascript

2010-08-07 Thread Sebastien Armand [Pink]
Hello everyone, I was wondering how to get an environment independent url in javascript files. My js needs to connect to the server and get some JSON data and update a form on certain actions. But putting that actions url in the js directly breaks everything when you change environment... I might