[symfony-users] Interface hardware device

2011-04-07 Thread Srivatsa Prasad
Hi, I have a RFID R/W that will be plugged in at the client end, i need to R/W data into the RFID , i know browser cannot interact with the hardware device, any idea on how to take it further. -- Thanks Regards Srivatsa -- If you want to report a vulnerability issue on symfony, please send

[symfony-users] Pagination using routing

2011-03-28 Thread Srivatsa Prasad
Hi All, In my routing i have used setting_master: url: /setting/master class: sfPropelRoute options: { model: master, type: list } param: { module: setting, action: index } requirements: { sf_method: get } and in my action i am using public function executeIndex(sfWebRequest

Re: [symfony-users] Re: Pagination using routing

2011-03-28 Thread Srivatsa Prasad
with the pager as far as I know. Thanks! On Mar 28, 4:04 am, Srivatsa Prasad srivatsa6...@gmail.com wrote: Hi All, In my routing i have used setting_master: url: /setting/master class: sfPropelRoute options: { model: master, type: list } param: { module: setting, action

[symfony-users] Pagination using routing

2011-03-26 Thread Srivatsa Prasad
Hi All, In my routing i have used setting_master: url: /setting/master class: sfPropelRoute options: { model: master, type: list } param: { module: setting, action: index } requirements: { sf_method: get } and in my action i am using public function executeIndex(sfWebRequest

Re: [symfony-users] Problem while trying the 4 day of jobeet project

2011-02-13 Thread Srivatsa Prasad
Hi, Post your schema, i will have a look and try to help u . On Sun, Feb 13, 2011 at 3:10 AM, rahhal mahassen rahhal.mahas...@gmail.comwrote: Hello, I'm a new bee using symfony.I tried to do the fourth day of the jobeet project.I have this error that i can't solve it(it's shown above). My

[symfony-users] Get form fields from embedded form

2011-01-31 Thread Srivatsa Prasad
Hi All, I am using symfony 1.4, I have a class named Question and another class named OptionCollection, The OptionCollection form is a derived class of question. This form has collection of embedded form of class Options Now i need a single form that has Question and OptionCollection so i have

[symfony-users] Get all logged in users

2011-01-17 Thread Srivatsa Prasad
Hi All, I am using symfony 1.4 and doctrine. I am trying to build a small chat app so, I want to know who are all the user of my app logged into to at now. -- Thanks Regards Srivatsa -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

Re: [symfony-users] Get all logged in users

2011-01-17 Thread Srivatsa Prasad
. The downside is that his session will never timeout on its own (as each little ajax request will reset the internal PHP session timer) and you will have to build your own session timeout mechanism from scratch to force a logout when it does timeout. On Mon, Jan 17, 2011 at 1:49 PM, Srivatsa Prasad

Re: [symfony-users] Get all logged in users

2011-01-17 Thread Srivatsa Prasad
active time is not being changed. My friends browser gets the list of people online and sees that my last active time is now longer than a minute ago therefore I must be offline. On Tue, Jan 18, 2011 at 8:19 AM, Srivatsa Prasad srivatsa6...@gmail.comwrote: Hi, Thank you for the response