[symfony-users] Help

2010-01-04 Thread DEEPAK BHATIA
Hi, I want to open a certain hyperlink to the desired div. I mean I don't want refresh the complate page with the hyperlink. The below one is not working. ?php echo link_to_remote('HCL OMS', array( 'update' = 'feedback', 'url' = 'http://10.0.0.4/QAPortal/', 'class' = 'yuimenuitemlabel')) ?

Re: [symfony-users] Re: change name of checkbox without change id

2009-12-30 Thread DEEPAK BHATIA
wrote: I still have: input id=test type=checkbox name=test/ input id=test type=checkbox name=test/ input id=test type=checkbox name=test/ So I can't do that what I want in Symfony forms and I must use normal forms ? :O On 30 Gru, 08:59, DEEPAK BHATIA toreachdee...@gmail.com wrote: Try

Re: [symfony-users] Re: change name of checkbox without change id

2009-12-30 Thread DEEPAK BHATIA
at 7:09 PM, dziobacz aaabbbcccda...@gmail.com wrote: Now they have different names but they should have the same names and different ID: input id=test1 type=checkbox name=test1/ input id=test2 type=checkbox name=test2/ input id=test2 type=checkbox name=test3/ On 30 Gru, 14:34, DEEPAK BHATIA

Re: [symfony-users] Re: change name of checkbox without change id

