[symfony-users] Re: Fatal error: Call to a member function getprenom() on a non-object

2011-03-31 Thread deepak
t;>       getdate_de_naissance() ?> > >>>     > >>>     > >>>       Lieu de naissance: > >>>       getlieu_de_naissance() ?> > >>>     > >>>     > >>>       Adresse: > >>>       getadresse() ?> >

[symfony-users] Re: Fatal error: Call to a member function getprenom() on a non-object

2011-03-31 Thread deepak
r example if in your mysql database table column name is "my_column" then we use getMyColumn(). similarly you may try getPrenom() if your column name is "prenom" . -deepak On Mar 31, 2:01 pm, mohamed sabri ben sassi wrote: > yes i tried with this ,,i have passed in find th

[symfony-users] Re: Fatal error: Call to a member function getprenom() on a non-object

2011-03-31 Thread deepak
Hi Please try with $this->utilisateur = Doctrine::getTable('utilisateur')->find($request- >getParameter('matri cule')); find tries to search the row on the basis of primary key. That means you must pass primary key in find('PRIMARY_KEY') try this and pos

[symfony-users] Re: How to access symfony 2 command line

2011-02-08 Thread deepak
Issue fixed given write permission to cache dir ... Thanks On Feb 8, 10:20 pm, deepak wrote: > Here is the complete command line output ... > --- > PHP Deprecated:  Comments starting with '#' are deprecated in /etc/ > php5/cli/conf.d/mcrypt.ini on line

[symfony-users] Re: How to access symfony 2 command line

2011-02-08 Thread deepak
0 5. Symfony\Component\HttpKernel \ClassCollectionLoader::writeCacheFile() /var/www/sf/sandbox/src/ vendor/symfony/src/Symfony/Component/HttpKernel/ ClassCollectionLoader.php:112 -- On Feb 8, 10:17 pm, deepak wrote: > Thanks Christophe, > > I don't know abou

[symfony-users] Re: [symfony 2]How to access symfony 2 command line

2011-02-08 Thread deepak
f yes, what all commands are available --- point me to some relevant docs ) And that call stake is is the output when I enter "php app/console" in sf2 project directory. Hope I explained my doubt here. Let me know If it makes sense or I will try to explain again. deepak On Feb

[symfony-users] [symfony 2]How to access symfony 2 command line

2011-02-08 Thread deepak
73948160 5. Symfony\Component\HttpKernel \ClassCollectionLoader::writeCacheFile() /var/www/sf/sandbox/src/ vendor/symfony/src/Symfony/Component/HttpKernel/ ClassCollectionLoader.php:112 ----- Thanks Deepak -- If you want to report a vulnerability issue on symfony, p

[symfony-users] [symfony 2] built in plugins

2011-02-04 Thread deepak
Hi Do we have some plugin for symfony2 such as something similar to sfGuardPlugin or anything? Or we need to build in the authentication functionality from scratch for our symfony2 projects? Deepak -- If you want to report a vulnerability issue on symfony, please send it to security at

[symfony-users] How to avoid breaking MVC separation while loading partial from controller.

2010-12-23 Thread deepak
is the standard way of doing this anyway? Thanks Deepak Kumar INDIA -- 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

[symfony-users] Re: symfony1.4.6 --How to use date tag in view files

2010-11-23 Thread deepak
Hi Did any one find the answer for this thread? Thanks Deepak On Nov 19, 1:24 pm, deepak wrote: > Hi > > I am using symfony 1.4.6. > > There is a requirement where I have to use date fields i.e. three > fields date,month,year. > > Is there any tag which I can use to p

[symfony-users] symfony1.4.6 --How to use date tag in view files

2010-11-19 Thread deepak
Hi I am using symfony 1.4.6. There is a requirement where I have to use date fields i.e. three fields date,month,year. Is there any tag which I can use to produce the date field in my view files? like it was in symfony 1.0 suh as echo input_date_tag('date', null, array('rich' => true)); or e

[symfony-users] Re: jq_submit_to_remote examples

2010-11-15 Thread deepak
Hi As suggested by Massimiliano Arione jQuery form plugin  http:// jquery.malsup.com/form/ is really good. I use the same with symfony without any issue, and is very handy to use. Thanks Deepak On Nov 15, 7:05 pm, Massimiliano Arione wrote: > On 15 Nov, 02:19, Martin Ibarra Cervantes >

[symfony-users] Re: How to aasign external link in symfony

