Re: [symfony-users] Symfony 2.0 or Symfony 1.4

2011-06-05 Thread Parijat Kalia
, so you have to keep an eye on the changelog, official docs are not always in sync with changes. 1.4 rocks. 2.0 rocks a lot more. Evolution. Nobody wants to live in the 'legacy' era. Keep walking ;) 2011/6/4 Parijat Kalia kaliapari...@gmail.com Hi guys, Very curious to know if people

[symfony-users] Multiple projects, changing the httpd.conf file

2011-06-04 Thread Parijat Kalia
Hello! Coming back onto the symfony mailing list after long. I now have a new project that I am undertaking and running into a slight few niggles with seeing it over my localhost. Let me explain: 1. My original project exists here : c:\dev\sfproject. I introduce a new project in

[symfony-users] Re: Multiple projects, changing the httpd.conf file

2011-06-04 Thread Parijat Kalia
, Jun 4, 2011 at 7:16 PM, Parijat Kalia kaliapari...@gmail.comwrote: Hello! Coming back onto the symfony mailing list after long. I now have a new project that I am undertaking and running into a slight few niggles with seeing it over my localhost. Let me explain: 1. My original project

Re: [symfony-users] Multiple projects, changing the httpd.conf file

2011-06-04 Thread Parijat Kalia
Then when you access anything under it you should put the subdirectory: http://localhost:8080/sf/frontend_dev.php Instead of going to root directory like you did. Otherwise you won't get to the files under some_directory. Regards, Haris On 5 June 2011 12:16, Parijat Kalia kaliapari...@gmail.com

[symfony-users] Symfony 2.0 or Symfony 1.4

2011-06-04 Thread Parijat Kalia
Hi guys, Very curious to know if people have migrated to Symfony 2.0 or are still dependent on Symfony 1.4. Would love to get everybody's knowledge and ideas on this. Been proficient at Symfony 1.2.9 but now that 2.0 has been rolled out, I am wondering if it is a good idea to pursue a side

[symfony-users] Form widgets

2011-02-23 Thread Parijat Kalia
lib folder, P.S: I have also carried out the same experiment with the module lib folder, only to get similar results). Anybody with any leads on what I am missing out here? Thanks! Parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

[symfony-users] Javascript onLoad event in a symfony context.

2010-11-09 Thread Parijat Kalia
Hey people, I am trying to have an onLoad event in one of my webpages. But as we know, the body tag appears in the layout and not the template pages. So I am unable to understand how this can be done in symfony. If this is a little out of context, I am sorry, but it's typically straight forward.

[symfony-users] Re: Javascript onLoad event in a symfony context.

2010-11-09 Thread Parijat Kalia
, because the page rendered itself as per the CSS style that is assigned to the Body tag. So I am assuming it simply included the onload event into the existing body tag. Anybody want to shed light on this? On Tue, Nov 9, 2010 at 3:34 PM, Parijat Kalia kaliapari...@gmail.comwrote: Hey people, I am

Re: [symfony-users] Re: Textarea onclick event?

2010-11-03 Thread Parijat Kalia
sir. On Wed, Nov 3, 2010 at 08:42, Eno symb...@gmail.com wrote: On Tue, 2 Nov 2010, Parijat Kalia wrote: Oh guys, please chill out, none of that was for either of you, it was for Mr.Eno, because he typically comes up with smart ass sentences like those way too often. I haven't

[symfony-users] 1 action , 2 templates

2010-11-03 Thread Parijat Kalia
Hey guys, I have 2 very identical templates which have only a minor difference to them. Their action is exactly the same. So instead of retyping code or wasting precious space (LOL), here is what my genius conjours: private function privateAction() { // do some amazing coding } public function

Re: [symfony-users] Re: Textarea onclick event?

2010-11-02 Thread Parijat Kalia
Oh guys, please chill out, none of that was for either of you, it was for Mr.Eno, because he typically comes up with smart ass sentences like those way too often. For both Alex and Gareth, I am grateful for that advice. Thanks a ton! And yes, the issue that I was dealing with is Javascript,

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
data- attributes to hook up unobtrusive javascript calls to elements.. its quite interesting. On Mon, Nov 1, 2010 at 12:17, Massimiliano Arione garak...@gmail.comwrote: On 31 Ott, 19:44, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys,r unning into a silly doubt that should so not happen

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
, 'size')) // HERE it does with the size stuff. { list($options['cols'], $options['rows']) = explode('x', $size, 2); } } Word! On Mon, Nov 1, 2010 at 13:45, Parijat Kalia kaliapari...@gmail.comwrote: Doesn't really answer my question. I have used several javascripts in the format