2009-12-30 Thread DEEPAK BHATIA
: input id=test1 type=checkbox name=test1/ input id=test2 type=checkbox name=test2/ input id=test2 type=checkbox name=test3/ On 30 Gru, 14:34, DEEPAK BHATIA toreachdee...@gmail.com wrote: Try this $m = 1; foreach ($this-getOption('param') as $i) { $temp = 'test'.$m

Re: [symfony-users] Re: change name of checkbox without change id

2009-12-30 Thread DEEPAK BHATIA
...@gmail.com wrote: heh - again wrong :) input id=temp1 type=checkbox name=test1/ input id=temp2 type=checkbox name=test2/ input id=temp3 type=checkbox name=test3/ On 30 Gru, 14:42, DEEPAK BHATIA toreachdee...@gmail.com wrote: Try this $m = 1; foreach ($this-getOption('param') as $i

Re: [symfony-users] change name of checkbox without change id

2009-12-29 Thread DEEPAK BHATIA
Try this foreach ($this-getOption('param') as $i) { $temp = 'test'.$i; $this-widgetSchema['comment'.$i['id']] = new sfWidgetFormInputCheckbox(array(), array('name' = $temp)); } On Wed, Dec 30, 2009 at 12:31 PM, dziobacz aaabbbcccda...@gmail.com wrote: Is it possible to change

Re: [symfony-users] approve comments clicking on checkboxes using AJAX - should I use Symfony forms ?

2009-12-28 Thread DEEPAK BHATIA
I generally use remote function for the same. ?php echo checkbox_tag('selectdate', $currentdate, array('rich' = true, 'onchange'= remote_function(array('update' = 'common_area','url' = 'home/homeselectdate','script' = true,'with'='id='+this.value; ? ?php echo checkbox_tag('option_a', 'yes',

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

2009-12-27 Thread DEEPAK BHATIA
Hi, You can use javascript to detect the browser on the client side and send browser specific variable to the server to determine the browser type and take related action. Regards Deepak On Sun, Dec 27, 2009 at 7:03 AM, Fahmi Adib fahmi.au...@gmail.com wrote: i think its not symfony problem,

Re: [symfony-users] Off topic

2009-12-24 Thread DEEPAK BHATIA
---Wishing A Grand Christmas and Marvellous Year 2010- On Thu, Dec 24, 2009 at 4:48 PM, Alexandru-Emil Lupu gang.al...@gmail.comwrote: I wish you a Merry Christmas! And a Happy New Year! sent via htc magic -- You received this message because you are subscribed to the Google Groups

Re: [symfony-users] Open the Word Document/Excel Document in Browser rather than download

2009-12-21 Thread DEEPAK BHATIA
, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi, The below action opens the excel document in the Microsoft Excel. But I want to open this in Browser. Please help. public function executeSamplexls() { $filename='sampletemplate.xls'; $filename = '/opt/lampp/htdocs/wbrt/web

Re: [symfony-users] Question about links using link_to and CSS rules

2009-12-21 Thread DEEPAK BHATIA
link_to is not an HTML tag, please read CSS carefully. On Tue, Dec 22, 2009 at 12:40 AM, tirengarfio tirengar...@gmail.com wrote: Hi, I have created a menu using link_to. I want define a CSS rule for these links. I expected it works writing something like this: #menu link_to { } But

Re: [symfony-users] Question about links using link_to and CSS rules

2009-12-21 Thread DEEPAK BHATIA
.* On Tue, Dec 22, 2009 at 10:53 AM, DEEPAK BHATIA toreachdee...@gmail.comwrote: link_to is not an HTML tag, please read CSS carefully. On Tue, Dec 22, 2009 at 12:40 AM, tirengarfio tirengar...@gmail.comwrote: Hi, I have created a menu using link_to. I want define a CSS rule

Re: [symfony-users] Re: Question about link_to_remote: 'complete' option

2009-12-17 Thread DEEPAK BHATIA
Yes 'complete' actions must use the Javascript API provided by Prototype JS. Regards Deepak Bhatia On Thu, Dec 17, 2009 at 7:00 PM, tirengarfio tirengar...@gmail.com wrote: I just want to add that it only works using the prototype function (toggleClassName()), not with this other options

Re: [symfony-users] Question about link_to_remote: 'complete' option

2009-12-16 Thread DEEPAK BHATIA
Try this 'complete' = document.getElementById('message_1').className('read_message'), On Mon, Dec 14, 2009 at 5:38 PM, tirengarfio tirengar...@gmail.com wrote: Hi, i want to change the class of a div after clicking a link. In the same time i would like to execute a symfony action. For

Re: [symfony-users] Question about link_to_remote: 'complete' option

2009-12-16 Thread DEEPAK BHATIA
Try this way... ?php echo link_to_remote('Refresh the letter', array( 'url' = 'publishing/refresh', 'complete' = 'updateclass()' )) ? ?php echo javascript_tag( function updateclass() { document.getElementById('message_1').className('read_message'); } ) ? On Mon, Dec 14, 2009 at 5:38 PM,

Re: [symfony-users] Re: Question about link_to_remote: 'complete' option

2009-12-16 Thread DEEPAK BHATIA
try putting alert(Test) in front of it. On Wed, Dec 16, 2009 at 6:40 PM, tirengarfio tirengar...@gmail.com wrote: Thanks Deepak, but it didn't work.. Javi On Dec 16, 1:42 pm, DEEPAK BHATIA toreachdee...@gmail.com wrote: Try this 'complete' = document.getElementById('message_1

Re: [symfony-users] Re: Question about link_to_remote: 'complete' option

2009-12-16 Thread DEEPAK BHATIA
is not showed after clicking on the link. Javi On Dec 16, 3:33 pm, DEEPAK BHATIA toreachdee...@gmail.com wrote: try putting alert(Test) in front of it. On Wed, Dec 16, 2009 at 6:40 PM, tirengarfio tirengar...@gmail.com wrote: Thanks Deepak, but it didn't work.. Javi On Dec 16

Re: [symfony-users] Symfony developer per hour salary

2009-12-14 Thread DEEPAK BHATIA
When I was in US gas was $1.5 per Gallon, now it is $4 per Gallon. Other things must be costly. So a 100,000 USD per annum should be possible which comes around $50 per hour (2000 hours per annum). 2009/12/14 Łukasz Wojciechowski lukasz.wojciechow...@ngsoft.pl Eno You are right. It is obvious

[symfony-users] CSRF Attack

2009-12-14 Thread DEEPAK BHATIA
Anybody used protection against CSRF attack on their website? Thnx -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to

Re: [symfony-users] Re: Symfony developer per hour salary

2009-12-14 Thread DEEPAK BHATIA
I think a normal web developer should get at least 30-35 USD per hour. Below this, it is difficult to survive staying in US. 2009/12/15 pghoratiu pghora...@gmail.com My suggestion is to ask them to make an offer first to get an idea of the price range they are willing to offer. Realistically

Re: [symfony-users] Symfony developer per hour salary

2009-12-13 Thread DEEPAK BHATIA
May be USD 50 Per hour. 2009/12/14 Łukasz Wojciechowski lukasz.wojciechow...@ngsoft.pl Hello I'm Polish and I live in Poland. Recently I was hired by a company based in Canada to work on symfony based project. Project started when symfony 1.0 was stable version. Im responsible for: -

[symfony-users] CSRF Plugin

2009-12-13 Thread DEEPAK BHATIA
Hi, Anybody used CSRF plugin with Symfony 1.1. I installed the plugin, and enabled CSRF secret key in filters.yml. But now if I click any hyperlink, I get CSRF Attack Detected. Thanks in advance, Regards Deepak Bhatia -- You received this message because you are subscribed to the Google

[symfony-users] CSRF Module - sfException

2009-12-11 Thread DEEPAK BHATIA
Hi, I am using symfony 1.1 and installed plugin for CSRF and enabled in the filters.yml. Now if I click any link in my website, I get the following error as below. Please help. Thanks Deepak CSRF attack detected. stack trace - at **() in

Re: [symfony-users] unsubscribe

2009-12-11 Thread DEEPAK BHATIA
Please send blank mail to symfony-users+unsubscr...@googlegroups.com On Fri, Dec 11, 2009 at 3:04 PM, Verhavert Maarten maar...@hyp3.be wrote: please unsubscribe me. kind regards Verhavert Maarten -- You received this message because you are subscribed to the Google Groups symfony

Re: [symfony-users] Making Symfony Web Site Secure

2009-12-11 Thread DEEPAK BHATIA
Thanks for the reply. I am using CSRF Plugin and enable in filters.yml. Now everytime I click on any link in my web site, I get the error CSRF attack detected. How do I prevent that ? Thanks Deepak On Sat, Dec 12, 2009 at 4:20 AM, Alexandre Salomé alexandre.sal...@gmail.com wrote: An

[symfony-users] Re: CSRF Module - sfException

2009-12-11 Thread DEEPAK BHATIA
Hi, I am using symfony 1.1 and installed plugin for CSRF and enabled in the filters.yml. Now if I click any link in my website, I get the following error as below. Please help. Thanks Deepak CSRF attack detected. stack trace - at **() in *

[symfony-users] CSRF Attacks

2009-12-10 Thread DEEPAK BHATIA
Hi, We have a plugin to solve the problem of CSRF in Symfony. http://www.symfony-project.org/plugins/sfCSRFPlugin How can I check whether this is implemented correctly ? Regards Deepak Bhatia -- You received this message because you are subscribed to the Google Groups symfony users group

Re: [symfony-users] CSRF Attacks

2009-12-10 Thread DEEPAK BHATIA
1. Do I need to install the CSRF plugin or I can simply set the csrf - unique secret in settings.yml ? Thanks Deepak Bhatia On Fri, Dec 11, 2009 at 12:36 PM, Alexandru-Emil Lupu gang.al...@gmail.comwrote: By implementing functional tests? Maybe?! Sent via HTC magic On Dec 11, 2009 8

[symfony-users] Making Symfony Web Site Secure

2009-12-10 Thread DEEPAK BHATIA
Hi, In the symfony guide, two kinds of attack CSRF and XSS are discussed. Do we have some other kind of attacks which can make site vulnerable ? Regards Deepak Bhatia -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group

Re: [symfony-users] CSRF Attacks

2009-12-10 Thread DEEPAK BHATIA
Thanks I am using Symfony 1.1. I have checked XSS attack by enabling the flag in the settings.yml. But for CSRF I have to use the plugin and use filters.yml for the same. Regards Deepak Bhatia On Fri, Dec 11, 2009 at 1:16 PM, Alexandru-Emil Lupu gang.al...@gmail.comwrote: sorry i meant

[symfony-users] link_to_remote issue

2009-12-08 Thread DEEPAK BHATIA
. But if make $link = admin/projectselected?project=.$data0[$i]; the above link to remote doesn't work. Though this kind of approach work in some other places in my code. Regards Deepak Bhatia -- You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Issue with Building Schema

2009-12-07 Thread DEEPAK BHATIA
Hi, I have done the following 1. Installed Lampp on Linux 2. Installed Symfony on /opt/lampp/htdocs 3. Created a project 4. Created an application inside the project 5. Now I copy schema.yml to config directory 6. Run php symfony propel:build-model I get the following error PHP Fatal error:

Re: [symfony-users] Issue with Building Schema

2009-12-07 Thread DEEPAK BHATIA
support. Regards Deepak Bhatia On Mon, Dec 7, 2009 at 7:16 PM, Gareth McCumskey gmccums...@gmail.comwrote: You need to install XSL support for Linux. On a Debian based box it would be: sudo aptitude install php5-xsl Then restart apache: sudo /etc/init.d/apache2 restart - Original

Re: [symfony-users] database on a different server than symfony

2009-12-04 Thread DEEPAK BHATIA
Message - From: DEEPAK BHATIA toreachdee...@gmail.com To: symfony-users@googlegroups.com Sent: Friday, December 4, 2009 8:29:20 AM GMT +02:00 Harare / Pretoria Subject: [symfony-users] database on a different server than symfony Hi, I currently have symfony and database on the same

[symfony-users] database on a different server than symfony

2009-12-03 Thread DEEPAK BHATIA
Hi, I currently have symfony and database on the same server. But I want to move the database to different server. Please help me in this regard. Regards Deepak Bhatia -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group

[symfony-users] Re: How to manage big uploads

2009-10-29 Thread DEEPAK BHATIA
and memory limits during the upload process based on the file size. On Wed, Oct 28, 2009 at 5:30 PM, DEEPAK BHATIA toreachdee...@gmail.comwrote: Every web application has a limit on upload else your server could be crashed for no space On Wed, Oct 28, 2009 at 4:41 PM, Gorka glopezdeto

[symfony-users] Re: How to manage big uploads

2009-10-28 Thread DEEPAK BHATIA
Every web application has a limit on upload else your server could be crashed for no space On Wed, Oct 28, 2009 at 4:41 PM, Gorka glopezdeto...@gmail.com wrote: When it comes to video or audio files, uploading via http forms does not seem to be the best approach: timeouts, size limits,

[symfony-users] Re: Redirect with AJAX

2009-10-09 Thread DEEPAK BHATIA
Try using window.location where XmlhttpRequest comes back. On Fri, Oct 9, 2009 at 2:12 PM, HAUSa jeroen_heeft_behoefte_aan_r...@hotmail.com wrote: I submit my forms by use of a XmlHttpRequest. Now, if the form is not valid, AJAX puts the error messages in my form div. But, when the form is

[symfony-users] Re: Template in AJAX request

2009-10-05 Thread DEEPAK BHATIA
I guess use form_remote_tag with the full page as the form On Mon, Oct 5, 2009 at 11:02 PM, Richtermeister nex...@gmail.com wrote: Hey Hausa, if you replace the entire html, why not do a regular reload? The point of Ajax reloads is to load less than the whole page, otherwise there's no

[symfony-users] iCalender support in Symfony

2009-10-02 Thread DEEPAK BHATIA
A plugin for the same would do wonders for Symfony...Please share your thoughts --~--~-~--~~~---~--~~ 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] iCalender Plugin in Symfony

2009-10-01 Thread DEEPAK BHATIA
Hi, Do we have iCalender Plugin in Symfony ? Or if somebody has put iCalender support in there symfony project ? Thanks Deepak --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this

[symfony-users] Re: Hosting Multiple Projects

2009-09-28 Thread DEEPAK BHATIA
Thanks for all your replies, sorry for asking irrelavant question. On Tue, Sep 29, 2009 at 12:14 AM, Eno symb...@gmail.com wrote: On Mon, 28 Sep 2009, Gareth McCumskey wrote: Oh why bother! Just try it out! If you see performance issues by more machines then. Until then keep on adding

[symfony-users] Hosting Multiple Projects

2009-09-27 Thread DEEPAK BHATIA
Hi, It might be apache related questions, but I have a query that I have hosted to different projects on the same linux machine. What shall I do to make environment for better performance or other wise ? Regards Deepak Bhatia --~--~-~--~~~---~--~~ You received

[symfony-users] Re: Swift Mail 4.0.4

2009-09-26 Thread DEEPAK BHATIA
be part of the problem. On Sep 25, 6:27 am, DEEPAK BHATIA toreachdee...@gmail.com wrote: Sorry, I have both old version of swift mail and new version of swift mail installed. I think this is causing some confusion. On Fri, Sep 25, 2009 at 6:36 PM, DEEPAK BHATIA toreachdee...@gmail.com wrote

[symfony-users] Fatal Error in actions.class.php

2009-09-25 Thread DEEPAK BHATIA
Hi, Please find the code below === if($this-getUser()-getAttribute('allnames')) { $current_name = $this-getUser()-getAttribute('allnames'); $token = strtok($current_name, ,); $msubject = Invitation for the

[symfony-users] Re: Fatal Error in actions.class.php

2009-09-25 Thread DEEPAK BHATIA
:33 AM, DEEPAK BHATIA toreachdee...@gmail.comwrote: Hi, Please find the code below === if($this-getUser()-getAttribute('allnames')) { $current_name = $this-getUser()-getAttribute('allnames'); $token

[symfony-users] User session variables

2009-09-25 Thread DEEPAK BHATIA
. Thanks Deepak Bhatia --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to symfony

[symfony-users] Re: User session variables

2009-09-25 Thread DEEPAK BHATIA
Deepak Bhatia On Fri, Sep 25, 2009 at 4:01 PM, Gareth McCumskey gmccums...@gmail.comwrote: The session variables are not cleared automatically. If a user logs out only the symfony authenticated variable is set to false and all the session data you added to the user session is still

[symfony-users] Re: Fatal Error in actions.class.php

2009-09-25 Thread DEEPAK BHATIA
Yes, I like getting addicted to good things like xdebug with eclipse. Thanks for the suggestion. Best Regards Deepak Bhatia On Fri, Sep 25, 2009 at 4:05 PM, Kieu Anh Tuan passkey1...@gmail.comwrote: I'm not used to sf1.2 yet so that I could not tell you anything about tool_dev.php :). You

[symfony-users] web_debug in settings.yml

2009-09-25 Thread DEEPAK BHATIA
Hi, I have set the web_debug to on in settings.yml file. But when I go to some other page, the web debug bar disappears. Though the new pages are ajax templates. Please help me. Regards Deepak Bhatia --~--~-~--~~~---~--~~ You received this message because you

[symfony-users] Re: User session variables

2009-09-25 Thread DEEPAK BHATIA
variables a user can keep after timeout or logout. On Fri, Sep 25, 2009 at 12:38 PM, DEEPAK BHATIA toreachdee...@gmail.comwrote: Thanks Gareth. The point I am seeing is that in case user has logged out while the session had not expired, user can still get back the session variables he has

[symfony-users] Re: User session variables

2009-09-25 Thread DEEPAK BHATIA
a sensible default - so you'll return null which will trigger a notification that they need to record one. On Fri, 25 Sep 2009 13:11:45 +0200, DEEPAK BHATIA toreachdee...@gmail.com wrote: So, the solution is to check whether getAttribute is returning the default value which could be due to two

[symfony-users] Re: User session variables

2009-09-25 Thread DEEPAK BHATIA
not exist (i.e. = null) it returns default. On Fri, Sep 25, 2009 at 1:32 PM, DEEPAK BHATIA toreachdee...@gmail.comwrote: You mean that we use the default value when we need to else we use session variable value. But if session variable is null, it will still not return the default value

[symfony-users] Swift Mail 4.0.4

2009-09-25 Thread DEEPAK BHATIA
Hi, I have installed the swift mail in the directory /opt/lampp/htdocs/crb/lib/vendor I have done php symfony cc many time but I am getting the error *Fatal error*: Call to undefined method Swift_Message::newinstance() in * /opt/lampp/htdocs/crb/apps/tool/modules/new/actions/actions.class.php*

[symfony-users] Re: Swift Mail 4.0.4

2009-09-25 Thread DEEPAK BHATIA
Sorry, I have both old version of swift mail and new version of swift mail installed. I think this is causing some confusion. On Fri, Sep 25, 2009 at 6:36 PM, DEEPAK BHATIA toreachdee...@gmail.comwrote: Hi, I have installed the swift mail in the directory /opt/lampp/htdocs/crb/lib/vendor

[symfony-users] Re: direct link to an image

2009-09-21 Thread DEEPAK BHATIA
Was it useful ? Regards Deepak On Sun, Sep 20, 2009 at 11:32 PM, DEEPAK BHATIA toreachdee...@gmail.com wrote: image_tag('/misitio/web/images/image.jpg,array('border' = 0,'alt' = 'Home', 'title' = 'Home')); or ?php echo image_tag('myimage', 'alt=foo size=200x100') ? Given in chapter 7

[symfony-users] Re: direct link to an image

2009-09-20 Thread DEEPAK BHATIA
image_tag('/misitio/web/images/image.jpg,array('border' = 0,'alt' = 'Home', 'title' = 'Home')); or ?php echo image_tag('myimage', 'alt=foo size=200x100') ? Given in chapter 7. http://www.symfony-project.org/book/1_2/07-Inside-the-View-Layer On Sun, Sep 20, 2009 at 9:55 PM, Relez

[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

[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] PHP mail function not working

2009-09-17 Thread DEEPAK BHATIA
Hi, Did anyone used php mail function (on linux) to send email ? I have done the required settings on the php.ini ; For Unix only. You may supply arguments as well (default: sendmail -t -i). sendmail_path = /usr/sbin/sendmail -t sendmail_from = deepak.bha...@nechclst.in The sample mail file

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

2009-09-17 Thread DEEPAK BHATIA
Hi, I am trying to setup the Microsoft Outlook Calender using php mail function. I think that is not possible using swiftmailer ? But I am also using swift mailer. How do we set Fully Qualified Domain Name the /etc/hosts file. Regards Deepak Bhatia On Thu, Sep 17, 2009 at 1:04 PM, Gábor

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

2009-09-17 Thread DEEPAK BHATIA
Hi, Is it possible to send me the various settings to be done for sendmail to work ? Thanks Deepak Bhatia On Thu, Sep 17, 2009 at 1:04 PM, Gábor Fási maerl...@gmail.com wrote: Errors, etc? If properly configured, it works - just like it does for me. On the other hand, for sending mails I

[symfony-users] Sending ICS information with Swift Mail

2009-09-17 Thread DEEPAK BHATIA
Can we send the ICS information with the swift mail ? ? $to = 'toreachdee...@gmail.com' $subject = Training Registration; $message = Thank you for participating in the Technical Certification training program.\n\n; //== $headers = 'Content-Type:text/calendar; Content-Disposition:

[symfony-users] Re: Calendar plugin

2009-09-17 Thread DEEPAK BHATIA
. Our Veetsa Team is working to make it symfony plugged after this project. On Thu, Sep 17, 2009 at 10:38 AM, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi, Is it compatible with Microsoft Outlook Calender ? Does it take Microsoft Outlook calender to .ics file ? Regards Deepak Bhatia

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

2009-09-17 Thread DEEPAK BHATIA
: Deepak, I shared your gripes.  Swift mailer does not support TLS yet, which is required for many exchange servers.  PHPMailer does On Sep 17, 8:46 am, Eno symb...@gmail.com wrote: On Thu, 17 Sep 2009, DEEPAK BHATIA wrote: How do we set Fully Qualified Domain Name the /etc/hosts file

[symfony-users] Re: Calendar plugin

2009-09-17 Thread DEEPAK BHATIA
Hi Rajesh, Can I ask you why you are integrating the Calender ? Is it to get view like Microsoft Calender ? Regards Deepak Bhatia On Fri, Sep 4, 2009 at 8:13 PM, Rajesh Kodali rajeshkod...@gmail.com wrote: Hi Guys, I did not receive any reply to my previous post on Calendar plug-in. Can

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

2009-09-17 Thread DEEPAK BHATIA
PM, pcummins patwcumm...@gmail.com wrote: Deepak, I shared your gripes.  Swift mailer does not support TLS yet, which is required for many exchange servers.  PHPMailer does On Sep 17, 8:46 am, Eno symb...@gmail.com wrote: On Thu, 17 Sep 2009, DEEPAK BHATIA wrote: How do we

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

2009-09-17 Thread DEEPAK BHATIA
:40 PM, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi, Do you mean SSL ? But I am not taking about TLS. The mail function of PHP uses sendmail on linux. When I execute above php page, the mail is not going to the recipietn. I hope we understand each other. Regards Deepak On Thu

[symfony-users] Re: Calendar plugin

2009-09-16 Thread DEEPAK BHATIA
Hi, Is it compatible with Microsoft Outlook Calender ? Does it take Microsoft Outlook calender to .ics file ? Regards Deepak Bhatia On Fri, Sep 4, 2009 at 9:13 PM, Rajesh Kodali rajeshkod...@gmail.com wrote: Hi, We have tried and integrated http://www.k5n.us/webcalendar.php to symfony

[symfony-users] Re: How to Read execl sheet data and save it into mysql database

2009-09-08 Thread DEEPAK BHATIA
Use sfPhpExcel Plugin Read required cell of Excel and store it into the database. I have attached the actions.class.php which loads the excel file, verify the required cells for content to be present. Line 103 to 136 are relevant where I am reading the cell and writing to the database table.

[symfony-users] Symfony Plugin for Microsoft Outlook Calender

2009-09-04 Thread DEEPAK BHATIA
Hi, Do we have any pluging which updates Microsoft Outlook Calender ? Regards Deepak Bhatia --~--~-~--~~~---~--~~ 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: Calendar plugin

2009-09-04 Thread DEEPAK BHATIA
Hi, I have used Yahoo user interface for the same. http://developer.yahoo.com/yui/ Regards Deepak On Fri, Sep 4, 2009 at 8:13 PM, Rajesh Kodalirajeshkod...@gmail.com wrote: Hi Guys, I did not receive any reply to my previous post on Calendar plug-in. Can any one help me in integrating.

[symfony-users] Xampp related issue

2009-09-02 Thread DEEPAK BHATIA
. Please help me in this regard. Thanks Deepak Bhatia --~--~-~--~~~---~--~~ 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 unsubscribe from

[symfony-users] Re: Xampp related issue

2009-09-02 Thread DEEPAK BHATIA
in this regard. Thanks Deepak Bhatia -- Blue Horn Ltd - System Development http://bluehorn.co.nz --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony

[symfony-users] Re: Xampp related issue

2009-09-02 Thread DEEPAK BHATIA
Sep 2009, DEEPAK BHATIA wrote: Now I stop ssl by /opt/lampp/lampp stopssl, but http://localhost doesn't work. To run without SSL, you run the 'stopssl' command above but then use just 'start' to start. -- --~--~-~--~~~---~--~~ You received this message

[symfony-users] Re: Xampp related issue

2009-09-02 Thread DEEPAK BHATIA
, DEEPAK BHATIA wrote: Now I stop ssl by /opt/lampp/lampp stopssl, but http://localhost doesn't work. To run without SSL, you run the 'stopssl' command above but then use just 'start' to start. -- --~--~-~--~~~---~--~~ You received this message because

[symfony-users] form_remote_tag

2009-08-25 Thread DEEPAK BHATIA
Hi, Will this work ? ?php echo form_remote_tag(array('update' = 'item_list', 'url' = 'request/confirmCab'),array('submit' = 'return validateAssignCab()')); ? Regards Deepak --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[symfony-users] Re: how to display image in template

2009-08-21 Thread DEEPAK BHATIA
I think you need to give the path relative to the htdocs directory for example your project is crb in htdocs. /opt/lampp/htdocs/crb/web/images/abc.jpg You can give path as /crb/web/images Best Regards Deepak Bhatia On Fri, Aug 21, 2009 at 5:50 PM, sunnyasim...@gmail.com wrote: i have image

[symfony-users] Test

2009-08-19 Thread DEEPAK BHATIA
--~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to

[symfony-users] Re: about session handling

2009-08-15 Thread DEEPAK BHATIA
Hi, Below is taken from Symfony Chapter 6 http://www.symfony-project.org/book/1_2/06-Inside-the-Controller-Layer#chapter_06_user_session === User Session Symfony automatically manages user sessions and is able to keep persistent data between requests for users. It

[symfony-users] Re: Swift Mail

2009-08-14 Thread DEEPAK BHATIA
Ok.Thanks On Fri, Aug 14, 2009 at 1:46 PM, Mr_chonshnd...@gmail.com wrote: On 13 août, 20:24, DEEPAK BHATIA toreachdee...@gmail.com wrote: Yes, I know HTML very well but still need a good hand on it. On Thu, Aug 13, 2009 at 11:53 PM, Enosymb...@gmail.com wrote: On Thu, 13 Aug

[symfony-users] Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Hi, As per the below code, the mail is send as text/html. $mailBody=b.This is the message.b But the message is not bold. Thanks Deepak === try { // Create the mailer and message objects $mailer = new Swift(new

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
I tried this and nto working $textbody = aText to appear as hyperlink/a; But I am not getting the hyperlink. Regards Deepak Bhatia On Thu, Aug 13, 2009 at 6:52 PM, Donald Tylerchekot...@gmail.com wrote: You have two opening b tags in your body. The second one should be /b

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Thanks.. On Thu, Aug 13, 2009 at 11:40 PM, Tom Haskins-Vaughant...@templestreetmedia.com wrote: Surely you need to add the href? $textbody = a href=http://example.com;Text to appear as hyperlink/a; DEEPAK BHATIA wrote: I tried this and nto working $textbody = aText to appear

[symfony-users] Re: Swift Mail

2009-08-13 Thread DEEPAK BHATIA
Yes, I know HTML very well but still need a good hand on it. On Thu, Aug 13, 2009 at 11:53 PM, Enosymb...@gmail.com wrote: On Thu, 13 Aug 2009, DEEPAK BHATIA wrote: I tried this and nto working $textbody = aText to appear as hyperlink/a; But I am not getting the hyperlink. Perhaps

[symfony-users] Confirm Box in Javascript

2009-08-08 Thread DEEPAK BHATIA
Hi, In general in Javascript we have a Confirm box which ask for two options OK and Cancel. Do we have any helper which are for three options OK, No and Cancel ? === html head script type=text/javascript function show_confirm() { var

[symfony-users] apos not understood

2009-08-08 Thread DEEPAK BHATIA
Hi, I am not able to understand apos etc below. Please help me in this regard. string submit_tag($value = apos;Save changesapos;, $options = array()) Returns an XHTML compliant lt;inputgt; tag with type=quot;submitquot;. Regards Deepak Bhatia

[symfony-users] Re: apos not understood

2009-08-08 Thread DEEPAK BHATIA
()) Returns an XHTML compliant lt;inputgt; tag with type=quot;submitquot;. Regards Deepak Bhatia --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] Re: apos not understood

2009-08-08 Thread DEEPAK BHATIA
, DEEPAK BHATIAtoreachdee...@gmail.com wrote: Hi, I am not able to understand apos etc below. Please help me in this regard. string submit_tag($value = apos;Save changesapos;, $options = array()) Returns an XHTML compliant lt;inputgt; tag with type=quot;submitquot;. Regards Deepak Bhatia

[symfony-users] remote_function in input_date_tag

2009-08-07 Thread DEEPAK BHATIA
'. I am getting to the function home/showbooking but how can I pass selectdate parameter to the called function. Thanks Deepak Bhatia --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Re: remote_function in input_date_tag

2009-08-07 Thread DEEPAK BHATIA
the actual selected value of your selectdate field. The parameter selectdate could be fetched in your showbooking action as normal request paremeter. Frank Am 07.08.2009 um 08:07 schrieb DEEPAK BHATIA: Hi, I am using the input_date_tag function ?php echo input_date_tag('selectdate

[symfony-users] Re: remote_function in input_date_tag

2009-08-07 Thread DEEPAK BHATIA
javascript statement to retrieve the actual selected value of your selectdate field. The parameter selectdate could be fetched in your showbooking action as normal request paremeter. Frank Am 07.08.2009 um 08:07 schrieb DEEPAK BHATIA: Hi, I am using the input_date_tag function ?php echo

[symfony-users] Re: remote_function in input_date_tag

2009-08-07 Thread DEEPAK BHATIA
schrieb DEEPAK BHATIA: Hi, Thanks for your mail. I am not able to get some_javascript_value. Please help me in this regard. Thanks Deepak On Fri, Aug 7, 2009 at 11:46 AM, Frank Stelzerd...@bleedingmoon.de wrote: You need the with parameter. http://www.symfony-project.org/book/1_2/11

[symfony-users] Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
input_date_tag('selectdate', $currentdate, array('rich' = true, 'onchange'= remote_function(array('update' = 'common_area','url' = 'home/homeselectdate','script' = true,'with'='id='+this.value; ? Regards Deepak Bhatia --~--~-~--~~~---~--~~ You received

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
What about helper docs like input_date_tag ? On Fri, Aug 7, 2009 at 8:23 PM, Enosymb...@gmail.com wrote: On Fri, 7 Aug 2009, DEEPAK BHATIA wrote: I was struggling to call the ajax method when the date is automatically changed. But I didn't find any documentation for the same and had to go

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
Hello, Thanks for the information. But still the input_date_tag API is given with options = array and I don't find any place of options array description Regards Deepak Bhatia On Fri, Aug 7, 2009 at 8:33 PM, Enosymb...@gmail.com wrote: On Fri, 7 Aug 2009, DEEPAK BHATIA wrote: What about

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
dillema. Regards Deepak Bhatia On Fri, Aug 7, 2009 at 10:13 PM, Enosymb...@gmail.com wrote: On Fri, 7 Aug 2009, DEEPAK BHATIA wrote: But still the input_date_tag API is given with options = array and I don't find any place of options array description It says: $options        additional

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
was not well liked. DEEPAK BHATIA wrote: Hi, I appreciate that the documentation is done nicely but what we need are the examples below each API/Helper. Yes searching on google gets me the answer but not always. More so  in my case it is with = 'select'+javascript_code

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
the date field with the chosen date. === On Fri, Aug 7, 2009 at 11:35 PM, Enosymb...@gmail.com wrote: On Fri, 7 Aug 2009, DEEPAK BHATIA wrote: with = 'select'+javascript_code with is not a regular HTML option. You asked about

[symfony-users] Re: Documentation of Symfony

2009-08-07 Thread DEEPAK BHATIA
Thanks Eno for your patience, so we finally decide that examples are not required. Regards Deepak Bhatia On Sat, Aug 8, 2009 at 12:44 AM, Enosymb...@gmail.com wrote: On Fri, 7 Aug 2009, DEEPAK BHATIA wrote: OK, I am sorry for my mistake but I am still not convinced that third parameter

<    1   2   3   4   >