2010-11-11 Thread deepak
Thanks Gareth. :) On Nov 12, 12:42 pm, Gareth McCumskey wrote: > This is expected behavour. url_for looks for the suffix http:// to know if > its an external link or not. > > > > > > > > > > On Thu, Nov 11, 2010 at 2:39 PM, deepak wrote: > > Hi > &

[symfony-users] How to aasign external link in symfony

2010-11-11 Thread deepak
e a way in symfony thru which I can assign external url to links such as Product ? Now if there is a http:// added in the url it considers it as external url and redirects properly. Let me know if I make any sense here. Thanks Deepak -- If you want to report a vulnerability issue on symfony,

Re: [symfony-users] Using mysql php functions in symfony

2010-09-08 Thread DEEPAK BHATIA
Thanks Gareth, Please see if you can answer my question. Regards Deepak Bhatia On Wed, Sep 8, 2010 at 5:28 PM, DEEPAK BHATIA wrote: > Hi, > > I have four databases by the name > > 1. rtdb > 2. crb > 3. pist > > The rtdb and pist has emp_table but the same is gi

Re: [symfony-users] Using mysql php functions in symfony

2010-09-08 Thread DEEPAK BHATIA
l: class: sfPropelDatabase param: dsn: 'mysql://root:@localhost/crb' propel: class: sfPropelDatabase param: dsn: 'mysql://root:@localhost/rtdb' Regards Deepak Bhatia On Wed, Sep 8, 2010 at 4:53 PM, Gareth McCumskey wrote: > Why do things outside of

Re: [symfony-users] Re: Using mysql php functions in symfony

2010-09-07 Thread DEEPAK BHATIA
param: dsn: 'mysql://root:@localhost/crb' === all: propel: class: sfPropelDatabase param: dsn: 'mysql://root:@localhost/amsdb' On Tue, Sep 7, 2010 at 6:42 PM, Massimiliano Arione wrote: > On 7 Set, 07:52, DEEPAK BHATIA

Re: [symfony-users] Re: Using mysql php functions in symfony

2010-09-07 Thread DEEPAK BHATIA
ement->executeQuery(); $resultset->next(); $max = $resultset->getInt('max'); On Tue, Sep 7, 2010 at 6:42 PM, Massimiliano Arione wrote: > On 7 Set, 07:52, DEEPAK BHATIA wrote: > > I tried accessing some other database than specified in databases.yml. > But >

Re: [symfony-users] Accessing Databases not specified in databases.yml

2010-09-07 Thread DEEPAK BHATIA
Hi, Thanks for your mail. Can get some google link which is useful or send me some sample code of mysql trigger and how it gets invoked in symfony project ? Regards Deepak Bhatia On Tue, Sep 7, 2010 at 2:31 PM, Sebastien Armand [Pink] wrote: > I had to do something like that some time ago

[symfony-users] Accessing Databases not specified in databases.yml

2010-09-06 Thread DEEPAK BHATIA
Hi, I have four projects in the htdocs directory and each have separate database in databases.yml. Now I have user login/password in each of the four different databases. How can I write the code in symfony when user change password, it gets changed in all the databases. Regards Deepak Bhatia

[symfony-users] Using mysql php functions in symfony

2010-09-06 Thread DEEPAK BHATIA
Hi, I tried accessing some other database than specified in databases.yml. But below is not working. Please help. $con=mysql_connect("localhost","root",""); if(!$con) { echo "Database Connection Not Estabilished\n"; exit(0); } $temp = mysql_select_db("rtdb"); i

[symfony-users] Jobeet SVN checkout for symfony1.4/propel

2010-09-01 Thread deepak
Hi Do we have any SVN Repository to check out the code for Jobeet application build over symfony1.4 using propel as ORM? (not the tutorial)Like we had for symfony1.2 for jobeet app. Thanks deepak -- If you want to report a vulnerability issue on symfony, please send it to security at symfony

[symfony-users] Single Sign On Using Kerberos

2010-07-14 Thread DEEPAK BHATIA
Hi, Anybody implemented Single Sign On using Kerberos in Symfony Project. Thanx in advance. Regards Deepak Bhatia -- 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] Single Sign On - Plugin

2010-07-13 Thread DEEPAK BHATIA
should I use in my project ? Best Regards Deepak Bhatia -- 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, sen

[symfony-users] Single Sign On Plugin