Re: [symfony-users] Re: Textarea onclick event?

2010-11-01 Thread Parijat Kalia
Yes smart ass, I am 2 lazy about it On Mon, Nov 1, 2010 at 7:43 PM, Eno symb...@gmail.com wrote: On Mon, 1 Nov 2010, Parijat Kalia wrote: Doesn't really answer my question. I have used several javascripts in the format : array('onclick'='javascript:alert(yo)')...the alert is just

[symfony-users] Textarea onclick event?

2010-10-31 Thread Parijat Kalia
Hey guys,r unning into a silly doubt that should so not happen at all! I have a textarea tag, ?php echo textarea_tag('hint_box','','size=70x4', array('onclick'='javascript:alert(yo) ')) ;? and the onclick event is failing to render itself in the HTML tag. Any pointers what I am doing wrong

[symfony-users] SFPropelPager

2010-10-25 Thread Parijat Kalia
Hey guys, running into a cheesy error with sf propel pager... as we know... we can carry out pagination as follows: $pager = new SFPropelPager('Articles', 5); My pagination is fine, what's bugging me is the 2nd argument of SFPropelPager, which is the amount of data that can be seen across a

[symfony-users] Ajax tips in Symfony?

2010-10-25 Thread Parijat Kalia
Hey people... Sorry if this email sounds hurried up, but I am hurried up! So I have a page view where I have a comments feature. So users can comment upon the data they preview on the page. It is offcourse, a post operation, but I would like the comments to appear simultaneously as I implement

[symfony-users] criteria::notlike

2010-10-25 Thread Parijat Kalia
are they causing any background errors in the action within which they are called. Yet they always yield the 'likes' query in the results. Not sure what I am doing wrong here, would anybody like to point out any errors? Regards, Parijat Kalia -- If you want to report a vulnerability issue on symfony

Re: [symfony-users] Re: SFPropelPager

2010-10-25 Thread Parijat Kalia
at 10:46 AM, Richtermeister nex...@gmail.com wrote: Hey there, without knowing exactly what your issue is, if you're using Propel15 (as you could and should ;) you can just use $query - paginate($page, $per_page); and that works guaranteed. Daniel On Oct 24, 11:05 pm, Parijat Kalia kaliapari

[symfony-users] $_GET['variable'] after post

2010-10-18 Thread Parijat Kalia
Hello people... Not sure I am grasping this here, but it is php related and not HTML related. I have a web template, that retrieves a parameter from the URL, essentially, it goes something like this... module/phpPage?qId=138; based on this id, certain SQL queries are executed in the action

Re: [symfony-users] Re: Multiple submit buttons/Multiple forms

2010-10-16 Thread Parijat Kalia
')) { // additionally do that } } That's how I saw it in the symfony code (namely in the admin generator). Hope that helps, RAPHAEL On 13 Okt., 23:32, Parijat Kalia kaliapari...@gmail.com wrote: tHANKS Gareth!!! On Wed, Oct 13, 2010 at 12:08 AM, Gareth McCumskey gmccums...@gmail.com wrote

[symfony-users] Multiple submit buttons/Multiple forms

2010-10-13 Thread Parijat Kalia
Hi everyone, I have a page with a form [?], and this page actually has 2 operations possible in it. So essentially multiple buttons are required, submit button 1 carries out function 1 of the form, submit button 2 carries out some other task. So essentially I think the answer is 2 forms, the way

Re: [symfony-users] Multiple submit buttons/Multiple forms