2010-07-12 Thread DEEPAK BHATIA
Hi, I need your help in identifying the plugin for the Single Sign On and if somebody has implemented the same in symfony based project. Thanx in advance. Regards Deepak Bhatia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

Re: [symfony-users] Output a excel file with phpexcel

2010-06-29 Thread DEEPAK BHATIA
Hi, What version of symfony are you using ? Regards Deepak On Mon, Jun 28, 2010 at 10:07 PM, diana catalina tobar lara < catalina.tobar.l...@gmail.com> wrote: > thanks for answer but it still not working, i use your solutions but > nothing the file is empty, and give me the

Re: [symfony-users] php symfony configure:database "mysql:host=localhost;dbname=pist1

2010-06-07 Thread DEEPAK BHATIA
http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html On Mon, Jun 7, 2010 at 9:23 PM, Eno wrote: > On Mon, 7 Jun 2010, DEEPAK BHATIA wrote: > > > When I execute the below > > > > php symfony propel:insert-s

Re: [symfony-users] php symfony configure:database "mysql:host=localhost;dbname=pist1

2010-06-07 Thread DEEPAK BHATIA
Sorry, I am using MySQL. On Mon, Jun 7, 2010 at 9:13 PM, DEEPAK BHATIA wrote: > Hi, > > I guess you are right. Actually we install the mysql through Apache Friends > xampp for linux. How can I configure my database for remote connections ? > > Regards > > Deepak Bh

Re: [symfony-users] php symfony configure:database "mysql:host=localhost;dbname=pist1

2010-06-07 Thread DEEPAK BHATIA
Hi, I guess you are right. Actually we install the mysql through Apache Friends xampp for linux. How can I configure my database for remote connections ? Regards Deepak Bhatia 2010/6/7 Michał Piotrowski > Hi, > > Do you have database configured for remote connections? > > For

Re: [symfony-users] php symfony configure:database "mysql:host=localhost;dbname=pist1

2010-06-07 Thread DEEPAK BHATIA
tive Error: Access denied for user 'root'@'10.0.1.66' to database 'crb'] [User Info: Array]] On Mon, Jun 7, 2010 at 8:52 PM, Eno wrote: > On Mon, 7 Jun 2010, DEEPAK BHATIA wrote: > > > php symfony configure:database "mysql:host=localhost;dbname=pist

[symfony-users] php symfony configure:database "mysql:host=localhost;dbname=pist1

2010-06-07 Thread DEEPAK BHATIA
to achieve the syncing. Regards Deepak -- 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, se

Re: [symfony-users] Error Message

2010-05-20 Thread DEEPAK BHATIA
. Regards Deepak Bhatia On Thu, May 20, 2010 at 12:05 AM, Eno wrote: > On Wed, 19 May 2010, DEEPAK BHATIA wrote: > > > How do I resolve this ? I am root to the linux while creating everything. > > As a web developer, you ought to be aware of how permissions work on web > se

Re: [symfony-users] Error Message

2010-05-19 Thread DEEPAK BHATIA
How do I resolve this ? I am root to the linux while creating everything. On Wed, May 19, 2010 at 6:05 PM, Gábor Fási wrote: > It's pretty clear that you have a permission problem. > > On Wed, May 19, 2010 at 13:27, DEEPAK BHATIA > wrote: > > Hi, > > > >

[symfony-users] Error Message

2010-05-19 Thread DEEPAK BHATIA
*Hi,* ** *I installed a project using symfony 1.4.1 but when I type the URL to access my application I get the below error.* ** *==* *Warning*: require_once(/root/sfproject/lib/vendor/symfony/lib/autoload/sfCoreAutoload.class.php) [function.require-once

Re: [symfony-users] Where to put sfPHPExcelPlugin in Symfony 1.4

2010-05-17 Thread DEEPAK BHATIA
Thanks Alvaro, All the files are present as they are part of the downloaded package. Can you send me your package ? Regards Deepak Bhatia On Mon, May 17, 2010 at 5:01 PM, Alvaro Videla wrote: > Hi, > > By READING your error message, I can see that it says this: > > *Fatal e

[symfony-users] Where to put sfPHPExcelPlugin in Symfony 1.4

2010-05-17 Thread DEEPAK BHATIA
et\lib\vendor\symfony\lib\config\sfApplicationConfiguration.class.php(150): sfApplicationConfiguration->initializePlugins() #4 C:\development\sfpro in * C:\development\sfprojects\jobeet\lib\vendor\symfony\lib\config\sfConfigCache.class.php * on line *104* *

[symfony-users] Using sfPHPExcelPlugin in Symfony 1.4

2010-05-17 Thread DEEPAK BHATIA
Hi, I downloaded the sfPhpExcelPlugin-1.0.3.gz and installed in the C:\development\sfprojects\jobeet\lib\vendor\symfony\lib\plugins\sfPhpExcelPlugin I updated the ProjectConfiguration.class.php enablePlugins(array('sfPropelPlugin','sfPhpExcelPlugin')); } } But I get the following error in th

Re: [symfony-users] sfException with log in symfony

2010-05-01 Thread DEEPAK BHATIA
Did you upgrade the plugin or using a property not defined On Sat, May 1, 2010 at 5:37 PM, Manish wrote: > Hi Friends, > > I am getting an wired error when trying to use log to check the > variable value. > > I am using symfony with doctorine ORM. > > I am getting an error when to check the val

Re: [symfony-users] Re: :-( please help. ajax problem - noob to ajax -probably simple

2010-04-30 Thread DEEPAK BHATIA
You can use new plugins based on Jquery working similar to link_to_remote.. On Fri, Apr 30, 2010 at 7:36 PM, Massimiliano Arione wrote: > On 29 Apr, 15:36, Gareth McCumskey wrote: > > I know you are talking about ajax. So, for the sake of brevity< i > > include an example of the way it could be

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-27 Thread DEEPAK BHATIA
Could you get the file in /tmp ? On Tue, Apr 27, 2010 at 4:37 PM, safa boubekri wrote: > hello > > :(  the file reports.xsl    is not generate   change  '/var/tmp/  to  /tmp > because i have wamp/tmp > thank you > > -- > If you want to report a vulnerability issue on symfony, please send it to >

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-26 Thread DEEPAK BHATIA
Are you able to create an instance of the as given in example01. The resulting file with === $objPHPExcel = new sfPhpExcel(); // Set properties $objPHPExcel->getProperties()->setCreator("Maarten Balliauw"); $objPHPExcel->getProperties()

Re: [symfony-users] Re: Jquery and AJAX symfony 1.4

2010-04-20 Thread DEEPAK BHATIA
Yes I have done the same and it works great, On Tue, Apr 20, 2010 at 8:16 PM, Thor wrote: > I suggest you to use jQueryReloaded plugin, it works greatly, and what > you need is simply done by a helper like link_to_remote > > On 19 Apr, 19:58, trankh wrote: > > Hello, > > > > I want to call a si

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread DEEPAK BHATIA
Hi, I am saying use the code in the action of a module. Please let me know if you understand action of a module. public function executeFiledownload($request) { // Create new PHPExcel object $objPHPExcel = new sfPhpExcel(); // Set active sheet index to the first sheet, so Excel op

Re: [symfony-users] help_sfPhpExcelPlugi

2010-04-19 Thread DEEPAK BHATIA
Hi, Use the same example in an action of a module. It will work perfectly. But prior to that do php symfony cc to autoload the sfPhpExcel Plugin. Regards Deepak Bhatia On Mon, Apr 19, 2010 at 5:12 PM, safa boubekri wrote: > hi, > i have installed sfPhpexcel Plugin and set the d

Re: [symfony-users] Widgets and Validators

2010-04-14 Thread DEEPAK BHATIA
Hi, We have set the 'required' => true but still the max_length attribute is not set for LoginId. Regards Deepak Bhatia On Tue, Apr 13, 2010 at 3:07 PM, Gareth McCumskey wrote: > The answer is easy. It needs to be required first. If it is over > max_length it just ignores

[symfony-users] Widgets and Validators

2010-04-12 Thread DEEPAK BHATIA
Hi, I have created a form using the below widget and validator. I am not able to validate the maximum length of the input text type. The example shows to bind the form first and then do validation. Please me in resolving the same. Thanks Deepak setWidgets(array( 'LoginId

Re: [symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-06 Thread DEEPAK BHATIA
Hi, I think remote_function are obsoleted in the Symfony 1.4. I think this can be achieved using JQuery. Regards Deepak On Tue, Apr 6, 2010 at 3:14 PM, Belgacem TLILI wrote: > i have include > > > if i use i will get an error > (i thinks for sf 1.4 we must use JavascriptBa

[symfony-users] ADLLDAP

2010-04-01 Thread DEEPAK BHATIA
Hi, Anybody used adldap in symfony project. http://adldap.sourceforge.net/ Thanks Deepak -- 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

[symfony-users] Re: LDAP Plugin

2010-03-22 Thread DEEPAK BHATIA
Hi, Has anybody used LDAP way of authenticating the users in Symfony ? Thanks in advance Deepak Bhatia On Wed, Jan 13, 2010 at 1:09 PM, DEEPAK BHATIA wrote: > Hi, > > Anybody implemented the LDAP Plugin for their project > > http://www.symfony-project.org/plugins/bhLDAPAuthPlu

[symfony-users] Re: Session Timeout

2010-03-19 Thread DEEPAK BHATIA
Any suggestions, ideas.. On Thu, Mar 18, 2010 at 7:27 PM, DEEPAK BHATIA wrote: > Hi, > > How do we check whether session handling between client and server is > correct as per factories.yml setting ? > > Can we debug exactly when the session get expired ? >

[symfony-users] Session Timeout

2010-03-18 Thread DEEPAK BHATIA
Hi, How do we check whether session handling between client and server is correct as per factories.yml setting ? Can we debug exactly when the session get expired ? Thanks in advance :-) Regards Deepak Bhatia -- If you want to report a vulnerability issue on symfony, please send it to

Re: [symfony-users] Stop a nuclear disaster

2010-03-18 Thread DEEPAK BHATIA
Hi, It is not a good idea to use symfony google groups for which you can create a new google group. Apologies to all members of symfony google group. Deepak Bhatia Project Manager NEC HCL System Technologies India On Thu, Mar 18, 2010 at 2:09 PM, Gareth McCumskey wrote: > sigh .. q

Re: [symfony-users] Jobeet Tutorial

2010-03-11 Thread DEEPAK BHATIA
Thanks, the response from symfony google groups is ogood that I prefer putting queries at the shot On Thu, Mar 11, 2010 at 7:16 PM, Eno wrote: > On Thu, 11 Mar 2010, DEEPAK BHATIA wrote: > > > I have created the jobeet tutorial but following command is failing > &g

Re: [symfony-users] Re: Jobeet Tutorial

2010-03-10 Thread DEEPAK BHATIA
That works for me > with doctrine also. Thank you. > > -- Parijatha Kumar > > On Mar 11, 10:59 am, DEEPAK BHATIA wrote: > > Hi, > > > > I have created the jobeet tutorial but following command is failing > > > > php symfony propel:generate-module --

[symfony-users] Jobeet Tutorial

2010-03-10 Thread DEEPAK BHATIA
'JobeetJobForm' not found in /home/sfprojects/jobeet/lib/vendor/symfony/lib/generator/sfModelGenerator.class.php on line 331 Best Regards Deepak Bhatia -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message becau

Re: [symfony-users] Web Server Configuration

2010-03-10 Thread DEEPAK BHATIA
like wrongly configured IP->HOST mapping. >> When you are accessing the project from your LAN you are using correct IP, >> but *WRONG HOST* - apache (or whatever it is) is serving you default page >> (/var/www/index.html or whatever is set to be default). Just change the HOST &

Re: [symfony-users] Web Server Configuration

2010-03-10 Thread DEEPAK BHATIA
st change the HOST > and it should work :) > > Cheers, > JMB > > 2010/3/8 DEEPAK BHATIA > > What should be the virtual host? >> >> On Mon, Mar 8, 2010 at 1:06 PM, Buddhika Perera >> wrote: >> > Check with virtual host i used netbeans 6.8 fo

Re: [symfony-users] Web Server Configuration

2010-03-08 Thread DEEPAK BHATIA
t; > > > On Mon, Mar 8, 2010 at 12:23 PM, DEEPAK BHATIA > wrote: >> Hi, >> >> I am using Symfony 1.4. >> >> In the section of configuration of Web Server in Jobeet Tutorial as given >> below >> >> When I access http://www.jobeet.com/

Re: [symfony-users] Re: Web Server Configuration

2010-03-08 Thread DEEPAK BHATIA
I am sorry to say but that doesn't work. I am very much in India On Mon, Mar 8, 2010 at 2:27 PM, manguito wrote: > Hi Deepak, > try this and let me know if I'm right or wrong > in the httpd.conf change this: ServerName www.jobeet.com.localhost > to :ServerName www.jo

Re: [symfony-users] Web Server Configuration

2010-03-08 Thread DEEPAK BHATIA
Hi, Yes we use the IP Address to access the symfony application. But can we access the index.htm in jobeet directory through http://www.jobeet.com. May be I am not able to understand your point. Kindly elaborate the same. Regards Deepak Bhatia On Mon, Mar 8, 2010 at 1:20 PM, Asif Ali M

[symfony-users] Web Server Configuration

2010-03-07 Thread DEEPAK BHATIA
Hi, I am using Symfony 1.4. In the section of configuration of Web Server in Jobeet Tutorial as given below When I access http://www.jobeet.com/ on some other machine on LAN, I get some output like Index of cgi-bin When I access http://www.jobeet.com.locahost/index.php on the local machine, I g

Re: [symfony-users] how to do pdf in symfony

2010-03-01 Thread DEEPAK BHATIA
http://www.symfony-project.org/plugins/sfPhpExcelPlugin PDF can be generated using this library. On Tue, Mar 2, 2010 at 6:48 AM, Arthur Ccube wrote: > how to generate pdf files from my html/pdf templates in symfony? > > It is better to have free/open source methods. > > Thanks! > > -- > If you w

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread DEEPAK BHATIA
Already done so :-) On Thu, Feb 25, 2010 at 7:40 PM, Gareth McCumskey wrote: > Why not create a new thread instead of hijacking this one? > > On Thu, Feb 25, 2010 at 12:50 PM, DEEPAK BHATIA > wrote: > > Hi Fabien, > > > > I am using Symfony 1.1 in which we are to

[symfony-users] Testing Session Timeout

2010-02-25 Thread DEEPAK BHATIA
Hi, I am testing the session time out in symfony 1.1 by setting timeout in factories.yml. We have set the session timeout to 86400 seconds (24 hours). Can I simply change the date of server where symfony is installed to next day and see if session timeout occurs ? Regards Deepak Bhatia

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread DEEPAK BHATIA
Hi Fabien, I am using Symfony 1.1 in which we are to create a session timeout of 4 hours but it is not working by changing in factories.yml. Regards Deepak Bhatia On Thu, Feb 25, 2010 at 3:58 PM, Fabien Potencier < fabien.potenc...@symfony-project.com> wrote: > This has been fixed th

Re: [symfony-users] Hi guys! Im looking for 2x PHP Symfony developers full time to work remotely for a UK company!

2010-02-13 Thread DEEPAK BHATIA
Hi, I am interested. Regards Deepak On Thu, Feb 11, 2010 at 6:08 PM, Bravo wrote: > If you are interested please email me at berna...@bravomedia.co.uk > > Many thanks > > Bernardo > > -- > You received this message because you are subscribed to the Google Groups >

[symfony-users] frameset not working in Symfony PHP template

2010-02-10 Thread DEEPAK BHATIA
Hi, I have specified the src files for frame in /qp/web/htm directory where qp is my project. Thanks in advance Regards Deepak Bhatia = -- You received this message because you are

Re: Re[2]: [symfony-users] AJAX Helpers

2010-02-09 Thread DEEPAK BHATIA
t; >> > > Hi, > > > > It seems link_to_remote and form_remote_tag has been deprectaed in Symfony > 1.4. How do we achieve this functionality in Symfony 1.4. > > > > The Jobeet tutorial for 1.4 discusses briefly about AJAX. > > > > Thanks in advance. >

[symfony-users] AJAX Helpers

2010-02-08 Thread DEEPAK BHATIA
Hi, It seems link_to_remote and form_remote_tag has been deprectaed in Symfony 1.4. How do we achieve this functionality in Symfony 1.4. The Jobeet tutorial for 1.4 discusses briefly about AJAX. Thanks in advance. Regards Deepak Bhatia -- You received this message because you are subscribed

Re: [symfony-users] Re: Making sure a login id only has one session at any moment

2010-01-28 Thread DEEPAK BHATIA
I think you can set a field in database setting login status to true. Now if the person again logs in and you find from database, you can take him to the logout screen/error screen. On Thu, Jan 28, 2010 at 7:27 PM, Tom Ptacnik wrote: > Why do you want to kill his old session? > > > On 28 led, 04:

Re: [symfony-users] PATH in CSS

2010-01-25 Thread DEEPAK BHATIA
Example 1 ul.ul-01 li {padding:2px 0 2px 25px; background:url("../design/ul-01.gif") 0 50% no-repeat; font-size:85%;} Where design directory is relative to the current directory of CSS File. Example 2 .formbutton5{ cursor:pointer; width:100px; border:outset 1px #ccc; background

Re: [symfony-users] Re: Pan and Zoom Javascript Library for Images

2010-01-21 Thread DEEPAK BHATIA
Hello, Thanks for your mail. I hope this is free. Regards Deepak Bhatia On Fri, Jan 22, 2010 at 11:47 AM, Magic Toolbox wrote: > Deepak, > > We are about to add GIF support to Magic Touch. It was designed for > pan and zoom of images: > > http://www.magictoolbox.com/magicto

[symfony-users] Pan and Zoom Javascript Library for Images

2010-01-21 Thread DEEPAK BHATIA
Hi, I want to give the functionality of pan and zoom of gif images. Do we have specific plugin available for the same in the Symfony ? Regards Deepak Bhatia -- You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, sen

[symfony-users] Re: Converting Word document to Html

2010-01-20 Thread DEEPAK BHATIA
Any suggestions/guesses...:-) On Wed, Jan 20, 2010 at 4:10 PM, DEEPAK BHATIA wrote: > Hi, > > I have converted a Microsoft Word Document into the html page. > > http://localhost/test.htm > http://localhost/test.php > > But when I open this using module/action i

Re: [symfony-users] Re: Converting Word document to Html

2010-01-20 Thread DEEPAK BHATIA
Will it be possible to open the test.htm as an symfony template ? On Wed, Jan 20, 2010 at 8:19 PM, Gábor Fási wrote: > I'm guessing you have an encoding problem, but without any info, > that's the best I can do. > > On Wed, Jan 20, 2010 at 15:06, DEEPAK BHATIA wrote:

[symfony-users] Re: Converting Word document to Html

2010-01-20 Thread DEEPAK BHATIA
Hi, I have a simple query Convert a msword document to html. Display the html file from http://localhost/test.html => The contents are OK Display file as module/action/template => The contents are not OK Why does msword converted file is not coming correctly in Symfony ? Regards

[symfony-users] Re: Converting Word document to Html

2010-01-20 Thread DEEPAK BHATIA
Sorry, When I open this as http://localhost/test.htm http://localhost/test.php The htm/php file appears correctly. But when invoked as module/action, some junk characters come. Regards Deepak On Wed, Jan 20, 2010 at 4:10 PM, DEEPAK BHATIA wrote: > Hi, > > I have converted a Micro

[symfony-users] Converting Word document to Html

2010-01-20 Thread DEEPAK BHATIA
Hi, I have converted a Microsoft Word Document into the html page. http://localhost/test.htm http://localhost/test.php But when I open this using module/action in the symfony, some junk characters come in place of bullets. Please help in this regard. Regards Deepak Bhatia On Wed, Jan 20

[symfony-users] Re: Opening an html file in Symfony

2010-01-20 Thread DEEPAK BHATIA
Hi, If also open the same with php extension, it appears alright. But if I open as an module/action link, some junk characters appear. Regards Deepak Bhatia On Wed, Jan 20, 2010 at 3:05 PM, DEEPAK BHATIA wrote: > Hi, > > If I open this file as html, this appears fine. But if c

Re: [symfony-users] Re: Using same database for two projects

2010-01-19 Thread DEEPAK BHATIA
> each project. > > > On 15 led, 14:40, DEEPAK BHATIA wrote: >> Thanks for all the scenarios. If possible, please send me the solution for >> some tables as well as all tables. >> >> Regards >> >> Deepak Bhatia >> >> >> >> On Fri, J

Re: [symfony-users] Re: Using same database for two projects

2010-01-15 Thread DEEPAK BHATIA
Thanks for all the scenarios. If possible, please send me the solution for some tables as well as all tables. Regards Deepak Bhatia On Fri, Jan 15, 2010 at 6:54 PM, Tom Ptacnik wrote: > Two different projects with different tables/models? Or some tables > will be shared? Or all tables w

[symfony-users] Using same database for two projects

2010-01-15 Thread DEEPAK BHATIA
Hi, If we want to use the same database for the two projects in Symfony 1.1, how can we achieve that. I guess we just need to execute step1 and step 2 below. = 1. php symfony propel:build-model 2. php symfony cc 3. php symfony configure:database "mysql://root:@localhost/r

Re: [symfony-users] Open an Excel file

2010-01-15 Thread DEEPAK BHATIA
the excel file. Regards Deepak Bhatia On Fri, Jan 15, 2010 at 1:45 PM, Gareth McCumskey wrote: > With just plain old PHP and even some Javascript built in this is actually > very difficult if not impossible to do as PHP was never designed to interact > with a users PC. Javascript wa

[symfony-users] Re: LDAP Plugin

2010-01-14 Thread DEEPAK BHATIA
I guess nobody has used this..;-) On Wed, Jan 13, 2010 at 1:09 PM, DEEPAK BHATIA wrote: > Hi, > > Anybody implemented the LDAP Plugin for their project > > http://www.symfony-project.org/plugins/bhLDAPAuthPlugin > > Regards > > Deepak Bhatia > -- You receive

[symfony-users] LDAP Plugin

2010-01-12 Thread DEEPAK BHATIA
Hi, Anybody implemented the LDAP Plugin for their project http://www.symfony-project.org/plugins/bhLDAPAuthPlugin 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

Re: [symfony-users] Transition to Symfony 1.4 from Symfony 1.1

2010-01-08 Thread DEEPAK BHATIA
Thanks to all, ;-) On Fri, Jan 8, 2010 at 7:47 PM, Eno wrote: > On Fri, 8 Jan 2010, DEEPAK BHATIA wrote: > > > I want to transition from Symfony 1.1 to Symfony 1.4. > > > > What are all the steps required ? > > Well, the first step (as always) is to do some read

[symfony-users] Transition to Symfony 1.4 from Symfony 1.1

2010-01-08 Thread DEEPAK BHATIA
Hi, I want to transition from Symfony 1.1 to Symfony 1.4. What are all the steps required ? Help needed 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] Re: Not able to access foreign table through Propel

2010-01-06 Thread DEEPAK BHATIA
> > Hi, > > The table "reviewer_project_additional_checklist_table" accesses the > "project_additional_review_checklist_table" as foreign table. > > But I am not able to access the members of > project_additional_review_checklist_table. > > $c = new Criteria(); > > $c->add(ReviewerProjectAdditional

[symfony-users] Not able to access foreign table through Propel

2010-01-06 Thread DEEPAK BHATIA
Hi, The table "reviewer_project_additional_checklist_table" accesses the "project_additional_review_checklist_table" as foreign table. But I am not able to access the members of project_additional_review_checklist_table. $c = new Criteria(); $c->add(ReviewerProjectAdditionalChecklistTablePeer::R

[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. '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
'id' =>$temp1)); } On Wed, Dec 30, 2009 at 7:19 PM, dziobacz wrote: > heh - again wrong :) > > > > > > On 30 Gru, 14:42, DEEPAK BHATIA wrote: > > Try this > > $m = 1; > > foreach ($this->getOption('param') as $i) > >

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