2010-10-13 Thread Parijat Kalia
to process form1 } else if ($request-hasParameter('form2')) { $form2 = new Form2(); $form2-bind($request-getParameter('form2')); //All the other code here to process form2 } } Hope that helps :) On Wed, Oct 13, 2010 at 8:37 AM, Parijat Kalia kaliapari...@gmail.comwrote: Hi

Re: [symfony-users] link_to_function

2010-08-17 Thread Parijat Kalia
to use the option array('query_string' = array('subaction' = 'bla')) notation as GET parameters are not permissible in the URL part of the link_to function (this is explained in the API documentation). On 17.08.2010, at 01:30, Parijat Kalia wrote: Hey guys, We know that the link_to_function

Re: [symfony-users] PHP related,Symfony unrelated

2010-08-16 Thread Parijat Kalia
symb...@gmail.com wrote: On Mon, 9 Aug 2010, Parijat Kalia wrote: I have a table, with about 10 columns, offcourse for displaying my data. I know, there are several sites that let you click on the header of these table rows, and switch the display data accordingly. for instance, if one

[symfony-users] link_to_function

2010-08-16 Thread Parijat Kalia
of these link_to_function tags are meant to trigger separate events, that run only upon postback. Regards, Parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google

[symfony-users] PHP related,Symfony unrelated

2010-08-09 Thread Parijat Kalia
, only those questions of type question 2. I am a little short on ideas how this can be implemented, anybody got any clues on how this can be done? All responses greatly appreciated. Regards, Parijat kalia -- If you want to report a vulnerability issue on symfony, please send it to security

[symfony-users] Symfony form tags in javascript?

2010-08-08 Thread Parijat Kalia
Hey, So it's quite straight forward when I need to generate HTML input tags (textboxes and checkboxes etc) dynamically using javascript. All that needs to be done is retrieve the amount of input tags that needs to be generaated and then in a for loop in a javascript, they are simply called...

[symfony-users] App generator

2010-06-14 Thread Parijat Kalia
Hey, I am trying to generate an app on my symfony project...as usual...I have a frontend, and the one I am trying to kickstart is backend. here is the command I am putting in..(following the symfony jobeet tutorial, Day 12: the admin generator) php symfony generate:app --escaping strategy=on

Re: [symfony-users] App generator

2010-06-14 Thread Parijat Kalia
yes it does... it is the same folder as my other app (frontend_dev.php) (C:\dev\sfproject\apps), an upon ls frontend backend It is in the same folder, and it has all the necessary folders an app has, that is modules, config, libs, templates...etc etc -- If you want to report a vulnerability

Re: [symfony-users] App generator

2010-06-14 Thread Parijat Kalia
...but that did not help either... Anyone else with any leads on this? On Mon, Jun 14, 2010 at 5:03 PM, Parijat Kalia kaliapari...@gmail.comwrote: yes it does... it is the same folder as my other app (frontend_dev.php) (C:\dev\sfproject\apps), an upon ls frontend backend It is in the same folder

Re: [symfony-users] App generator

2010-06-14 Thread Parijat Kalia
because there is no corresponding applicationName_dev.php that is being generated in the web folder. The applications, however, with all the respective folders are being generated. Any leads? On Mon, Jun 14, 2010 at 6:16 PM, Parijat Kalia kaliapari...@gmail.comwrote: How does the help command

Re: [symfony-users] App generator

2010-06-14 Thread Parijat Kalia
better alternatives, feel free to share! On Mon, Jun 14, 2010 at 6:28 PM, Parijat Kalia kaliapari...@gmail.comwrote: I probed a little further, and created a bunch of test applications, I noticed, that in my web/ folder, unlike a frontend_dev.php, there does not exist an equivalent

Re: [symfony-users] App generator

2010-06-14 Thread Parijat Kalia
...@gmail.com wrote: On Mon, 14 Jun 2010, Parijat Kalia wrote: So on basis of my probing, the everytime u create a new application, after u have created ur inital application (presumably frontend_dev.php), go to the web folder...u shud notice an existing frontend_dev.php which was created

[symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
hey everyone, So I have a couple of pages, dealing with pagination. Lets' call this 'summary of records' and 'detailed records' Summary of records, is essentially a tabulated list of records belonging to *several students*. detailed records, is essentially a detailed record of data belonging to a

Re: [symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
What's wrong with using $_GET, i have used it elsewhere with little trouble, also why would the query string format be wrong? Because it is the same format I follow everywhere else. Thanks! On Wed, Jun 9, 2010 at 9:12 PM, Eno symb...@gmail.com wrote: On Wed, 9 Jun 2010, Parijat Kalia wrote

Re: [symfony-users] Re: Camel Case

2010-06-09 Thread Parijat Kalia
If your db was hand written by you and u are simply building the schema from it instead of handwriting it, I suppose it will handle it, give it a shot On Wed, Jun 9, 2010 at 6:49 AM, Davide Borsatto lloy...@gmail.com wrote: With Propel (but I think with Doctrine too) tables/columns can have

Re: [symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
in the $this-getPager() function, not in the code you showed us. On Thu, Jun 10, 2010 at 06:41, Parijat Kalia kaliapari...@gmail.com wrote: What's wrong with using $_GET, i have used it elsewhere with little trouble, also why would the query string format be wrong? Because it is the same

Re: [symfony-users] vjCommentPlugin Spam

2010-05-30 Thread Parijat Kalia
lol! thanks for the knowledge! On Sun, May 30, 2010 at 2:54 AM, comb sa...@gmx.net wrote: Hi! I'm using the vjCommentPlugin for a page that was deployed some weeks ago. The spam is massive in this plugin .. what may one do to prevent spam? comb -- If you want to report a vulnerability

Re: [symfony-users] symfony criteri

2010-05-29 Thread Parijat Kalia
2010, Parijat Kalia wrote: $c= new Criteria() $c-add(QuestionsPeer::USERNAME,'ali'); $results = QuestionsPeer::doSelect($c); Now $results contains all the data of the questions table, where I am looking only for the question column, what do I need to add to the above query to make

[symfony-users] symfony criteri

2010-05-28 Thread Parijat Kalia
Howdy !!! I am building queries...the query I am trying to do is SELECT question FROM questions where username like 'ali' now the result of this is clearly all the data in the question column of my questions table, right? so to translate this into symfony, I do this $c= new Criteria()

[symfony-users] another ajax doubt

2010-05-27 Thread Parijat Kalia
So guys, sorry for deviating this off topic, but it is ajax based and web based, so I suppose it is an integral part of the development. anyways, I have a drop down, consisting of a set of numbers, depending on the number the user chooses, I want to replicate that many textfields on my page.

[symfony-users] Ajax based doubt

2010-05-26 Thread Parijat Kalia
So I suppose this is a lil offshoot here,... but I wanted tips on the following: 1) Enabling jQuery or Prototype (which 1 is better and easier to learn) 2) Do I need to download anything off the net, or are the 2 jscript libraries inbuilt. I find several plugins for jquery, so not sure what to

[symfony-users] Some issue with pagination

2010-05-25 Thread Parijat Kalia
Hey guys, I am trying to implement pagination. My actions page has this simple query * $c = new Criteria(); $c-add(QuestionsPeer::USERNAME,$userName); $c-addSelectColumn(QuestionsPeer::QUESTION);* $pagerOp = new sfPropelPager('Questions',15); $pagerOp-setCriteria($c);

[symfony-users] Offbeat: Javascript

2010-05-14 Thread Parijat Kalia
Hey guys, Including an offbeat topic. More to do with Javascript and possibly Ajax. What I am trying to achieve is that i have two dropdown menus. Upon the choice of a user select in menu 1, the dropdown menu 2 is populated as per the choice. The menu for this choice is available in a PHP array

[symfony-users] $this-redirect vs $this-forward

2010-05-10 Thread Parijat Kalia
(login/homePage), on my user login page, to redirect users to the login page once their credentials have been verified. What would you recommend in this case, forward or redirect, or using either is no problem at all. Thanks and regards, Parijat Kalia -- If you want to report a vulnerability

[symfony-users] Good links to pagination

2010-05-10 Thread Parijat Kalia
of you have), can you please provide me a pointer to that, or resuable code? Thanks and Regards, Parijat kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups

[symfony-users] Alternate layout and a tables doubt (2 doubts in one mail!)

2010-05-10 Thread Parijat Kalia
this can be done. Anybody have a clue? Thanks and regards, Parijat kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post

Re: [symfony-users] Alternate layout and a tables doubt (2 doubts in one mail!)

2010-05-10 Thread Parijat Kalia
Thanks Eno! Any clue about the tables doubt? On Mon, May 10, 2010 at 8:58 PM, Eno symb...@gmail.com wrote: On Mon, 10 May 2010, Parijat Kalia wrote: Hey everyone, Doubt 1: Symfony layout So typically, if you need an alternate layout for a page, you simply go into the view.yml

[symfony-users] Updating databases on the city

2010-05-06 Thread Parijat Kalia
on the main DB, hence I have stayed away from em migrations, coz I don't know how to use them either ways. Thanks and regards, Parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you

Re: [symfony-users] Re: $this-getRequest()-isMethod('post')

2010-05-05 Thread Parijat Kalia
Oh I tried that...it doesn't recognize the variable at all...what i did was $request-isMethod('post')...so any clue? On Tue, May 4, 2010 at 8:51 PM, fRAnKEnSTEin shirkav...@gmail.com wrote: Hi there, If you are inside some controller action you can try $request- isMethod('post') instead

Re: Re[2]: [symfony-users] Re: $this-getRequest()-isMethod('post')

2010-05-05 Thread Parijat Kalia
One sec, can you give me the reasoning for that please? I have several pages with forms that postacross all I have this function executeSomething() { if($this-getRequest()-isMethod('post') { // post button action } } all of these seem to be working, but when I load this particular

Re: [symfony-users] $this-getRequest()-isMethod('post')

2010-05-04 Thread Parijat Kalia
, Parijat Kalia wrote: I have a webpage, where some content is loaded when the page is loaded, and the other action is performed when the submit button is hit... the code behind in the action is if($this-getRequest()-isMethod('post')) { echo hello ; // *for testing purposes

Re: [symfony-users] Undefined offset?

2010-05-03 Thread Parijat Kalia
Problem resolved...thanks for looking into it! On Mon, May 3, 2010 at 5:38 AM, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: What does your select statement look like? On Sun, May 2, 2010 at 5:43 PM, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys, I have a DB table

[symfony-users] $this-getRequest()-isMethod('post')

2010-05-03 Thread Parijat Kalia
Hey guys, I have a webpage, where some content is loaded when the page is loaded, and the other action is performed when the submit button is hit... the code behind in the action is if($this-getRequest()-isMethod('post')) { echo hello ; // *for testing purposes* } When the page

[symfony-users] Undefined offset?

2010-05-02 Thread Parijat Kalia
Hey guys, I have a DB table called configurations , that has the following columns config_id -tiny int auto_incremented and primary key admin_id varchar not null topics varchar not null languages tinyint not null courses varchar(255) not null group_id int(11) not null

Re: [symfony-users] Re: radiobutton and select values

2010-04-28 Thread Parijat Kalia
Sorry, haven't yet used the form widget framework..still stuck on good old strategies! On Tue, Apr 27, 2010 at 8:39 PM, fRAnKEnSTEin shirkav...@gmail.com wrote: hi, The problem is that i am using a form, so instead of cretaing a select_tag in the template, i use for example something like

Re: [symfony-users] Re: TIP: FOR USERS UPDATING DATABASE IN PROPEL

2010-04-28 Thread Parijat Kalia
, Parijat Kalia kaliapari...@gmail.com wrote: For the past 5 days, I have been trying to find a healthy solution to the migrations issue that we propellers tend to face. Apparently, whenever you create a new database table or make changes to an existing database table, you will make the changes

Re: [symfony-users] Doctrine: strange charset problem on saving data to MySQL database

2010-04-28 Thread Parijat Kalia
Explore html_entities for this...I'll try look ur problem in detail later On Sun, Apr 25, 2010 at 7:16 AM, Roland Cremer roland.cre...@gmail.comwrote: Hi all, I've got a strange problem on saving data to the database. i have a made a symfony-task to import a csv file and save the objects to

Re: [symfony-users] Re: migrations trouble: sfpropelmigrationslightplugin

2010-04-27 Thread Parijat Kalia
.. I am lost here...someone with experience on this... at this point it says it's never been installed anyways.? On Mon, Apr 26, 2010 at 8:35 AM, Eno symb...@gmail.com wrote: On Sun, 25 Apr 2010, Parijat Kalia wrote: I was hoping somebody would have some leads on this, but it doesn't seem

[symfony-users] TIP: FOR USERS UPDATING DATABASE IN PROPEL

2010-04-27 Thread Parijat Kalia
For the past 5 days, I have been trying to find a healthy solution to the migrations issue that we propellers tend to face. Apparently, whenever you create a new database table or make changes to an existing database table, you will make the changes/additions to the *schema.yml* and you are going

Re: [symfony-users] radiobutton and select values

2010-04-27 Thread Parijat Kalia
Here is what I do /*Code for timeLimits*/ if(isset($_SESSION['timeLimits'])) { $timeLimits = $_SESSION['timeLimits']; $i=0; $dropDownMenu = array(); $dropDownMenu['0'] = 'Configured'; foreach($timeLimits as $timeLimit) { $i++;

[symfony-users] Re: migrations trouble: sfpropelmigrationslightplugin

2010-04-25 Thread Parijat Kalia
I was hoping somebody would have some leads on this, but it doesn't seem that way. Or maybe the message wasn't delivered. I have the configuration set in settings.yml to enable the plugin. Wonder what's going wrong. Thanks! On Sat, Apr 24, 2010 at 4:42 PM, Parijat Kalia kaliapari

[symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
Step'); in my template...and I start with echo use_helper('Form') and end with /form But I can't understand what's going wrong here.any leads anyone? Thanks and regards, parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
yES, I am doing echo use_helper('Form'), is that wrong? On Sun, Apr 25, 2010 at 2:04 PM, Gábor Fási maerl...@gmail.com wrote: Do you echo a form tag as well? On Sun, Apr 25, 2010 at 22:53, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys, Here is a piece of code in my action that I

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
() helper, or call the renderFormTag() method of an sfForm instance. On Sun, Apr 25, 2010 at 23:41, Parijat Kalia kaliapari...@gmail.com wrote: yES, I am doing echo use_helper('Form'), is that wrong? On Sun, Apr 25, 2010 at 2:04 PM, Gábor Fási maerl...@gmail.com wrote: Do you echo a form tag

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
2010, Parijat Kalia wrote: Since when did that start happening...I am using 1.2.9and I have a bunch of other forms where all I do is echo use_helper('Form') and end with /form the submit button in that works perfectly fine and there is no manual form tag nor the need

Re: [symfony-users] Form not processing upon submit

2010-04-25 Thread Parijat Kalia
rESOlveD: made a big mistake...did not include the form_tag()...such stupididty thanks! On Sun, Apr 25, 2010 at 3:11 PM, Parijat Kalia kaliapari...@gmail.comwrote: Indeed this is surprising, I mean, it has to be applicable across all modules and pages right? I have one page where

[symfony-users] Strange happenings: Nothing being echoed out!

2010-04-25 Thread Parijat Kalia
! Thanks and regards, Parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com 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

[symfony-users] Re: Strange happenings: Nothing being echoed out!

2010-04-25 Thread Parijat Kalia
Corrections to the mail I just sent, it is simply not entering the if($this-getRequest()-isMethod('post')) loop On Sun, Apr 25, 2010 at 5:59 PM, Parijat Kalia kaliapari...@gmail.comwrote: Hey guys, This is slightly strange to me, I am not sure why, I have a bunch of pages in a module

[symfony-users] Functions other than executeActionXXX()

2010-04-25 Thread Parijat Kalia
= functionXX(); } Thanks and regards, parijat kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] migrations trouble: sfpropelmigrationslightplugin

2010-04-24 Thread Parijat Kalia
-migration task is not defined. The installation was fine, but it still gives the error. I am following the instructions given on this link http://www.symfony-project.org/plugins/स्फ़्रोपेलंइग्रतिओन्स्ळिघ्त्लुगिन anyone who has had prior experience with this plugin,, please sharethanks a ton! Parijat

Re: [symfony-users] Database changes

2010-04-22 Thread Parijat Kalia
iPhone On Apr 22, 2010, at 4:09 AM, Eno symb...@gmail.com wrote: On Wed, 21 Apr 2010, Parijat Kalia wrote: The one sucky part about symfony for me is how to handle database changes. I mean, if I need to go about changing db fields, then must i loose all my existing data? I am sure

[symfony-users] Database changes: sfPropelMigrationsLightPlugin

2010-04-22 Thread Parijat Kalia
/recommendations with this. Also if you have alternate ideas (not the migration to doctrine one), please let me know that, and it would be off great help! Thanks a megaton, Parijat Kalia! -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

[symfony-users] Re: Database changes: sfPropelMigrationsLightPlugin

2010-04-22 Thread Parijat Kalia
oK...this problem was resolved, and I could install, all I had to do was simply download the zip file, unzip it in the plugins directory, n then simply run the install:plugin command with the name of the plugin specified ahead of it On Thu, Apr 22, 2010 at 3:23 AM, Parijat Kalia kaliapari

[symfony-users] sfPropelMigrationsLightPlugin: Task init-migration is not defined

2010-04-22 Thread Parijat Kalia
Hello everyone, so as per the instructions for the sfPropelmigrplugin ... found here: http://www.symfony-project.org/plugins/sfPropelMigrationsLightPlugin I carry out the following command php symfony init-migration migration_test but what I get is Task init-migration is not defined. Why

Re: [symfony-users] Re: Search in text files.

2010-04-22 Thread Parijat Kalia
This very same problem happens to me on the SFpropelMigrationsLightsPLugin Task init-migration not defined...is there a prior step to that? On Thu, Apr 22, 2010 at 3:01 AM, apm korja...@gmail.com wrote: ./symfony plugin:list Installed plugins: symfony1.4.4-beta

[symfony-users] Database changes

2010-04-21 Thread Parijat Kalia
changes happen all the time. Hints and suggestions greatly appreciated! parijat kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group

Re: [symfony-users] Re: Database changes

2010-04-21 Thread Parijat Kalia
that is asking the same thing over and over... http://groups.google.com/group/symfony-users/browse_thread/thread/6f50773c4d21d00/0b0195e283f7cacb?lnk=gstq=Parijat+Kalia#0b0195e283f7cacb On Apr 22, 10:09 am, Eno symb...@gmail.com wrote: On Wed, 21 Apr 2010, Parijat Kalia wrote: The one sucky

[symfony-users] Losing data upon creating new tables

2010-03-24 Thread Parijat Kalia
data? OMG! I am sure we have a solution for this. Please can anyone guide me. I'll appreciate all responses Parijat Kalia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed

Re: [symfony-users] Losing data upon creating new tables

2010-03-24 Thread Parijat Kalia
Migrations? I haven't yet heard of them. Does the book cover it by any chance? Please give me some pointers on where I can learn more about migrations. That would be awesome. Thanks! On Wed, Mar 24, 2010 at 11:47 AM, Eno symb...@gmail.com wrote: On Tue, 23 Mar 2010, Parijat Kalia wrote: I

[symfony-users] Validations

2010-03-03 Thread Parijat Kalia
Hey guys, whatever happened to the good old validateXXX() methods and the validate.yaml files symfony had. I have a validateXXX() for a couple of my actions but they don't run. Not only that, when I run modules, the only thing that get's generated when a generate:module function is called is

Re: [symfony-users] Validations

2010-03-03 Thread Parijat Kalia
. I believe you can still use them with the sfCompat10Plugin, but you'd better use the form fw. On Wed, Mar 3, 2010 at 23:00, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys, whatever happened to the good old validateXXX() methods and the validate.yaml files symfony had. I have

Re: [symfony-users] frontend_dev.php dissapears

2010-02-28 Thread Parijat Kalia
an incorrect url echoed there. On Fri, Feb 26, 2010 at 09:34, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys, while traversing to one of the pages on my website, the frontend_dev.php seems to disappear. It does exist when I traverse other pages, but the moment I traverse to this specific

[symfony-users] textarea is unclickable

2010-02-28 Thread Parijat Kalia
Hey fellas! I have a textarea on my page. Now it can be resized using javascript, so basically it has some javascript tampering it all the time. So if it has some default text loaded into it, then ideally if I click somewhere on the textarea, the mouse cursor should appear at that point.

[symfony-users] frontend_dev.php dissapears

2010-02-26 Thread Parijat Kalia
Hey guys, while traversing to one of the pages on my website, the frontend_dev.php seems to disappear. It does exist when I traverse other pages, but the moment I traverse to this specific page, it disappears, and from thereon, if I traverse to any other page, it will not come back. Off course,

[symfony-users] default selection value

2010-02-08 Thread Parijat Kalia
Hey guys, Wondering how to specify a default value for select tags in symfony say for e.g i have a select_tag with options 1,2,3,4,5,6,7,and I want 4 to be the default selected value, how can I get this done? -- You received this message because you are subscribed to the Google Groups

[symfony-users] Module folders

2010-01-24 Thread Parijat Kalia
Hey guys, I am working on a symfony project for sometime now. I have a few modules in my project just like any other project does. However, it does not seem to have all the necessary folders inside of it generated, i.e, my modules contain* only the actions and the templates folder*. It does *not

[symfony-users] Module folders

2010-01-24 Thread Parijat Kalia
Hey guys, I am working on a symfony project for sometime now. I have a few modules in my project just like any other project does. However, it does not seem to have all the necessary folders inside of it generated, i.e, my modules contain* only the actions and the templates folder*. It does *not

Re: [symfony-users] Post comments

2010-01-14 Thread Parijat Kalia
Can you please explain this in detail, sorry but the statement is a little ambiguous to me! On Wed, Jan 13, 2010 at 7:05 PM, blissdrop andrei@gmail.com wrote: How can I add post_id invisible field to comment form? -- You received this message because you are subscribed to the Google

[symfony-users] Offbeat: open source vs closed source technologies

2010-01-08 Thread Parijat Kalia
Hey guys, Just lighting up everyone's day, would like to get as many as possible arguments on this. Me and a friend of mine, had a debate last evening, about open source(PHP) vs closed source technologies(DOT NET).He raised the following points: 1. He feels that open source is not reliable

Re: [symfony-users] Offbeat: open source vs closed source technologies

2010-01-08 Thread Parijat Kalia
Wow, that's a lot of interesting insight. I like the DIY for a bug in open source vs a dead end to a bug in closed source as a really solid example. I think that helps open source win vs closed source. Although I do believe it is an extreme case. Does anyone have more insights to offer? On Fri,

Re: [symfony-users] Is netbeans compatible with symfony

2010-01-05 Thread Parijat Kalia
There was a thread earlier which discussed symfony plugins for netbeans, it's been discussed this week itself, you should do a little search for it. On Tue, Jan 5, 2010 at 12:57 PM, lucky givin.chris...@gmail.com wrote: hi guys i'm new to symfony till now i was working without using ide now i

Re: [symfony-users] Re: Migrating to Symfony from cakePHP

2010-01-01 Thread Parijat Kalia
Well, in my opinion if the re building time is not very huge and you have finance to budget it, it can be done. Mike has a point that it is tedious, but generally cakePHP is not as robust as Symfony. Symfony is much useful for build large scale applications. You could do well by asking your

Re: [symfony-users] error in jobeet day9

2009-12-29 Thread Parijat Kalia
Your way of pointing the issue is broad, going through the entire jobeet tutorial is difficult for anyone...but from the looks of it...it says that there is an unknown column slug in your database table field list. Check across your schema.yml file, where the database table field list is

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

2009-12-28 Thread Parijat Kalia
hmm..what is your dev environment Operating system, and find out which is for your production environment. I had a similar problem, where the forms would not execute in the production environment but would execute itself in the dev environment just fine. The issue was that my production was linux

Re: [symfony-users] image path

2009-12-27 Thread Parijat Kalia
from what I recollect, I only make use of a relative path such as : /images/image_name.gif Try it and let us know if it works for ya! On Sun, Dec 27, 2009 at 6:15 PM, mirfan m.irfa...@gmail.com wrote: hi, is that not awkward that i have to write full path of the image that i wand to display

Re: [symfony-users] 1 server, 1 client host, 2 clients

2009-12-27 Thread Parijat Kalia
Why do you want Symfony to differentiate between them? Can you illustrate this with an example? On Sun, Dec 27, 2009 at 6:44 AM, Tennis Smith ten...@tripit.com wrote: Hi, How can symfony differentiate between 2 browsers talking to the same app from the same client host? -- Tks, -T --

Re: [symfony-users] How to delete uploaded images when deleting records

2009-12-23 Thread Parijat Kalia
I did not go through your code, how are you storing images in the db, using file paths? On Wed, Dec 23, 2009 at 7:54 AM, ilcaduceo ilcadu...@gmail.com wrote: Hi all, I've a simple form with sfFormWidgetInputFileEditable for simple upload of photos: $this-validatorSchema['fotoPrincipale'] =

Re: [symfony-users] How to configure a web server without changing the httpd.conf?

2009-12-19 Thread Parijat Kalia
What kind of shared hosting are you on. There are some that assist symfony based websites, A2 hosting, ServerGrove, Dream hosting, go daddy...each of them has a wiki of it's own explaining the hosting...u can't really configure the web server httpd.conf, on a shared hosting. although, if possible,

  1   2   >