2009-12-30 Thread DEEPAK BHATIA
; > > > On 30 Gru, 14:34, DEEPAK BHATIA wrote: > > Try this > > $m = 1; > > foreach ($this->getOption('param') as $i) > > { > >$temp = 'test'.$m; > >$m = $m + 1; > > $this->widgetSc

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

2009-12-30 Thread DEEPAK BHATIA
27;name' => $temp, 'id' => $temp1)); } On Wed, Dec 30, 2009 at 7:09 PM, dziobacz wrote: > Now they have different names but they should have the same names and > different ID: > > > > > > On 30 Gru, 14:34, DEEPAK BHATIA wrote: > > Try this

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

2009-12-30 Thread DEEPAK BHATIA
, Dec 30, 2009 at 6:43 PM, dziobacz wrote: > I still have: > > > > > > 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 wrote: > > Try this > > > > foreach ($th

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 wrote: > Is it possible to change name widget ? I am d

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. true, 'onchange'=> remote_function(array('update' => 'common_area','url' => 'home/homeselectdate','script' => true,'with'=>"'id='+this.value"; ?> true, 'onchange'=> remote_function(array('update' => 'common_area','url' => 'home/homeselectdate'

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 wrote: > i think its not symfony problem, you can use h

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 wrote: > 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 > "symfony use

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

2009-12-21 Thread DEEPAK BHATIA
// Option argument as an associative array 'special_link')) ?> Or ***Use this Class name in your CSS File.* On Tue, Dec 22, 2009 at 10:53 AM, DEEPAK BHATIA wrote: > link_to is not an HTML tag, please read CSS carefully. > > > On Tue, Dec 22, 2009 at 12

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 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 the rule o

  1   2   3   >