From quentusrex at gmail.com Sun Mar 1 11:40:07 2009 From: quentusrex at gmail.com (William King) Date: Sun, 01 Mar 2009 11:40:07 -0800 Subject: [Vtigercrm-developers] Invoicing/Billing clients Message-ID: <49AAE497.7000606@gmail.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am considering moving to vtiger when 5.1 is released. Will it be possible to define services/products that have to be calculated from a database? For instance I have a remote backup service that charges by the monthly transfer, and the amount currently stored. I have a sql statement which will calculate both of these, if given a client_id. Will it be possible to generate an invoice based on the calculated numbers? And will it be possible to attach a client_id to the recurring invoice so that the calculations are accurate? - -William -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkmq5JIACgkQZ63Azu7rahoNrgCdEwL91ShTOKCtS2DmK4rWOBx4 gJIAn1l/z9KHbMNm17dfCiP15Hk//zrc =YrSr -----END PGP SIGNATURE----- From stephen at efronteras.com Sun Mar 1 14:53:53 2009 From: stephen at efronteras.com (Stephen Mack) Date: Sun, 1 Mar 2009 19:53:53 -0300 Subject: [Vtigercrm-developers] Submenu delay Message-ID: <10701a710903011453n48896227xb0543afd6e9e5514@mail.gmail.com> Greetings fellow coders... While using vtiger, I've found the second and third row of menus to be a wonderful idea but difficult to use because when you mouseover the main menu, it drops down to cover the other menu options. So I've been playing with the vtiger menu subsystem to correct this annoyance. I figured I would post the "patch" here first and get some feedback from the development community before I post it to the forums. The patch affects the *include/js/general.js* file only and requires the addition of two global variables and contitional use of the *setTimeout* function. The logic behind the change keeps the main menu from being desplayed on mouseover unless the user pauses on a menu item for more than half a second. When that happens the menus funciton normally until the page is refreshed. Add the global variables around line 13 var gMenu=0; var gMenuDelay; In function *fnDropDown* change the last line *tagName.style.display = 'block';* (near line 2070) in the function to look like the following: if(gMenu) tagName.style.display = 'block'; else gMenuDelay=setTimeout(function(){tagName.style.display = 'block';gMenu=1;},500); In function *fnHideDrop* add the following code to the end of the function: clearTimeout(gMenuDelay); That's it. Try it out and post your feedback. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090301/00ebdc55/attachment.htm From joe at tsolucio.com Mon Mar 2 03:42:11 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 12:42:11 +0100 Subject: [Vtigercrm-developers] 5.1 Validation webmail body Message-ID: <1235994132.2172.6.camel@joesunix.int> Hi, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 The same problem is still present in 5.1 Val 1 The same solution given in the forum thread is valid I have updated the ticket A few notes: - I wanted to post this on a thread in the forum but there is no 5.1 specific section there. Maybe it's time to open up a 5.1 section in the forum? - To avoid these problems in the future it could be a good idea that, at least one of the programmers on the development team should ALWAYS be developing in a foreign language. If that isn't feasable, it's OK, that is what the rest of us are here for ;-) Joe TSolucio From asha at vtiger.com Mon Mar 2 04:06:11 2009 From: asha at vtiger.com (Asha) Date: Mon, 2 Mar 2009 17:36:11 +0530 Subject: [Vtigercrm-developers] 5.1 Validation webmail body In-Reply-To: <1235994132.2172.6.camel@joesunix.int> References: <1235994132.2172.6.camel@joesunix.int> Message-ID: Hi Joe, Thanks for the information as well as the update. We will surely pick up the fix soon and integrate it. :) On 3/2/09, Joe Bordes wrote: > > Hi, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 > > The same problem is still present in 5.1 Val 1 > The same solution given in the forum thread is valid > > I have updated the ticket > > A few notes: > > - I wanted to post this on a thread in the forum but there is no 5.1 > specific section there. Maybe it's time to open up a 5.1 section in the > forum? > > - To avoid these problems in the future it could be a good idea that, at > least one of the programmers on the development team should ALWAYS be > developing in a foreign language. If that isn't feasable, it's OK, that > is what the rest of us are here for ;-) > > Joe > TSolucio > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/9201581d/attachment.htm From joe at tsolucio.com Mon Mar 2 06:57:09 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 15:57:09 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 Message-ID: <49ABF3C5.4020500@tsolucio.com> Hi, I downloaded the thunderbird extension available from the vtiger blog link Installed it on thunderbird and saw that a "5.0.4" version was installed. I figured it was just the labeling but when I went to login it complained about version mismatch. I opened up the xpi, changed all the version labels to 5.1.0 and it worked perfect. Tried both on thunderbird 1.5.0.14 and 2.0.19 Joe TSolucio From stephen at efronteras.com Mon Mar 2 07:02:12 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 2 Mar 2009 12:02:12 -0300 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> Any chance that the thunderbird plugin will be extended to allow upload to leads as well as contacts? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/389da8f6/attachment.htm From partout at gmail.com Mon Mar 2 07:16:17 2009 From: partout at gmail.com (David) Date: Mon, 02 Mar 2009 23:16:17 +0800 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49ABF841.8070902@gmail.com> Hi All, Could you please tell me how to add my own menu item link to the top menu bar of vTiger. I've add new module links to the menu bar, while how to do with other types, such as other sites/my own functions? Thanks in advance. Best Regards, David Zhu From joe at tsolucio.com Mon Mar 2 07:23:42 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 16:23:42 +0100 Subject: [Vtigercrm-developers] Firefox extension 5.1.0 val1 Message-ID: <49ABF9FE.30802@tsolucio.com> Hi, Same problem as with thunderbird extension but this time it was just labeling. After changing label to 5.1.0 I could not get it to login, always get login error. Joe TSolucio From prasad at vtiger.com Mon Mar 2 21:14:06 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 3 Mar 2009 10:44:06 +0530 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF841.8070902@gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <49ABF841.8070902@gmail.com> Message-ID: <39d18b250903022114q1c3af91ard09a9b4e064a95fe@mail.gmail.com> Hi David, You will not be able to add custom links as menu item at present. Regards, Prasad vtiger Team On 3/2/09, David wrote: > > Hi All, > > Could you please tell me how to add my own menu item link to the top > menu bar of vTiger. > > I've add new module links to the menu bar, while how to do with other > types, such as other sites/my own functions? > > Thanks in advance. > > Best Regards, > David Zhu > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/0d7fc716/attachment.htm From asha at vtiger.com Tue Mar 3 00:42:35 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 14:12:35 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 Message-ID: Hi All, We would like the user community and the developers community to help us in validating the build for 5.1.0. As you already know, 5.1.0 validation build -1 is already out for testing. We have put out the important areas of testing for 5.1.0 :- http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan If anyone is interested in owning any of the important areas of testing 5.1.0, you are most welcome. You can update the wiki page to keep everyone informed about it. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/02cba924/attachment-0001.htm From ddfire at gmail.com Tue Mar 3 03:57:24 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 09:57:24 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: i take the asterisk integration. please send me some info about what do you need. David 2009/3/3 Asha > Hi All, > > We would like the user community and the developers community to help us in > validating the build for 5.1.0. As you already know, 5.1.0 validation build > -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of testing > 5.1.0, you are most welcome. You can update the wiki page to keep everyone > informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/6628498b/attachment.htm From joe at tsolucio.com Tue Mar 3 04:44:44 2009 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 03 Mar 2009 13:44:44 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: <1236084284.17321.32.camel@joesunix.int> Hi, I understand that taking this responsability entails defining a set of tests to be done, be open to other tests and bugs the community may find and then centralize the errors that the community finds in each section towards a small group of people who should validate the bugs and (hopefully) propose the solution through the trac system to the responsable vtiger team member. I have tooken on I18N and would like to participate (at least) in the vtlib validation. If anybody wants to share these sections with me contact me and we can start to define a path. I will proactively inform of any bugs I may find in any section of vtiger CRM 5.1. Joe TSolucio El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > Hi All, > > We would like the user community and the developers community to help > us in validating the build for 5.1.0. As you already know, 5.1.0 > validation build -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of > testing 5.1.0, you are most welcome. You can update the wiki page to > keep everyone informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From asha at vtiger.com Tue Mar 3 06:31:44 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 20:01:44 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Joe, David, Thanks for your quick and positive response. We have added you to the list on the wiki page. Hoping to have a good round of validation with 5.1.0 and bring out a better product altogether. On 3/3/09, Joe Bordes wrote: > > Hi, > > I understand that taking this responsability entails defining a set of > tests to be done, be open to other tests and bugs the community may find > and then centralize the errors that the community finds in each section > towards a small group of people who should validate the bugs and > (hopefully) propose the solution through the trac system to the > responsable vtiger team member. > > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. > > I will proactively inform of any bugs I may find in any section of > vtiger CRM 5.1. > > Joe > TSolucio > > El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > > > Hi All, > > > > We would like the user community and the developers community to help > > us in validating the build for 5.1.0. As you already know, 5.1.0 > > validation build -1 is already out for testing. > > > > We have put out the important areas of testing for 5.1.0 :- > > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > > > If anyone is interested in owning any of the important areas of > > testing 5.1.0, you are most welcome. You can update the wiki page to > > keep everyone informed about it. > > > > -- > > Regards, > > Asha > > vtiger Team > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/df133445/attachment.htm From ddfire at gmail.com Tue Mar 3 07:02:22 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 13:02:22 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: i was working whit pinaki in the asterisk integration. so i all ready have some info. this is my first validation do you have some guide? or something? thanks David 2009/3/3 Asha > Hi Joe, David, > > Thanks for your quick and positive response. We have added you to the list > on the wiki page. Hoping to have a good round of validation with 5.1.0 and > bring out a better product altogether. > > > On 3/3/09, Joe Bordes wrote: >> >> Hi, >> >> I understand that taking this responsability entails defining a set of >> tests to be done, be open to other tests and bugs the community may find >> and then centralize the errors that the community finds in each section >> towards a small group of people who should validate the bugs and >> (hopefully) propose the solution through the trac system to the >> responsable vtiger team member. >> >> I have tooken on I18N and would like to participate (at least) in the >> vtlib validation. If anybody wants to share these sections with me >> contact me and we can start to define a path. >> >> I will proactively inform of any bugs I may find in any section of >> vtiger CRM 5.1. >> >> Joe >> TSolucio >> >> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >> >> > Hi All, >> > >> > We would like the user community and the developers community to help >> > us in validating the build for 5.1.0. As you already know, 5.1.0 >> > validation build -1 is already out for testing. >> > >> > We have put out the important areas of testing for 5.1.0 :- >> > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >> > >> > If anyone is interested in owning any of the important areas of >> > testing 5.1.0, you are most welcome. You can update the wiki page to >> > keep everyone informed about it. >> > >> > -- >> > Regards, >> > Asha >> > vtiger Team >> >> > _______________________________________________ >> > Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/a9768e23/attachment.htm From tzenk at gmx.net Tue Mar 3 12:35:19 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:35:19 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49AD9487.2030201@gmx.net> Hi, i didn?t even change anything e.g. left the thunderbird extension provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 data and could login without any problem, but i remember that the changeover from 5.03 to 5.04 i had to do what you described Joe. This approach works definitly. Best Regards Torsten Zenk Joe Bordes schrieb: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From tzenk at gmx.net Tue Mar 3 12:42:30 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:42:30 +0100 Subject: [Vtigercrm-developers] [vtiger development] #5503: Settings > Tax Calculations no editing possible after saving edited Tax In-Reply-To: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> References: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> Message-ID: <49AD9636.8080701@gmx.net> Hi all, as the vtiger team could not reproduce the desribed error in http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5503 could please some of you winxp pro/xampp users tell us if you could reproduce that saving problem? Best Regards Torsten Zenk vtiger development schrieb: > #5503: Settings > Tax Calculations no editing possible after saving edited Tax > -----------------------------------+---------------------------------------- > Reporter: tzenk1 | Owner: developer > Type: defect | Status: new > Priority: minor | Milestone: 5.1.0 > Component: vtigercrm | Version: 5.1.0-val1 > Keywords: Edit Tax Calculations | > -----------------------------------+---------------------------------------- > In Settings > Tax Calculations no editing is possible after saving edited > Tax. Wanting to edit the just edited Strings for Original "VAT" like > "MwSt.-Deutschland" or "MwSt." does not change anything. > You can edit the fields, you can save it without any error warning, but > the data isn??t changed in any way. > > To reproduce, simply change the original VAT Name to something else, save > it and then edit it to something else again and save that again. You will > see that the second changes are not there. > > Best Regards > Torsten Zenk > > From tzenk at gmx.net Tue Mar 3 13:14:02 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 22:14:02 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49AD9D9A.4090704@gmx.net> Hi, when providing manual tests are welcome i would take the 2 calendar issues and report what i see. Best Regards Torsten Zenk David fire schrieb: > i was working whit pinaki in the asterisk integration. > so i all ready have some info. > this is my first validation do you have some guide? or something? > thanks > David > > 2009/3/3 Asha > > >> Hi Joe, David, >> >> Thanks for your quick and positive response. We have added you to the list >> on the wiki page. Hoping to have a good round of validation with 5.1.0 and >> bring out a better product altogether. >> >> >> On 3/3/09, Joe Bordes wrote: >> >>> Hi, >>> >>> I understand that taking this responsability entails defining a set of >>> tests to be done, be open to other tests and bugs the community may find >>> and then centralize the errors that the community finds in each section >>> towards a small group of people who should validate the bugs and >>> (hopefully) propose the solution through the trac system to the >>> responsable vtiger team member. >>> >>> I have tooken on I18N and would like to participate (at least) in the >>> vtlib validation. If anybody wants to share these sections with me >>> contact me and we can start to define a path. >>> >>> I will proactively inform of any bugs I may find in any section of >>> vtiger CRM 5.1. >>> >>> Joe >>> TSolucio >>> >>> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >>> >>> >>>> Hi All, >>>> >>>> We would like the user community and the developers community to help >>>> us in validating the build for 5.1.0. As you already know, 5.1.0 >>>> validation build -1 is already out for testing. >>>> >>>> We have put out the important areas of testing for 5.1.0 :- >>>> http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >>>> >>>> If anyone is interested in owning any of the important areas of >>>> testing 5.1.0, you are most welcome. You can update the wiki page to >>>> keep everyone informed about it. >>>> >>>> -- >>>> Regards, >>>> Asha >>>> vtiger Team >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> -- >> Regards, >> Asha >> vtiger Team >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/2c142869/attachment-0001.htm From dhananjay at vtiger.com Tue Mar 3 23:08:45 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:38:45 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: References: <49ABF3C5.4020500@tsolucio.com> <49AD9487.2030201@gmx.net> Message-ID: <626f14180903032308l33ad155cia7625bc04eea5829@mail.gmail.com> Hi All, > > vTiger 5.1.0-val1 has the version check modified to allow the thunderbird > extension 5.0.4 to work with vtiger 5.1.0-val1. > So without changing the label it should work smoothly with 5.1.0-val1 > build. > Regards, Dhananjay vTiger Team > > > > Hi, > i didn?t even change anything e.g. left the thunderbird extension > provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 > data and could login without any problem, but i remember that the > changeover from 5.03 to 5.04 i had to do what you described Joe. This > approach works definitly. > > Best Regards > Torsten Zenk > > Joe Bordes schrieb: > > > > Hi, > > > > I downloaded the thunderbird extension available from the vtiger blog > link > > Installed it on thunderbird and saw that a "5.0.4" version was > > installed. I figured it was just the labeling but when I went to login > > it complained about version mismatch. > > I opened up the xpi, changed all the version labels to 5.1.0 and it > > worked perfect. > > > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > > > Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/fa73011d/attachment.htm From dhananjay at vtiger.com Tue Mar 3 23:15:24 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:45:24 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> Message-ID: <626f14180903032315y71c14ecdwcc7306c327c2f99b@mail.gmail.com> Hi Mack, > Can you please specify what exactly you mean by upload to leads as well as contacts ? Regards, Dhananjay vTiger Team > > Any chance that the thunderbird plugin will be extended to allow upload to > leads as well as contacts? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > > On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > >> Hi, >> >> I downloaded the thunderbird extension available from the vtiger blog link >> Installed it on thunderbird and saw that a "5.0.4" version was >> installed. I figured it was just the labeling but when I went to login >> it complained about version mismatch. >> I opened up the xpi, changed all the version labels to 5.1.0 and it >> worked perfect. >> >> Tried both on thunderbird 1.5.0.14 and 2.0.19 >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/769eafc2/attachment.htm From Hardev.Bassan at warwick.ac.uk Wed Mar 4 03:25:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 11:25:05 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: , <1236084284.17321.32.camel@joesunix.int> Message-ID: Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Wed Mar 4 08:10:47 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 16:10:47 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: , <1236084284.17321.32.camel@joesunix.int>, Message-ID: All, Further questions - I would like to display some more database fields from the activity database (fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other that the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev ________________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev Bassan [Hardev.Bassan at warwick.ac.uk] Sent: 04 March 2009 11:25 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/potentials-activity-history-0001.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/activity-history-hours-minutes-0001.pdf From asha at vtiger.com Wed Mar 4 10:17:26 2009 From: asha at vtiger.com (Asha) Date: Wed, 4 Mar 2009 23:47:26 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Hardev, Please start on a different post for the questions you have to the developers community. Do not mix it up with the subject started. We would surely like to help you out, but in a separate thread. On 3/4/09, Hardev Bassan wrote: > > All, > > Further questions - > I would like to display some more database fields from the activity > database (fields duration_hours and duration_minutes) in the potentials > -additional information - activity History area. > > Can you suggest what files and code I will need to change to get this > affect. example please. > see attached pdfs > > Also, when I add a new custom field to a module, I can see the additional > change in the xXX_CF table. But, when I search for relevant strings in the > source files under htdocs - I don't find any other that the logs (because > debug is enabled). I am using windows XP to do the search. > > Where are the new code related to the additional field in the _CF table. > Help! > > Regards > Hardev > > ________________________________________ > From: vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev > Bassan [Hardev.Bassan at warwick.ac.uk] > Sent: 04 March 2009 11:25 > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 > > > Hello All, > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/19b03e94/attachment.htm From Hardev.Bassan at warwick.ac.uk Thu Mar 5 02:35:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:05 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Message-ID: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Thu Mar 5 02:35:46 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:46 +0000 Subject: [Vtigercrm-developers] Displaying extra fields on the gui - vtiger 5.0.4 Message-ID: All, I would like to display some more database fields from the activity database (For example - fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other than in the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/potentials-activity-history-0001.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/activity-history-hours-minutes-0001.pdf From Hardev.Bassan at warwick.ac.uk Thu Mar 5 03:02:16 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 11:02:16 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Message-ID: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: accounts - primary- contact.pdf Type: application/pdf Size: 45012 bytes Desc: accounts - primary- contact.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/04e31300/accounts-primary-contact-0001.pdf From stephen at efronteras.com Thu Mar 5 04:04:28 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:04:28 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan wrote: > All, > > I am new to vtiger and php coding. My organisation would like to make use > of vtiger but it needs some functionality enhancements. I have done some of > the changes required - for others, I will appreciate if community member can > help me out with the issues that I am encountering. To start with > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/attachment-0001.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: custom field.jpg Type: image/jpeg Size: 89991 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/customfield-0001.jpg From stephen at efronteras.com Thu Mar 5 04:08:00 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:08:00 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan wrote: > All, > > I would like to create a custom field for the 'Accounts' form - see > attached, that is a link to a 'Contact' instead of just a text string. > > Is this easily possible (how?) or a no goer. > > The NOT very elegant way is to create a URL custom field and paste the url > in the field. > > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ede528ce/attachment.htm From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:00:03 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:00:03 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> References: , <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: Stephen, That only create a date field - I what a field that will have Date and Time. As a last resort - will have to have 2 extra fields as hours/minutes. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:04 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/720e97b6/attachment.htm From cbohara2 at yahoo.com Thu Mar 5 05:05:23 2009 From: cbohara2 at yahoo.com (Brad O'Hara) Date: Thu, 5 Mar 2009 05:05:23 -0800 (PST) Subject: [Vtigercrm-developers] remove me References: Message-ID: <745882.18349.qm@web32707.mail.mud.yahoo.com> Forgive me, how do I unsubscribe? Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/c12c0635/attachment.htm From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:05:51 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:05:51 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> References: , <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/262e27ee/attachment.htm From prasad at vtiger.com Thu Mar 5 05:24:20 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 5 Mar 2009 18:54:20 +0530 Subject: [Vtigercrm-developers] remove me In-Reply-To: <745882.18349.qm@web32707.mail.mud.yahoo.com> References: <745882.18349.qm@web32707.mail.mud.yahoo.com> Message-ID: <39d18b250903050524p7eda28cble5522fe602d81eb4@mail.gmail.com> Please visit http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers On 3/5/09, Brad O'Hara wrote: > > Forgive me, how do I unsubscribe? > > Brad > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ff04711e/attachment.htm From stephen at efronteras.com Thu Mar 5 05:52:32 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:52:32 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: <10701a710903050552k336df0cfg69bc6402742db180@mail.gmail.com> These are the available field types that you can choose from. Some you have to edit the database to use. http://wiki.vtiger.com/index.php/Ui_types -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:00 AM, Hardev Bassan wrote: > Stephen, > > That only create a date field - I what a field that will have Date *and > Time.* As a last resort - will have to have 2 extra fields as > hours/minutes. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:04 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in > vtiger 5.0.4 > > Login as the system admin and follow the attached picture. ;) > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: > >> All, >> >> I am new to vtiger and php coding. My organisation would like to make use >> of vtiger but it needs some functionality enhancements. I have done some of >> the changes required - for others, I will appreciate if community member can >> help me out with the issues that I am encountering. To start with >> >> Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for >> potentials) - if yes How? >> If Not - is there a quick hack (forgetting about upgrading)? >> >> Thanks in advance >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/bcc0c4b7/attachment-0001.htm From stephen at efronteras.com Thu Mar 5 05:55:35 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:55:35 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan wrote: > Stephen, > > > Contact Section - can have 1 or more contacts. > > I need a field that will only allow one name - as there is only Primary > Contact per Account our for setup. > > Regards > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:08 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > Is there a reason you don't want to use the "contact section" on the more > information tab? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: > >> All, >> >> I would like to create a custom field for the 'Accounts' form - see >> attached, that is a link to a 'Contact' instead of just a text string. >> >> Is this easily possible (how?) or a no goer. >> >> The NOT very elegant way is to create a URL custom field and paste the >> url in the field. >> >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/b1d07f80/attachment.htm From Hardev.Bassan at warwick.ac.uk Thu Mar 5 06:39:40 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 14:39:40 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> , <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: The same contact can be the 'Primary Contact' for one Account and not for another Account. This means that you will have to create 2 contact (one with label 'Primary Contact' and another without 'Primary Contacts' - also may require extra browsing action) - again not very elegant way of designing a database system. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 13:55 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan > wrote: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/a7400bb3/attachment.htm From stephen at efronteras.com Thu Mar 5 07:06:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 12:06:33 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> It sounds like your businesses' use of the system is very different than most users. That does not make it wrong just different. I'm sure it can be done but you'll have to review the code to see how records are attached as in the potential module which has the same setup as you describe for the associated "account". So the basics are there for what you want. You'll need to do some custom coding. I don't think the system is inefficient. I think your use is different. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 11:39 AM, Hardev Bassan wrote: > The same contact can be the 'Primary Contact' for one Account and not for > another Account. > > This means that you will have to create 2 contact (one with label 'Primary > Contact' and another without 'Primary Contacts' - also may require extra > browsing action) - again not very elegant way of designing a database > system. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 13:55 > > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > I created a custom picklist field in the contacts database to describe > the contact, then you can list that field in the contacts view. > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan < > Hardev.Bassan at warwick.ac.uk> wrote: > >> Stephen, >> >> >> Contact Section - can have 1 or more contacts. >> >> I need a field that will only allow one name - as there is only Primary >> Contact per Account our for setup. >> >> Regards >> Hardev >> ------------------------------ >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ >> vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen >> Mack [stephen at efronteras.com] >> *Sent:* 05 March 2009 12:08 >> *To:* vtigercrm-developers at lists.vtigercrm.com >> *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a >> link to an another table row - vtiger 5.0.4 >> >> Is there a reason you don't want to use the "contact section" on the >> more information tab? >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> >> On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan < >> Hardev.Bassan at warwick.ac.uk> wrote: >> >>> All, >>> >>> I would like to create a custom field for the 'Accounts' form - see >>> attached, that is a link to a 'Contact' instead of just a text string. >>> >>> Is this easily possible (how?) or a no goer. >>> >>> The NOT very elegant way is to create a URL custom field and paste the >>> url in the field. >>> >>> >>> Regards >>> Hardev >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/1e3d0a29/attachment-0001.htm From carloz at gnumerica.org Fri Mar 6 00:44:09 2009 From: carloz at gnumerica.org (carlo beschi) Date: Fri, 06 Mar 2009 09:44:09 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49B0E259.9020704@gnumerica.org> Hi all, Joe Bordes ha scritto: > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. I'm willing to help in the i18n area (internationalization issues). I'll report to Joe. See this thread too: http://forums.vtiger.com/viewtopic.php?t=23521 carloz From ddfire at gmail.com Fri Mar 6 06:51:11 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 12:51:11 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? Message-ID: hi how to uninstall vtlib installed module? i cant find any option in the module manager maybe you should add the option. Thanks David -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/ae66b970/attachment.html From prasad at vtiger.com Fri Mar 6 07:16:10 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 6 Mar 2009 20:46:10 +0530 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: References: Message-ID: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Hi David, Deleting the module is dangerous, hence I we decided not to provide it right away But here is development tip I can share: detele(); } ?> NOTE: 1. The underlying tables are not deleted to make sure data is not lost ! 2. You need to manually delete the related folders from modules/MODULENAME Hope this was useful information. Regards, Prasad vtiger Team On 3/6/09, David fire wrote: > > hi > how to uninstall vtlib installed module? > i cant find any option in the module manager maybe you should add the > option. > Thanks > David > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/88ed2c6f/attachment.htm From ddfire at gmail.com Fri Mar 6 07:25:34 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 13:25:34 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> References: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Message-ID: thanks 2009/3/6 Prasad > Hi David, > > Deleting the module is dangerous, hence I we decided not to provide it > right away > > But here is development tip I can share: > > $Vtiger_Utils_Log = true; > include_once('vtlib/Vtiger/Module.php'); > > $module = Vtiger_Module::getInstance('MODULENAME'); > if($module) { > $module->detele(); > } > ?> > > NOTE: > > 1. The underlying tables are not deleted to make sure data is not lost > ! > 2. You need to manually delete the related folders from > modules/MODULENAME > > Hope this was useful information. > > Regards, > Prasad > vtiger Team > > On 3/6/09, David fire wrote: > >> hi >> how to uninstall vtlib installed module? >> i cant find any option in the module manager maybe you should add the >> option. >> Thanks >> David >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/19b6d181/attachment.htm From prasad at vtiger.com Fri Mar 6 11:45:05 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 7 Mar 2009 01:15:05 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0: Forum Group Message-ID: <39d18b250903061145k32b88067mce6f5d8a9bf39f10@mail.gmail.com> Dear vtigers, In order to capture discussions related to vtiger CRM 5.1.0, we have created new forum group at http://forums.vtiger.com/index.php?c=15 Keep up your spirit of discussion and feedback. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/d0b67ded/attachment.htm From joe at tsolucio.com Sat Mar 7 01:00:01 2009 From: joe at tsolucio.com (Joe Bordes) Date: Sat, 07 Mar 2009 10:00:01 +0100 Subject: [Vtigercrm-developers] trac emails Message-ID: <49B23791.8070405@tsolucio.com> Hi, I've noticed that I am not receiving email notifications when trac tickets I have created are modified. This is important because without these notifications I have to go into trac every once and a while to see if anything has changed. For example, I have checked today and found that vtiger is waiting for me on one ticket. It's curious because I do receive some emails from trac. I wouldn't want to bother other trac users, but this would be very useful for me. Thanks, Joe TSolucio From jnaneshwar.bantanur at kavach.net Sun Mar 8 23:26:05 2009 From: jnaneshwar.bantanur at kavach.net (Jnaneshwar Bantanur) Date: Mon, 09 Mar 2009 11:56:05 +0530 Subject: [Vtigercrm-developers] E mail issue(CC and BCC).. Message-ID: <49B4B67D.7090606@kavach.net> Hello all, I am facing a strange problem.Whenever I send mail to a lead,I CC that mail to my Sales Head and BCC to my VP.But customer receives the mail only my Id is visible to him,where as CC field is not visible.Even I tried to put my Sales Head Id Also in the To field.But it's not working ! If anybody can help in this regard will be of great help.Thanks in advance for all the valuable suggestions. -------------- next part -------------- A non-text attachment was scrubbed... Name: jnaneshwar_bantanur.vcf Type: text/x-vcard Size: 379 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090308/a98c9ba7/jnaneshwar_bantanur.vcf From ddfire at gmail.com Mon Mar 9 08:25:33 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 13:25:33 -0200 Subject: [Vtigercrm-developers] vtlib and columntype Message-ID: hi i read the docs ones and again the only conclucion i get is when making a new field using vtlib only put columntype when it is varchar. it is correct? Thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/d65bd54b/attachment.htm From prasad at vtiger.com Mon Mar 9 11:41:57 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:11:57 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: Message-ID: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Hi David, You can set the columntype to any valid SQL type. If the table to which field is bound does not have the column the columntype will be used for creating it. By default, columntype is set as VARCHAR. Let me know if this clarified the doubt. Regards, Prasad vtiger Team On 3/9/09, David fire wrote: > > hi > i read the docs ones and again the only conclucion i get is when making a > new field using vtlib only put columntype when it is varchar. > it is correct? > Thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/90850a97/attachment-0001.htm From ddfire at gmail.com Mon Mar 9 11:56:38 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 16:56:38 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: in the payslip example for example for CreatedTime field you dont put any columntype. it is varchar(255) ??? i should use varchar always or what i should do? Thanks David 2009/3/9 Prasad > Hi David, > > You can set the columntype to any valid SQL type. > > If the table to which field is bound does not have the column the > columntype will be used for creating it. > > By default, columntype is set as VARCHAR. > > Let me know if this clarified the doubt. > > Regards, > Prasad > vtiger Team > > On 3/9/09, David fire wrote: > >> hi >> i read the docs ones and again the only conclucion i get is when making a >> new field using vtlib only put columntype when it is varchar. >> it is correct? >> Thanks >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/4b767251/attachment.htm From prasad at vtiger.com Mon Mar 9 12:21:48 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:51:48 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Hi David, CreatedTime column name points to (tablename: vtiger_crmentity, columnname: createdtime) Since this column already exists in the table, having columntype will not help. If I were to add a CustomTime field then I would set $field->tablename = 'vtiger_mytable'; $field->columname = 'customtime'; $field->columntype = 'DATETIME'; To summarize, the columntype could be any valid SQL datatype need not necessary be VARCHAR Regards, Prasad vtiger Team On 3/10/09, David fire wrote: > > in the payslip example for example for CreatedTime field you dont put any > columntype. > it is varchar(255) ??? > i should use varchar always or what i should do? > Thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> You can set the columntype to any valid SQL type. >> >> If the table to which field is bound does not have the column the >> columntype will be used for creating it. >> >> By default, columntype is set as VARCHAR. >> >> Let me know if this clarified the doubt. >> >> Regards, >> Prasad >> vtiger Team >> >> On 3/9/09, David fire wrote: >> >>> hi >>> i read the docs ones and again the only conclucion i get is when making a >>> new field using vtlib only put columntype when it is varchar. >>> it is correct? >>> Thanks >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/8f88c3ec/attachment.htm From ddfire at gmail.com Mon Mar 9 12:26:18 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 17:26:18 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: thanks David 2009/3/9 Prasad > Hi David, > > CreatedTime column name points to (tablename: vtiger_crmentity, columnname: > createdtime) > Since this column already exists in the table, having columntype will not > help. > > If I were to add a CustomTime field then I would set > > $field->tablename = 'vtiger_mytable'; > $field->columname = 'customtime'; > $field->columntype = 'DATETIME'; > > To summarize, the columntype could be any valid SQL datatype need not > necessary be VARCHAR > > Regards, > Prasad > vtiger Team > > > On 3/10/09, David fire wrote: >> >> in the payslip example for example for CreatedTime field you dont put any >> columntype. >> it is varchar(255) ??? >> i should use varchar always or what i should do? >> Thanks >> David >> >> 2009/3/9 Prasad >> >>> Hi David, >>> >>> You can set the columntype to any valid SQL type. >>> >>> If the table to which field is bound does not have the column the >>> columntype will be used for creating it. >>> >>> By default, columntype is set as VARCHAR. >>> >>> Let me know if this clarified the doubt. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> On 3/9/09, David fire wrote: >>> >>>> hi >>>> i read the docs ones and again the only conclucion i get is when making >>>> a new field using vtlib only put columntype when it is varchar. >>>> it is correct? >>>> Thanks >>>> >>>> -- >>>> (\__/) >>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>> (")_(")signature to help him gain world domination. >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/303c5758/attachment.htm From prasad at vtiger.com Mon Mar 9 12:33:56 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 01:03:56 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: <39d18b250903091233q4b84bd20i404a30669427a4d7@mail.gmail.com> my pleasure. - Prasad On 3/10/09, David fire wrote: > > thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> CreatedTime column name points to (tablename: vtiger_crmentity, >> columnname: createdtime) >> Since this column already exists in the table, having columntype will not >> help. >> >> If I were to add a CustomTime field then I would set >> >> $field->tablename = 'vtiger_mytable'; >> $field->columname = 'customtime'; >> $field->columntype = 'DATETIME'; >> >> To summarize, the columntype could be any valid SQL datatype need not >> necessary be VARCHAR >> >> Regards, >> Prasad >> vtiger Team >> >> >> On 3/10/09, David fire wrote: >>> >>> in the payslip example for example for CreatedTime field you dont put any >>> columntype. >>> it is varchar(255) ??? >>> i should use varchar always or what i should do? >>> Thanks >>> David >>> >>> 2009/3/9 Prasad >>> >>>> Hi David, >>>> >>>> You can set the columntype to any valid SQL type. >>>> >>>> If the table to which field is bound does not have the column the >>>> columntype will be used for creating it. >>>> >>>> By default, columntype is set as VARCHAR. >>>> >>>> Let me know if this clarified the doubt. >>>> >>>> Regards, >>>> Prasad >>>> vtiger Team >>>> >>>> On 3/9/09, David fire wrote: >>>> >>>>> hi >>>>> i read the docs ones and again the only conclucion i get is when making >>>>> a new field using vtlib only put columntype when it is varchar. >>>>> it is correct? >>>>> Thanks >>>>> >>>>> -- >>>>> (\__/) >>>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>>> (")_(")signature to help him gain world domination. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>>> >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/303ecba7/attachment-0001.htm From stephen at efronteras.com Mon Mar 9 14:16:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 9 Mar 2009 18:16:33 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension Message-ID: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Are there any plans to update the Thunderbird extension to allow emails to be attached to all four locations: * Accounts * Contacts * Leads * Vendor If I'm not wrong, it only works with contacts. The update looks great btw! -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment.htm From dhananjay at vtiger.com Tue Mar 10 01:14:05 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Tue, 10 Mar 2009 13:44:05 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Message-ID: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> > Hi Stephen, > You are right currently thunderbird plugin allows mail attachment to contacts only. Due to time constraints we didn't extend it to other locations as pointed by you. Going forward will definitely extend it. Regards, Dhananjay vTiger Team. > > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > Regards, > Nitin Goyal > Vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment.htm From stephen at efronteras.com Tue Mar 10 04:11:21 2009 From: stephen at efronteras.com (Stephen Mack) Date: Tue, 10 Mar 2009 08:11:21 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> Message-ID: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Is the source code available for others to make the modifications? Thanks for the update. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > > Hi Stephen, >> > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as > pointed by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > >> >> >> Are there any plans to update the Thunderbird extension to allow emails to >> be attached to all four locations: >> * Accounts >> * Contacts >> * Leads >> * Vendor >> >> If I'm not wrong, it only works with contacts. The update looks great >> btw! >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> -- >> Regards, >> Nitin Goyal >> Vtiger Team >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment.htm From asha at vtiger.com Tue Mar 10 04:53:24 2009 From: asha at vtiger.com (Asha) Date: Tue, 10 Mar 2009 17:23:24 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Message-ID: Hi Stephen, The source code is freely available. You can checkout and do modifications as per your requirement. On 3/10/09, Stephen Mack wrote: > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > >> >> Hi Stephen, >>> >> >> You are right currently thunderbird plugin allows mail attachment to >> contacts only. >> Due to time constraints we didn't extend it to other locations as >> pointed by you. >> Going forward will definitely extend it. >> >> Regards, >> Dhananjay >> vTiger Team. >> >>> >>> >>> Are there any plans to update the Thunderbird extension to allow emails >>> to be attached to all four locations: >>> * Accounts >>> * Contacts >>> * Leads >>> * Vendor >>> >>> If I'm not wrong, it only works with contacts. The update looks great >>> btw! >>> >>> -- Stephen Mack >>> Gerente de Ventas y Marketing >>> Escuela Fronteras >>> www.eFronteras.com >>> skype: eFronteras.Stephen >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >>> >>> >>> -- >>> Regards, >>> Nitin Goyal >>> Vtiger Team >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment.htm From rafaelbozzetti at gmail.com Tue Mar 10 10:24:28 2009 From: rafaelbozzetti at gmail.com (Rafael) Date: Tue, 10 Mar 2009 14:24:28 -0300 Subject: [Vtigercrm-developers] Add a event -> call Message-ID: Hi, I'm need make a function when insert a event type call, i'm try insert information on table directly but dont work... where i can do it? thank's -- Rafael Bozzetti - linuxuser: 418660 -------------------------------------------------- OpenS - WWW.OPENS.COM.BR -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment.htm From ml at arceva.fr Tue Mar 10 12:26:42 2009 From: ml at arceva.fr (fusioncore) Date: Tue, 10 Mar 2009 20:26:42 +0100 Subject: [Vtigercrm-developers] customer portal language translation Message-ID: <49B6BEF2.70006@arceva.fr> Hi, Does anybody know how to use the files of language corresponding to the portal user's choice in vtiger and not towards English? This post can resume the problem http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language Thanks, Bruno French community http://www.french-vtiger.fr http://forum.french-vtiger.fr From asha at vtiger.com Wed Mar 11 00:03:30 2009 From: asha at vtiger.com (Asha) Date: Wed, 11 Mar 2009 12:33:30 +0530 Subject: [Vtigercrm-developers] trac emails In-Reply-To: <49B23791.8070405@tsolucio.com> References: <49B23791.8070405@tsolucio.com> Message-ID: Hi All, To get email notifications for the ticket changes, you will have to subscribe to vtigercrm-commits from http://lists.vtigercrm.com/mailman/listinfo Also if you want to get personal notifications on ticket changes, Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email address. Let me know if this is not clear or if this doesn't help.* * On 3/7/09, Joe Bordes wrote: > > Hi, > > I've noticed that I am not receiving email notifications when trac > tickets I have created are modified. This is important because without > these notifications I have to go into trac every once and a while to see > if anything has changed. For example, I have checked today and found > that vtiger is waiting for me on one ticket. > It's curious because I do receive some emails from trac. > > I wouldn't want to bother other trac users, but this would be very > useful for me. > > Thanks, Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment-0001.htm From vikas at vtiger.com Wed Mar 11 02:33:01 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 15:03:01 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: Hi Bruno, In the PortalConfig.php of Customer Portal source we have a variable for default language,you can change the variable and add language files to language folder.Please check out the latest source from http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. Regards, Vikas Vtiger Team 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow emails > to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks great > btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to allow emails > to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do modifications > as per your requirement. > > On 3/10/09, Stephen Mack wrote: > > > > Is the source code available for others to make the modifications? > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B6BEF2.70006 at arceva.fr> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because without > > these notifications I have to go into trac every once and a while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/c91b4abf/attachment-0001.htm From ml at arceva.fr Wed Mar 11 02:55:12 2009 From: ml at arceva.fr (fusioncore) Date: Wed, 11 Mar 2009 10:55:12 +0100 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: <49B78A80.4080006@arceva.fr> Thanks Vikas, But I have already made this modification on the last source and the customer portal always us the english file of the vtiger Regards, Bruno French community http://www.french-vtiger.fr Vikas Jain a ?crit : > Hi Bruno, > In the PortalConfig.php of Customer Portal source we have a variable > for default language,you can change the variable and add language > files to language folder.Please check out the latest source from > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > Regards, > Vikas > Vtiger Team > > 2009/3/11 > > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow > emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail > attachment to > contacts only. > Due to time constraints we didn't extend it to other locations > as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? > Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to > allow emails to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update > looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do > modifications > as per your requirement. > > On 3/10/09, Stephen Mack > wrote: > > > > Is the source code available for others to make the > modifications? Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail > attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other > locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to > allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update > looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding > to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> > Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes > > wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because > without > > these notifications I have to go into trac every once and a > while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment-0001.htm From vikas at vtiger.com Wed Mar 11 03:47:24 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 16:17:24 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 14 In-Reply-To: References: Message-ID: Hi Bruno, You also need to translate the fields and blocks in the language file of customer portal. 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. Re: vtigercrm-developers Digest, Vol 39, Issue 12 (fusioncore) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 11 Mar 2009 10:55:12 +0100 > From: fusioncore > Subject: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol > 39, Issue 12 > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B78A80.4080006 at arceva.fr> > Content-Type: text/plain; charset="iso-8859-1" > > Thanks Vikas, > But I have already made this modification on the last source and the > customer portal always us the english file of the vtiger > > Regards, > > Bruno > French community > http://www.french-vtiger.fr > > > Vikas Jain a ?crit : > > Hi Bruno, > > In the PortalConfig.php of Customer Portal source we have a variable > > for default language,you can change the variable and add language > > files to language folder.Please check out the latest source from > > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > > > Regards, > > Vikas > > Vtiger Team > > > > 2009/3/11 > > > > > > Send vtigercrm-developers mailing list submissions to > > vtigercrm-developers at lists.vtigercrm.com > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > > vtigercrm-developers-request at lists.vtigercrm.com > > > > > > You can reach the person managing the list at > > vtigercrm-developers-owner at lists.vtigercrm.com > > > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of vtigercrm-developers digest..." > > > > > > Today's Topics: > > > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > > 4. Re: 5.1.0 Thunderbird extension (Asha) > > 5. Add a event -> call (Rafael) > > 6. customer portal language translation (fusioncore) > > 7. Re: trac emails (Asha) > > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 9 Mar 2009 18:16:33 -0300 > > From: Stephen Mack > > > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 10 Mar 2009 13:44:05 +0530 > > From: Dhananjay Kumar > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > > Hi Stephen, > > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations > > as pointed > > by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > > > > > > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > > be attached to all four locations: > > > * Accounts > > > * Contacts > > > * Leads > > > * Vendor > > > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > > -- > > > Regards, > > > Nitin Goyal > > > Vtiger Team > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > > > ------------------------------ > > > > Message: 3 > > Date: Tue, 10 Mar 2009 08:11:21 -0300 > > From: Stephen Mack > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Is the source code available for others to make the modifications? > > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > > > > Hi Stephen, > > >> > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > > contacts only. > > > Due to time constraints we didn't extend it to other locations > as > > > pointed by you. > > > Going forward will definitely extend it. > > > > > > Regards, > > > Dhananjay > > > vTiger Team. > > > > > >> > > >> > > >> Are there any plans to update the Thunderbird extension to > > allow emails to > > >> be attached to all four locations: > > >> * Accounts > > >> * Contacts > > >> * Leads > > >> * Vendor > > >> > > >> If I'm not wrong, it only works with contacts. The update > > looks great > > >> btw! > > >> > > >> -- Stephen Mack > > >> Gerente de Ventas y Marketing > > >> Escuela Fronteras > > >> www.eFronteras.com > > >> skype: eFronteras.Stephen > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > >> > > >> > > >> -- > > >> Regards, > > >> Nitin Goyal > > >> Vtiger Team > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > > > ------------------------------ > > > > Message: 4 > > Date: Tue, 10 Mar 2009 17:23:24 +0530 > > From: Asha > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi Stephen, > > > > The source code is freely available. You can checkout and do > > modifications > > as per your requirement. > > > > On 3/10/09, Stephen Mack > > wrote: > > > > > > Is the source code available for others to make the > > modifications? Thanks > > > for the update. > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > >> > > >> Hi Stephen, > > >>> > > >> > > >> You are right currently thunderbird plugin allows mail > > attachment to > > >> contacts only. > > >> Due to time constraints we didn't extend it to other > > locations as > > >> pointed by you. > > >> Going forward will definitely extend it. > > >> > > >> Regards, > > >> Dhananjay > > >> vTiger Team. > > >> > > >>> > > >>> > > >>> Are there any plans to update the Thunderbird extension to > > allow emails > > >>> to be attached to all four locations: > > >>> * Accounts > > >>> * Contacts > > >>> * Leads > > >>> * Vendor > > >>> > > >>> If I'm not wrong, it only works with contacts. The update > > looks great > > >>> btw! > > >>> > > >>> -- Stephen Mack > > >>> Gerente de Ventas y Marketing > > >>> Escuela Fronteras > > >>> www.eFronteras.com > > >>> skype: eFronteras.Stephen > > >>> > > >>> _______________________________________________ > > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >>> > > >>> > > >>> > > >>> -- > > >>> Regards, > > >>> Nitin Goyal > > >>> Vtiger Team > > >>> > > >> > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > > > ------------------------------ > > > > Message: 5 > > Date: Tue, 10 Mar 2009 14:24:28 -0300 > > From: Rafael > > > > Subject: [Vtigercrm-developers] Add a event -> call > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi, > > > > I'm need make a function when insert a event type call, i'm try > insert > > information on table directly but dont work... where i can do it? > > > > thank's > > > > -- > > Rafael Bozzetti - linuxuser: 418660 > > -------------------------------------------------- > > OpenS - WWW.OPENS.COM.BR > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > > > ------------------------------ > > > > Message: 6 > > Date: Tue, 10 Mar 2009 20:26:42 +0100 > > From: fusioncore > > > Subject: [Vtigercrm-developers] customer portal language translation > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > Hi, > > > > Does anybody know how to use the files of language corresponding > > to the > > portal user's choice in vtiger and not towards English? > > This post can resume the problem > > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > < > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > > > > > Thanks, > > > > Bruno > > French community > > http://www.french-vtiger.fr > > http://forum.french-vtiger.fr > > > > > > ------------------------------ > > > > Message: 7 > > Date: Wed, 11 Mar 2009 12:33:30 +0530 > > From: Asha > > > Subject: Re: [Vtigercrm-developers] trac emails > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi All, > > > > To get email notifications for the ticket changes, you will have to > > subscribe to vtigercrm-commits from > > http://lists.vtigercrm.com/mailman/listinfo > > > > Also if you want to get personal notifications on ticket changes, > > > > Goto trac.vtiger.com -> Click Settings -> > > Fill in your Username and Email > > address. > > > > Let me know if this is not clear or if this doesn't > > help.* > > > * > > > > On 3/7/09, Joe Bordes > > > wrote: > > > > > > Hi, > > > > > > I've noticed that I am not receiving email notifications when trac > > > tickets I have created are modified. This is important because > > without > > > these notifications I have to go into trac every once and a > > while to see > > > if anything has changed. For example, I have checked today and > found > > > that vtiger is waiting for me on one ticket. > > > It's curious because I do receive some emails from trac. > > > > > > I wouldn't want to bother other trac users, but this would be very > > > useful for me. > > > > > > Thanks, Joe > > > TSolucio > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > > > ------------------------------ > > > > _______________________________________________ > > vtigercrm-developers mailing list > > vtigercrm-developers at lists.vtigercrm.com > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > > **************************************************** > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 14 > **************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/99f3deb5/attachment-0001.htm From ml at arceva.fr Thu Mar 12 02:52:58 2009 From: ml at arceva.fr (fusioncore) Date: Thu, 12 Mar 2009 10:52:58 +0100 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 14 In-Reply-To: References: Message-ID: <49B8DB7A.7040807@arceva.fr> Thanks it work fine Regards, Bruno French community http://www.french-vtiger.fr Vikas Jain a ?crit : > Hi Bruno, > You also need to translate the fields and blocks in the language file > of customer portal. > > > 2009/3/11 > > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. Re: vtigercrm-developers Digest, Vol 39, Issue 12 (fusioncore) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 11 Mar 2009 10:55:12 +0100 > From: fusioncore > > Subject: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol > 39, Issue 12 > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: <49B78A80.4080006 at arceva.fr > > > Content-Type: text/plain; charset="iso-8859-1" > > Thanks Vikas, > But I have already made this modification on the last source and the > customer portal always us the english file of the vtiger > > Regards, > > Bruno > French community > http://www.french-vtiger.fr > > > Vikas Jain a ?crit : > > Hi Bruno, > > In the PortalConfig.php of Customer Portal source we have a variable > > for default language,you can change the variable and add language > > files to language folder.Please check out the latest source from > > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > > > Regards, > > Vikas > > Vtiger Team > > > > 2009/3/11 > > >> > > > > Send vtigercrm-developers mailing list submissions to > > vtigercrm-developers at lists.vtigercrm.com > > > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > > vtigercrm-developers-request at lists.vtigercrm.com > > > > > > > > You can reach the person managing the list at > > vtigercrm-developers-owner at lists.vtigercrm.com > > > > > > > > When replying, please edit your Subject line so it is more > specific > > than "Re: Contents of vtigercrm-developers digest..." > > > > > > Today's Topics: > > > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > > 4. Re: 5.1.0 Thunderbird extension (Asha) > > 5. Add a event -> call (Rafael) > > 6. customer portal language translation (fusioncore) > > 7. Re: trac emails (Asha) > > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 9 Mar 2009 18:16:33 -0300 > > From: Stephen Mack > > >> > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > > skype: eFronteras.Stephen > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 10 Mar 2009 13:44:05 +0530 > > From: Dhananjay Kumar > > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > > Hi Stephen, > > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations > > as pointed > > by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > > > > > > > > > Are there any plans to update the Thunderbird extension to > allow > > emails to > > > be attached to all four locations: > > > * Accounts > > > * Contacts > > > * Leads > > > * Vendor > > > > > > If I'm not wrong, it only works with contacts. The update > looks > > great btw! > > > > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > > skype: eFronteras.Stephen > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > > -- > > > Regards, > > > Nitin Goyal > > > Vtiger Team > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > > > ------------------------------ > > > > Message: 3 > > Date: Tue, 10 Mar 2009 08:11:21 -0300 > > From: Stephen Mack > > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Is the source code available for others to make the > modifications? > > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > > >>wrote: > > > > > > > > Hi Stephen, > > >> > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > > contacts only. > > > Due to time constraints we didn't extend it to other > locations as > > > pointed by you. > > > Going forward will definitely extend it. > > > > > > Regards, > > > Dhananjay > > > vTiger Team. > > > > > >> > > >> > > >> Are there any plans to update the Thunderbird extension to > > allow emails to > > >> be attached to all four locations: > > >> * Accounts > > >> * Contacts > > >> * Leads > > >> * Vendor > > >> > > >> If I'm not wrong, it only works with contacts. The update > > looks great > > >> btw! > > >> > > >> -- Stephen Mack > > >> Gerente de Ventas y Marketing > > >> Escuela Fronteras > > >> www.eFronteras.com > > > >> skype: eFronteras.Stephen > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >> > > >> > > >> > > >> -- > > >> Regards, > > >> Nitin Goyal > > >> Vtiger Team > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > > > ------------------------------ > > > > Message: 4 > > Date: Tue, 10 Mar 2009 17:23:24 +0530 > > From: Asha > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi Stephen, > > > > The source code is freely available. You can checkout and do > > modifications > > as per your requirement. > > > > On 3/10/09, Stephen Mack > > >> wrote: > > > > > > Is the source code available for others to make the > > modifications? Thanks > > > for the update. > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > > skype: eFronteras.Stephen > > > > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > > >>wrote: > > > > > >> > > >> Hi Stephen, > > >>> > > >> > > >> You are right currently thunderbird plugin allows mail > > attachment to > > >> contacts only. > > >> Due to time constraints we didn't extend it to other > > locations as > > >> pointed by you. > > >> Going forward will definitely extend it. > > >> > > >> Regards, > > >> Dhananjay > > >> vTiger Team. > > >> > > >>> > > >>> > > >>> Are there any plans to update the Thunderbird extension to > > allow emails > > >>> to be attached to all four locations: > > >>> * Accounts > > >>> * Contacts > > >>> * Leads > > >>> * Vendor > > >>> > > >>> If I'm not wrong, it only works with contacts. The update > > looks great > > >>> btw! > > >>> > > >>> -- Stephen Mack > > >>> Gerente de Ventas y Marketing > > >>> Escuela Fronteras > > >>> www.eFronteras.com > > > >>> skype: eFronteras.Stephen > > >>> > > >>> _______________________________________________ > > >>> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >>> > > >>> > > >>> > > >>> -- > > >>> Regards, > > >>> Nitin Goyal > > >>> Vtiger Team > > >>> > > >> > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > > > ------------------------------ > > > > Message: 5 > > Date: Tue, 10 Mar 2009 14:24:28 -0300 > > From: Rafael > > >> > > Subject: [Vtigercrm-developers] Add a event -> call > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi, > > > > I'm need make a function when insert a event type call, i'm > try insert > > information on table directly but dont work... where i can > do it? > > > > thank's > > > > -- > > Rafael Bozzetti - linuxuser: 418660 > > -------------------------------------------------- > > OpenS - WWW.OPENS.COM.BR > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > > > ------------------------------ > > > > Message: 6 > > Date: Tue, 10 Mar 2009 20:26:42 +0100 > > From: fusioncore > >> > > Subject: [Vtigercrm-developers] customer portal language > translation > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > >> > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > Hi, > > > > Does anybody know how to use the files of language corresponding > > to the > > portal user's choice in vtiger and not towards English? > > This post can resume the problem > > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > > > > > > > > Thanks, > > > > Bruno > > French community > > http://www.french-vtiger.fr > > http://forum.french-vtiger.fr > > > > > > ------------------------------ > > > > Message: 7 > > Date: Wed, 11 Mar 2009 12:33:30 +0530 > > From: Asha > >> > > Subject: Re: [Vtigercrm-developers] trac emails > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi All, > > > > To get email notifications for the ticket changes, you will > have to > > subscribe to vtigercrm-commits from > > http://lists.vtigercrm.com/mailman/listinfo > > > > Also if you want to get personal notifications on ticket > changes, > > > > Goto trac.vtiger.com > -> Click Settings -> > > Fill in your Username and Email > > address. > > > > Let me know if this is not clear or if this doesn't > > > help.* > > * > > > > On 3/7/09, Joe Bordes >> > > wrote: > > > > > > Hi, > > > > > > I've noticed that I am not receiving email notifications > when trac > > > tickets I have created are modified. This is important because > > without > > > these notifications I have to go into trac every once and a > > while to see > > > if anything has changed. For example, I have checked today > and found > > > that vtiger is waiting for me on one ticket. > > > It's curious because I do receive some emails from trac. > > > > > > I wouldn't want to bother other trac users, but this would > be very > > > useful for me. > > > > > > Thanks, Joe > > > TSolucio > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > > > ------------------------------ > > > > _______________________________________________ > > vtigercrm-developers mailing list > > vtigercrm-developers at lists.vtigercrm.com > > > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > > **************************************************** > > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 14 > **************************************************** > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/733ed614/attachment-0001.htm From arodes at onweald.com Thu Mar 12 07:38:39 2009 From: arodes at onweald.com (Andrew Rodes) Date: Thu, 12 Mar 2009 09:38:39 -0500 Subject: [Vtigercrm-developers] WEbForm API not online? Message-ID: http://en.vtiger.com/wip/vtigerservice.php?service=webforms from http://en.vtiger.com/wip/vtigerservice.php returns an error that looks like the webforms.php isn't online. Is this correct? I assume this isn't intended? Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/521dacc8/attachment.htm From prasad at vtiger.com Thu Mar 12 07:59:34 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 12 Mar 2009 20:29:34 +0530 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: References: Message-ID: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Hi Andy, Webforms SOAP API is now depreacted and service is not available on en.vtiger.com/wip We have designed extension module (named Webforms) to provide more capabilities to capture data into different modules of vtiger CRM. This extension modules uses Webservices API. For more information, please look at: http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webforms.pdf Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: > > http://en.vtiger.com/wip/vtigerservice.php?service=webforms > > > > from > > > > http://en.vtiger.com/wip/vtigerservice.php > > > > > > > > > > returns an error that looks like the webforms.php isn?t online. > > > > Is this correct? I assume this isn?t intended? > > > > Andy > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/cc3b280f/attachment.htm From arodes at onweald.com Thu Mar 12 08:25:15 2009 From: arodes at onweald.com (Andrew Rodes) Date: Thu, 12 Mar 2009 10:25:15 -0500 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> References: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Message-ID: It looks like a great improvement, but then I suppose that means that if we have customers using the API, they will have to rewrite their interfaces to use the new API. IS there no way to leave it active for "legacy" support? Andy _____ From: Prasad [mailto:prasad at vtiger.com] Sent: Thursday, March 12, 2009 10:00 AM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] WEbForm API not online? Hi Andy, Webforms SOAP API is now depreacted and service is not available on en.vtiger.com/wip We have designed extension module (named Webforms) to provide more capabilities to capture data into different modules of vtiger CRM. This extension modules uses Webservices API. For more information, please look at: http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webform s.pdf Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: http://en.vtiger.com/wip/vtigerservice.php?service=webforms from http://en.vtiger.com/wip/vtigerservice.php returns an error that looks like the webforms.php isn't online. Is this correct? I assume this isn't intended? Andy _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/c34cf837/attachment.htm From prasad at vtiger.com Thu Mar 12 09:18:19 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 12 Mar 2009 21:48:19 +0530 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: References: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Message-ID: <39d18b250903120918w49152a46i8e0ce302f8e6c1de@mail.gmail.com> Hi Andy, We have renamed webforms.php as webforms.php.deprecated in 5.1 If you have built application using it, you can rename it back. Kindly refer to the following post to understand the reason for this change: http://forums.vtiger.com/viewtopic.php?p=77138#77138 Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: > > It looks like a great improvement, but then I suppose that means that if > we have customers using the API, they will have to rewrite their interfaces > to use the new API. IS there no way to leave it active for ?legacy? support? > > > > Andy > > > ------------------------------ > > *From:* Prasad [mailto:prasad at vtiger.com] > *Sent:* Thursday, March 12, 2009 10:00 AM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] WEbForm API not online? > > > > Hi Andy, > > Webforms SOAP API is now depreacted and service is not available on > en.vtiger.com/wip > > We have designed extension module (named Webforms) to provide more > capabilities to capture > data into different modules of vtiger CRM. This extension modules uses > Webservices API. > > For more information, please look at: > > http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webforms.pdf > > Regards, > Prasad > vtiger Team > > On 3/12/09, *Andrew Rodes* wrote: > > http://en.vtiger.com/wip/vtigerservice.php?service=webforms > > > > from > > > > http://en.vtiger.com/wip/vtigerservice.php > > > > > > > > > > returns an error that looks like the webforms.php isn?t online. > > > > Is this correct? I assume this isn?t intended? > > > > Andy > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/e70018fa/attachment-0001.htm From the_sufix at hotmail.com Mon Mar 16 06:04:41 2009 From: the_sufix at hotmail.com (Adam Novak) Date: Mon, 16 Mar 2009 14:04:41 +0100 Subject: [Vtigercrm-developers] vTiger 5.1 WebService Message-ID: I would like to update records (leads) with web service in vTiger 5.1. I can create a new lead using function doCreate and I can get information from crm using doQuery, but how can I update an existing record in crm? Is there a function that can do tithis? I would like to change lead status of an existing lead. Can somebody explain me how to do it? Thanks, Adam _________________________________________________________________ Don't just search. Find. Check out the new MSN Search! http://search.msn.com/ From prasad at vtiger.com Mon Mar 16 06:21:18 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 16 Mar 2009 18:51:18 +0530 Subject: [Vtigercrm-developers] vTiger 5.1 WebService In-Reply-To: References: Message-ID: <39d18b250903160621i295da12cxa39bbd7334527172@mail.gmail.com> Hi Adam, Achieving update on record is possible through Webservices API added in 5.1 Hope you are using vtwsclib 1.1, it is a wrapper library being developed. We will be upgrading this library soon. Regards, Prasad vtiger Team On 3/16/09, Adam Novak wrote: > > I would like to update records (leads) with web service in vTiger 5.1. I > can > create a new lead using function doCreate and I can get information from > crm using doQuery, but how can I update an existing record in crm? Is > there > a function that can do tithis? I would like to change lead status of an > existing lead. Can somebody explain me how to do it? > > Thanks, > > Adam > > > _________________________________________________________________ > Don't just search. Find. Check out the new MSN Search! > http://search.msn.com/ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090316/f2fb5c2f/attachment.htm From partout at gmail.com Mon Mar 16 20:54:37 2009 From: partout at gmail.com (David) Date: Tue, 17 Mar 2009 11:54:37 +0800 Subject: [Vtigercrm-developers] How to add more than 2 user list uitype to a page Message-ID: <49BF1EFD.6030505@gmail.com> Hi All, I am making some modification on vTiger system. Now I need to add 3 user list field to a page, and one is uitype 52, another is uitype 77. While I add the third field uitype 77, all the user list data could not be saved correctly. I don't know why, and hope someone to give me some advices. Thanks in advance. Best Regards, David Zhu From amvandemore at gmail.com Wed Mar 18 16:43:29 2009 From: amvandemore at gmail.com (Adam Vandemore) Date: Wed, 18 Mar 2009 18:43:29 -0500 Subject: [Vtigercrm-developers] Fast completions && large contact lists != AJAX Message-ID: <49C18721.8050509@gmail.com> Interesting article taken from mail sent to horde dev list. http://code.flickr.com/blog/2009/03/18/building-fast-client-side-searches/ Good read, perhap ideas for future performance increases. -- Adam Vandemore Systems Administrator IMED Mobility (605) 498-1610 From prasad at vtiger.com Wed Mar 18 21:39:45 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 19 Mar 2009 10:09:45 +0530 Subject: [Vtigercrm-developers] Fast completions && large contact lists != AJAX In-Reply-To: <49C18721.8050509@gmail.com> References: <49C18721.8050509@gmail.com> Message-ID: <39d18b250903182139v7aac40bhf7c6bad471580ce9@mail.gmail.com> Adam, Thanks for the sharing the link. Prasad vtiger Team On 3/19/09, Adam Vandemore wrote: > > Interesting article taken from mail sent to horde dev list. > > http://code.flickr.com/blog/2009/03/18/building-fast-client-side-searches/ > > Good read, perhap ideas for future performance increases. > > > -- > Adam Vandemore > Systems Administrator > IMED Mobility > (605) 498-1610 > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090318/28c02c14/attachment.htm From tzenk at gmx.net Sat Mar 21 05:52:29 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Sat, 21 Mar 2009 13:52:29 +0100 Subject: [Vtigercrm-developers] Where are the Custom fields in 5.1 In-Reply-To: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Message-ID: <49C4E30D.2070906@gmx.net> Hi everybody, i am testing the 5.1 SVN version and wonder where the Custom Fields are now that where formerly accessable through Studio > Custom Fields? Can anybody point this out? Beste Regards Torsten Stephen Mack schrieb: > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090321/c0b76d63/attachment.htm From musavir at vtiger.com Sat Mar 21 06:01:35 2009 From: musavir at vtiger.com (Musavir Khan) Date: Sat, 21 Mar 2009 18:31:35 +0530 Subject: [Vtigercrm-developers] Where are the Custom fields in 5.1 In-Reply-To: <49C4E30D.2070906@gmx.net> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <49C4E30D.2070906@gmx.net> Message-ID: Hi Torsten, Hi everybody, i am testing the 5.1 SVN version and wonder where the Custom > Fields are now that where formerly accessable through Studio > Custom > Fields? Can anybody point this out? > Custom Fields can now be managed from the Module Manager, accessible through Studio->Module Manager. get back to me if you have any other questions. Regards, MAK -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090321/9882d2b5/attachment.htm From christian.castelli at trackset.com Mon Mar 23 03:01:22 2009 From: christian.castelli at trackset.com (Christian Castelli) Date: Mon, 23 Mar 2009 11:01:22 +0100 Subject: [Vtigercrm-developers] [vt 5.04] Sortable rows in product list table Message-ID: <49C75DF2.9080408@trackset.com> Hi vtigers, I'm not following your progress for the new 5.1 version and the new features, but I've created the possibility to sort list items in the product table for Quotes/SO/Invoice modules. This improvement is important for those who cares about the order you want to save items and relies above all on javascript and these files: * Smarty/templates/Inventory/InventoryEditView.tpl * Smarty/templates/Inventory/ProductDetails.tpl * Smarty/templates/Inventory/ProductDetailsEditView.tpl * include/utils/EditViewUtils.php * include/js/Inventory.js I use Insertion class of Prototype for swapping table rows and I really delete a row with remove() function instead of using display:none CSS property. If you're interested in this work for vtiger 5.1, I'll be glad to give my code :-) Greetings -- _________________________________ *Christian Castelli* *Software Developer* christian.castelli at trackset.com *Italian Office* Via Sant'Ilario Sud,109 56021 Cascina (PI) - Italia TEL +39 050 86 65 387 FAX +39 050 80 70 136 www.trackset.com From prasad at vtiger.com Mon Mar 23 03:19:56 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 23 Mar 2009 15:49:56 +0530 Subject: [Vtigercrm-developers] [vt 5.04] Sortable rows in product list table In-Reply-To: <49C75DF2.9080408@trackset.com> References: <49C75DF2.9080408@trackset.com> Message-ID: <39d18b250903230319k1758f117j11829dea9c359e4c@mail.gmail.com> Christian Castelli, Thank you for your contribution support. We have provided the ability to sort the line items in Quotes/SO/PO/Invoice in upcoming 5.1.0 You can look at the demo at http://en.vtiger.com/wip Regards, Prasad vtiger Team On 3/23/09, Christian Castelli wrote: > > Hi vtigers, > I'm not following your progress for the new 5.1 version and the new > features, but I've created the possibility to sort list items in the > product table for Quotes/SO/Invoice modules. This improvement is > important for those who cares about the order you want to save items and > relies above all on javascript and these files: > > * Smarty/templates/Inventory/InventoryEditView.tpl > * Smarty/templates/Inventory/ProductDetails.tpl > * Smarty/templates/Inventory/ProductDetailsEditView.tpl > * include/utils/EditViewUtils.php > * include/js/Inventory.js > > I use Insertion class of Prototype for swapping table rows and I really > delete a row with remove() function instead of using display:none CSS > property. If you're interested in this work for vtiger 5.1, I'll be glad > to give my code :-) > Greetings > -- > _________________________________ > > *Christian Castelli* > *Software Developer* > christian.castelli at trackset.com > > > > *Italian Office* > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 86 65 387 > FAX +39 050 80 70 136 > www.trackset.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090323/3d2ba406/attachment-0001.htm From akos.palfi at gmail.com Wed Mar 25 13:50:12 2009 From: akos.palfi at gmail.com (palako) Date: Wed, 25 Mar 2009 13:50:12 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] vTiger 5.10 web service leads Message-ID: <22710828.post@talk.nabble.com> Hello, I would like to integrate vTiger with a third-party app. I successfully use vtwsclib-1.1 for it, I have only one problem: I can add a lead to Leads with doCreate method, but how can I fill in the "Description" field too? I tried it by add a 'description' key into the map, but this is ignored by vTiger WS. Any ideas, how to fill the description of a lead? Thanks, Akos -- View this message in context: http://www.nabble.com/vTiger-5.10-web-service-leads-tp22710828p22710828.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From Hardev.Bassan at warwick.ac.uk Thu Mar 26 04:44:10 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 26 Mar 2009 11:44:10 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> , <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> Message-ID: Steve, I did manage to create a link in the accounts to a contact - See the step-by-step guide below. I had hoped the vtiger development community to be more forth coming with suggestions but it wasn't the case. I thank you for trying to help. Regards Adding Link to Primary Contacts in Accounts Install the vtlib-2.1. Create a file call vtlib.pc.php in the vtigercrm directory with content '; echo 'vtlib Module Script'; echo ''; echo ''; echo 'vtiger CRM
'; // Turn on debugging level $Vtiger_Utils_Log = true; include_once('vtlib/Vtiger/Menu.php'); include_once('vtlib/Vtiger/Module.php'); // Create module instance and save it first $module = Vtiger_Module::getInstance('Accounts'); // Add a new module block - I don't know how to attach to an existing module block $block1 = new Vtiger_Block(); $block1->label = 'LBL_PC_INFORMATION'; $module->addBlock($block1); $field4 = new Vtiger_Field(); $field4->name = 'LinkToPC'; $field4->label= 'Link To PC'; $field4->table = 'vtiger_account'; $field4->column = 'linktopc'; $field4->columntype = 'VARCHAR(100)'; $field4->uitype = 10; $field4->typeofdata = 'V~O'; $field4->helpinfo = 'Primary Contact'; $block1->addField($field4); $field4->setRelatedModules(Array('Contacts')); # Add the following to the Accounts language file #'LinkToPC' => 'Link to Primary Contact', #'Link To PC' => 'Link To Primary Contact', #'LBL_PC_INFORMATION' => 'Extra Information', echo ''; ?> ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 15:06 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 It sounds like your businesses' use of the system is very different than most users. That does not make it wrong just different. I'm sure it can be done but you'll have to review the code to see how records are attached as in the potential module which has the same setup as you describe for the associated "account". So the basics are there for what you want. You'll need to do some custom coding. I don't think the system is inefficient. I think your use is different. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 11:39 AM, Hardev Bassan > wrote: The same contact can be the 'Primary Contact' for one Account and not for another Account. This means that you will have to create 2 contact (one with label 'Primary Contact' and another without 'Primary Contacts' - also may require extra browsing action) - again not very elegant way of designing a database system. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 13:55 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan > wrote: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090326/96868eb8/attachment.htm From asha at vtiger.com Thu Mar 26 11:20:52 2009 From: asha at vtiger.com (Asha) Date: Thu, 26 Mar 2009 23:50:52 +0530 Subject: [Vtigercrm-developers] Displaying extra fields on the gui - vtiger 5.0.4 In-Reply-To: References: Message-ID: Hi Hardev, To add more fields to 'Activities' or 'Acitivity History' in the related list of any module, you will have to change the $list_fields array in modules/Calendar/Activity.php And the queries to add new column to _cf table is handled in the file modules/Settings/AddCustomFieldToDB.php file and the line of code that actual does this, is as follows: $adb->alterTable($tableName, $columnName." ".$type, "Add_Column"); On 3/5/09, Hardev Bassan wrote: > > All, > > I would like to display some more database fields from the activity > database (For example - fields duration_hours and duration_minutes) in the > potentials -additional information - activity History area. > > Can you suggest what files and code I will need to change to get this > affect. example please. > see attached pdfs > > Also, when I add a new custom field to a module, I can see the additional > change in the xXX_CF table. But, when I search for relevant strings in the > source files under htdocs - I don't find any other than in the logs (because > debug is enabled). I am using windows XP to do the search. > > Where are the new code related to the additional field in the _CF table. > Help! > > Regards > > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090326/c07e11e4/attachment-0001.htm From prasad at vtiger.com Sat Mar 28 03:00:52 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 28 Mar 2009 15:30:52 +0530 Subject: [Vtigercrm-developers] vtwsclib - 1.2 released Message-ID: <39d18b250903280300u66fa1cebgf6e9ff761e5de69d@mail.gmail.com> Dear Members, vtwsclib 1.2 is now available, the library is updated to consume webservices provided by vtiger CRM 5.1.0 validation1. For more information look at: http://www.vtiger.com/blogs/2009/03/28/vtwsclib-12-released/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090328/e573cb81/attachment.htm From quentusrex at gmail.com Sun Mar 1 14:40:07 2009 From: quentusrex at gmail.com (William King) Date: Sun, 01 Mar 2009 11:40:07 -0800 Subject: [Vtigercrm-developers] Invoicing/Billing clients Message-ID: <49AAE497.7000606@gmail.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am considering moving to vtiger when 5.1 is released. Will it be possible to define services/products that have to be calculated from a database? For instance I have a remote backup service that charges by the monthly transfer, and the amount currently stored. I have a sql statement which will calculate both of these, if given a client_id. Will it be possible to generate an invoice based on the calculated numbers? And will it be possible to attach a client_id to the recurring invoice so that the calculations are accurate? - -William -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkmq5JIACgkQZ63Azu7rahoNrgCdEwL91ShTOKCtS2DmK4rWOBx4 gJIAn1l/z9KHbMNm17dfCiP15Hk//zrc =YrSr -----END PGP SIGNATURE----- From stephen at efronteras.com Sun Mar 1 17:53:53 2009 From: stephen at efronteras.com (Stephen Mack) Date: Sun, 1 Mar 2009 19:53:53 -0300 Subject: [Vtigercrm-developers] Submenu delay Message-ID: <10701a710903011453n48896227xb0543afd6e9e5514@mail.gmail.com> Greetings fellow coders... While using vtiger, I've found the second and third row of menus to be a wonderful idea but difficult to use because when you mouseover the main menu, it drops down to cover the other menu options. So I've been playing with the vtiger menu subsystem to correct this annoyance. I figured I would post the "patch" here first and get some feedback from the development community before I post it to the forums. The patch affects the *include/js/general.js* file only and requires the addition of two global variables and contitional use of the *setTimeout* function. The logic behind the change keeps the main menu from being desplayed on mouseover unless the user pauses on a menu item for more than half a second. When that happens the menus funciton normally until the page is refreshed. Add the global variables around line 13 var gMenu=0; var gMenuDelay; In function *fnDropDown* change the last line *tagName.style.display = 'block';* (near line 2070) in the function to look like the following: if(gMenu) tagName.style.display = 'block'; else gMenuDelay=setTimeout(function(){tagName.style.display = 'block';gMenu=1;},500); In function *fnHideDrop* add the following code to the end of the function: clearTimeout(gMenuDelay); That's it. Try it out and post your feedback. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090301/00ebdc55/attachment.html From joe at tsolucio.com Mon Mar 2 06:42:11 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 12:42:11 +0100 Subject: [Vtigercrm-developers] 5.1 Validation webmail body Message-ID: <1235994132.2172.6.camel@joesunix.int> Hi, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 The same problem is still present in 5.1 Val 1 The same solution given in the forum thread is valid I have updated the ticket A few notes: - I wanted to post this on a thread in the forum but there is no 5.1 specific section there. Maybe it's time to open up a 5.1 section in the forum? - To avoid these problems in the future it could be a good idea that, at least one of the programmers on the development team should ALWAYS be developing in a foreign language. If that isn't feasable, it's OK, that is what the rest of us are here for ;-) Joe TSolucio From asha at vtiger.com Mon Mar 2 07:06:11 2009 From: asha at vtiger.com (Asha) Date: Mon, 2 Mar 2009 17:36:11 +0530 Subject: [Vtigercrm-developers] 5.1 Validation webmail body In-Reply-To: <1235994132.2172.6.camel@joesunix.int> References: <1235994132.2172.6.camel@joesunix.int> Message-ID: Hi Joe, Thanks for the information as well as the update. We will surely pick up the fix soon and integrate it. :) On 3/2/09, Joe Bordes wrote: > > Hi, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 > > The same problem is still present in 5.1 Val 1 > The same solution given in the forum thread is valid > > I have updated the ticket > > A few notes: > > - I wanted to post this on a thread in the forum but there is no 5.1 > specific section there. Maybe it's time to open up a 5.1 section in the > forum? > > - To avoid these problems in the future it could be a good idea that, at > least one of the programmers on the development team should ALWAYS be > developing in a foreign language. If that isn't feasable, it's OK, that > is what the rest of us are here for ;-) > > Joe > TSolucio > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/9201581d/attachment.html From joe at tsolucio.com Mon Mar 2 09:57:09 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 15:57:09 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 Message-ID: <49ABF3C5.4020500@tsolucio.com> Hi, I downloaded the thunderbird extension available from the vtiger blog link Installed it on thunderbird and saw that a "5.0.4" version was installed. I figured it was just the labeling but when I went to login it complained about version mismatch. I opened up the xpi, changed all the version labels to 5.1.0 and it worked perfect. Tried both on thunderbird 1.5.0.14 and 2.0.19 Joe TSolucio From stephen at efronteras.com Mon Mar 2 10:02:12 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 2 Mar 2009 12:02:12 -0300 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> Any chance that the thunderbird plugin will be extended to allow upload to leads as well as contacts? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/389da8f6/attachment.html From partout at gmail.com Mon Mar 2 10:16:17 2009 From: partout at gmail.com (David) Date: Mon, 02 Mar 2009 23:16:17 +0800 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49ABF841.8070902@gmail.com> Hi All, Could you please tell me how to add my own menu item link to the top menu bar of vTiger. I've add new module links to the menu bar, while how to do with other types, such as other sites/my own functions? Thanks in advance. Best Regards, David Zhu From joe at tsolucio.com Mon Mar 2 10:23:42 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 16:23:42 +0100 Subject: [Vtigercrm-developers] Firefox extension 5.1.0 val1 Message-ID: <49ABF9FE.30802@tsolucio.com> Hi, Same problem as with thunderbird extension but this time it was just labeling. After changing label to 5.1.0 I could not get it to login, always get login error. Joe TSolucio From prasad at vtiger.com Tue Mar 3 00:14:06 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 3 Mar 2009 10:44:06 +0530 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF841.8070902@gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <49ABF841.8070902@gmail.com> Message-ID: <39d18b250903022114q1c3af91ard09a9b4e064a95fe@mail.gmail.com> Hi David, You will not be able to add custom links as menu item at present. Regards, Prasad vtiger Team On 3/2/09, David wrote: > > Hi All, > > Could you please tell me how to add my own menu item link to the top > menu bar of vTiger. > > I've add new module links to the menu bar, while how to do with other > types, such as other sites/my own functions? > > Thanks in advance. > > Best Regards, > David Zhu > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/0d7fc716/attachment.html From asha at vtiger.com Tue Mar 3 03:42:35 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 14:12:35 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 Message-ID: Hi All, We would like the user community and the developers community to help us in validating the build for 5.1.0. As you already know, 5.1.0 validation build -1 is already out for testing. We have put out the important areas of testing for 5.1.0 :- http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan If anyone is interested in owning any of the important areas of testing 5.1.0, you are most welcome. You can update the wiki page to keep everyone informed about it. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/02cba924/attachment.html From ddfire at gmail.com Tue Mar 3 06:57:24 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 09:57:24 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: i take the asterisk integration. please send me some info about what do you need. David 2009/3/3 Asha > Hi All, > > We would like the user community and the developers community to help us in > validating the build for 5.1.0. As you already know, 5.1.0 validation build > -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of testing > 5.1.0, you are most welcome. You can update the wiki page to keep everyone > informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/6628498b/attachment.html From joe at tsolucio.com Tue Mar 3 07:44:44 2009 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 03 Mar 2009 13:44:44 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: <1236084284.17321.32.camel@joesunix.int> Hi, I understand that taking this responsability entails defining a set of tests to be done, be open to other tests and bugs the community may find and then centralize the errors that the community finds in each section towards a small group of people who should validate the bugs and (hopefully) propose the solution through the trac system to the responsable vtiger team member. I have tooken on I18N and would like to participate (at least) in the vtlib validation. If anybody wants to share these sections with me contact me and we can start to define a path. I will proactively inform of any bugs I may find in any section of vtiger CRM 5.1. Joe TSolucio El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > Hi All, > > We would like the user community and the developers community to help > us in validating the build for 5.1.0. As you already know, 5.1.0 > validation build -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of > testing 5.1.0, you are most welcome. You can update the wiki page to > keep everyone informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From asha at vtiger.com Tue Mar 3 09:31:44 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 20:01:44 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Joe, David, Thanks for your quick and positive response. We have added you to the list on the wiki page. Hoping to have a good round of validation with 5.1.0 and bring out a better product altogether. On 3/3/09, Joe Bordes wrote: > > Hi, > > I understand that taking this responsability entails defining a set of > tests to be done, be open to other tests and bugs the community may find > and then centralize the errors that the community finds in each section > towards a small group of people who should validate the bugs and > (hopefully) propose the solution through the trac system to the > responsable vtiger team member. > > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. > > I will proactively inform of any bugs I may find in any section of > vtiger CRM 5.1. > > Joe > TSolucio > > El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > > > Hi All, > > > > We would like the user community and the developers community to help > > us in validating the build for 5.1.0. As you already know, 5.1.0 > > validation build -1 is already out for testing. > > > > We have put out the important areas of testing for 5.1.0 :- > > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > > > If anyone is interested in owning any of the important areas of > > testing 5.1.0, you are most welcome. You can update the wiki page to > > keep everyone informed about it. > > > > -- > > Regards, > > Asha > > vtiger Team > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/df133445/attachment.html From ddfire at gmail.com Tue Mar 3 10:02:22 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 13:02:22 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: i was working whit pinaki in the asterisk integration. so i all ready have some info. this is my first validation do you have some guide? or something? thanks David 2009/3/3 Asha > Hi Joe, David, > > Thanks for your quick and positive response. We have added you to the list > on the wiki page. Hoping to have a good round of validation with 5.1.0 and > bring out a better product altogether. > > > On 3/3/09, Joe Bordes wrote: >> >> Hi, >> >> I understand that taking this responsability entails defining a set of >> tests to be done, be open to other tests and bugs the community may find >> and then centralize the errors that the community finds in each section >> towards a small group of people who should validate the bugs and >> (hopefully) propose the solution through the trac system to the >> responsable vtiger team member. >> >> I have tooken on I18N and would like to participate (at least) in the >> vtlib validation. If anybody wants to share these sections with me >> contact me and we can start to define a path. >> >> I will proactively inform of any bugs I may find in any section of >> vtiger CRM 5.1. >> >> Joe >> TSolucio >> >> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >> >> > Hi All, >> > >> > We would like the user community and the developers community to help >> > us in validating the build for 5.1.0. As you already know, 5.1.0 >> > validation build -1 is already out for testing. >> > >> > We have put out the important areas of testing for 5.1.0 :- >> > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >> > >> > If anyone is interested in owning any of the important areas of >> > testing 5.1.0, you are most welcome. You can update the wiki page to >> > keep everyone informed about it. >> > >> > -- >> > Regards, >> > Asha >> > vtiger Team >> >> > _______________________________________________ >> > Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/a9768e23/attachment.html From tzenk at gmx.net Tue Mar 3 15:35:19 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:35:19 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49AD9487.2030201@gmx.net> Hi, i didn?t even change anything e.g. left the thunderbird extension provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 data and could login without any problem, but i remember that the changeover from 5.03 to 5.04 i had to do what you described Joe. This approach works definitly. Best Regards Torsten Zenk Joe Bordes schrieb: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From tzenk at gmx.net Tue Mar 3 15:42:30 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:42:30 +0100 Subject: [Vtigercrm-developers] [vtiger development] #5503: Settings > Tax Calculations no editing possible after saving edited Tax In-Reply-To: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> References: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> Message-ID: <49AD9636.8080701@gmx.net> Hi all, as the vtiger team could not reproduce the desribed error in http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5503 could please some of you winxp pro/xampp users tell us if you could reproduce that saving problem? Best Regards Torsten Zenk vtiger development schrieb: > #5503: Settings > Tax Calculations no editing possible after saving edited Tax > -----------------------------------+---------------------------------------- > Reporter: tzenk1 | Owner: developer > Type: defect | Status: new > Priority: minor | Milestone: 5.1.0 > Component: vtigercrm | Version: 5.1.0-val1 > Keywords: Edit Tax Calculations | > -----------------------------------+---------------------------------------- > In Settings > Tax Calculations no editing is possible after saving edited > Tax. Wanting to edit the just edited Strings for Original "VAT" like > "MwSt.-Deutschland" or "MwSt." does not change anything. > You can edit the fields, you can save it without any error warning, but > the data isn??t changed in any way. > > To reproduce, simply change the original VAT Name to something else, save > it and then edit it to something else again and save that again. You will > see that the second changes are not there. > > Best Regards > Torsten Zenk > > From tzenk at gmx.net Tue Mar 3 16:14:02 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 22:14:02 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49AD9D9A.4090704@gmx.net> Hi, when providing manual tests are welcome i would take the 2 calendar issues and report what i see. Best Regards Torsten Zenk David fire schrieb: > i was working whit pinaki in the asterisk integration. > so i all ready have some info. > this is my first validation do you have some guide? or something? > thanks > David > > 2009/3/3 Asha > > >> Hi Joe, David, >> >> Thanks for your quick and positive response. We have added you to the list >> on the wiki page. Hoping to have a good round of validation with 5.1.0 and >> bring out a better product altogether. >> >> >> On 3/3/09, Joe Bordes wrote: >> >>> Hi, >>> >>> I understand that taking this responsability entails defining a set of >>> tests to be done, be open to other tests and bugs the community may find >>> and then centralize the errors that the community finds in each section >>> towards a small group of people who should validate the bugs and >>> (hopefully) propose the solution through the trac system to the >>> responsable vtiger team member. >>> >>> I have tooken on I18N and would like to participate (at least) in the >>> vtlib validation. If anybody wants to share these sections with me >>> contact me and we can start to define a path. >>> >>> I will proactively inform of any bugs I may find in any section of >>> vtiger CRM 5.1. >>> >>> Joe >>> TSolucio >>> >>> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >>> >>> >>>> Hi All, >>>> >>>> We would like the user community and the developers community to help >>>> us in validating the build for 5.1.0. As you already know, 5.1.0 >>>> validation build -1 is already out for testing. >>>> >>>> We have put out the important areas of testing for 5.1.0 :- >>>> http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >>>> >>>> If anyone is interested in owning any of the important areas of >>>> testing 5.1.0, you are most welcome. You can update the wiki page to >>>> keep everyone informed about it. >>>> >>>> -- >>>> Regards, >>>> Asha >>>> vtiger Team >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> -- >> Regards, >> Asha >> vtiger Team >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/2c142869/attachment.html From dhananjay at vtiger.com Wed Mar 4 02:08:45 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:38:45 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: References: <49ABF3C5.4020500@tsolucio.com> <49AD9487.2030201@gmx.net> Message-ID: <626f14180903032308l33ad155cia7625bc04eea5829@mail.gmail.com> Hi All, > > vTiger 5.1.0-val1 has the version check modified to allow the thunderbird > extension 5.0.4 to work with vtiger 5.1.0-val1. > So without changing the label it should work smoothly with 5.1.0-val1 > build. > Regards, Dhananjay vTiger Team > > > > Hi, > i didn?t even change anything e.g. left the thunderbird extension > provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 > data and could login without any problem, but i remember that the > changeover from 5.03 to 5.04 i had to do what you described Joe. This > approach works definitly. > > Best Regards > Torsten Zenk > > Joe Bordes schrieb: > > > > Hi, > > > > I downloaded the thunderbird extension available from the vtiger blog > link > > Installed it on thunderbird and saw that a "5.0.4" version was > > installed. I figured it was just the labeling but when I went to login > > it complained about version mismatch. > > I opened up the xpi, changed all the version labels to 5.1.0 and it > > worked perfect. > > > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > > > Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/fa73011d/attachment.html From dhananjay at vtiger.com Wed Mar 4 02:15:24 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:45:24 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> Message-ID: <626f14180903032315y71c14ecdwcc7306c327c2f99b@mail.gmail.com> Hi Mack, > Can you please specify what exactly you mean by upload to leads as well as contacts ? Regards, Dhananjay vTiger Team > > Any chance that the thunderbird plugin will be extended to allow upload to > leads as well as contacts? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > > On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > >> Hi, >> >> I downloaded the thunderbird extension available from the vtiger blog link >> Installed it on thunderbird and saw that a "5.0.4" version was >> installed. I figured it was just the labeling but when I went to login >> it complained about version mismatch. >> I opened up the xpi, changed all the version labels to 5.1.0 and it >> worked perfect. >> >> Tried both on thunderbird 1.5.0.14 and 2.0.19 >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/769eafc2/attachment.html From Hardev.Bassan at warwick.ac.uk Wed Mar 4 06:25:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 11:25:05 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: , <1236084284.17321.32.camel@joesunix.int> Message-ID: Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Wed Mar 4 11:10:47 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 16:10:47 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: , <1236084284.17321.32.camel@joesunix.int>, Message-ID: All, Further questions - I would like to display some more database fields from the activity database (fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other that the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev ________________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev Bassan [Hardev.Bassan at warwick.ac.uk] Sent: 04 March 2009 11:25 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/attachment.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/attachment-0001.pdf From asha at vtiger.com Wed Mar 4 13:17:26 2009 From: asha at vtiger.com (Asha) Date: Wed, 4 Mar 2009 23:47:26 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Hardev, Please start on a different post for the questions you have to the developers community. Do not mix it up with the subject started. We would surely like to help you out, but in a separate thread. On 3/4/09, Hardev Bassan wrote: > > All, > > Further questions - > I would like to display some more database fields from the activity > database (fields duration_hours and duration_minutes) in the potentials > -additional information - activity History area. > > Can you suggest what files and code I will need to change to get this > affect. example please. > see attached pdfs > > Also, when I add a new custom field to a module, I can see the additional > change in the xXX_CF table. But, when I search for relevant strings in the > source files under htdocs - I don't find any other that the logs (because > debug is enabled). I am using windows XP to do the search. > > Where are the new code related to the additional field in the _CF table. > Help! > > Regards > Hardev > > ________________________________________ > From: vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev > Bassan [Hardev.Bassan at warwick.ac.uk] > Sent: 04 March 2009 11:25 > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 > > > Hello All, > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/19b03e94/attachment.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:35:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:05 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Message-ID: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:35:46 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:46 +0000 Subject: [Vtigercrm-developers] Displaying extra fields on the gui - vtiger 5.0.4 Message-ID: All, I would like to display some more database fields from the activity database (For example - fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other than in the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/attachment.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/attachment-0001.pdf From Hardev.Bassan at warwick.ac.uk Thu Mar 5 06:02:16 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 11:02:16 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Message-ID: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: accounts - primary- contact.pdf Type: application/pdf Size: 45012 bytes Desc: accounts - primary- contact.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/04e31300/attachment.pdf From stephen at efronteras.com Thu Mar 5 07:04:28 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:04:28 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan wrote: > All, > > I am new to vtiger and php coding. My organisation would like to make use > of vtiger but it needs some functionality enhancements. I have done some of > the changes required - for others, I will appreciate if community member can > help me out with the issues that I am encountering. To start with > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: custom field.jpg Type: image/jpeg Size: 89991 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/attachment.jpg From stephen at efronteras.com Thu Mar 5 07:08:00 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:08:00 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan wrote: > All, > > I would like to create a custom field for the 'Accounts' form - see > attached, that is a link to a 'Contact' instead of just a text string. > > Is this easily possible (how?) or a no goer. > > The NOT very elegant way is to create a URL custom field and paste the url > in the field. > > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ede528ce/attachment.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 08:00:03 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:00:03 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> References: , <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: Stephen, That only create a date field - I what a field that will have Date and Time. As a last resort - will have to have 2 extra fields as hours/minutes. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:04 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/720e97b6/attachment.html From cbohara2 at yahoo.com Thu Mar 5 08:05:23 2009 From: cbohara2 at yahoo.com (Brad O'Hara) Date: Thu, 5 Mar 2009 05:05:23 -0800 (PST) Subject: [Vtigercrm-developers] remove me References: Message-ID: <745882.18349.qm@web32707.mail.mud.yahoo.com> Forgive me, how do I unsubscribe? Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/c12c0635/attachment.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 08:05:51 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:05:51 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> References: , <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/262e27ee/attachment.html From prasad at vtiger.com Thu Mar 5 08:24:20 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 5 Mar 2009 18:54:20 +0530 Subject: [Vtigercrm-developers] remove me In-Reply-To: <745882.18349.qm@web32707.mail.mud.yahoo.com> References: <745882.18349.qm@web32707.mail.mud.yahoo.com> Message-ID: <39d18b250903050524p7eda28cble5522fe602d81eb4@mail.gmail.com> Please visit http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers On 3/5/09, Brad O'Hara wrote: > > Forgive me, how do I unsubscribe? > > Brad > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ff04711e/attachment.html From stephen at efronteras.com Thu Mar 5 08:52:32 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:52:32 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: <10701a710903050552k336df0cfg69bc6402742db180@mail.gmail.com> These are the available field types that you can choose from. Some you have to edit the database to use. http://wiki.vtiger.com/index.php/Ui_types -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:00 AM, Hardev Bassan wrote: > Stephen, > > That only create a date field - I what a field that will have Date *and > Time.* As a last resort - will have to have 2 extra fields as > hours/minutes. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:04 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in > vtiger 5.0.4 > > Login as the system admin and follow the attached picture. ;) > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: > >> All, >> >> I am new to vtiger and php coding. My organisation would like to make use >> of vtiger but it needs some functionality enhancements. I have done some of >> the changes required - for others, I will appreciate if community member can >> help me out with the issues that I am encountering. To start with >> >> Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for >> potentials) - if yes How? >> If Not - is there a quick hack (forgetting about upgrading)? >> >> Thanks in advance >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/bcc0c4b7/attachment.html From stephen at efronteras.com Thu Mar 5 08:55:35 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:55:35 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan wrote: > Stephen, > > > Contact Section - can have 1 or more contacts. > > I need a field that will only allow one name - as there is only Primary > Contact per Account our for setup. > > Regards > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:08 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > Is there a reason you don't want to use the "contact section" on the more > information tab? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: > >> All, >> >> I would like to create a custom field for the 'Accounts' form - see >> attached, that is a link to a 'Contact' instead of just a text string. >> >> Is this easily possible (how?) or a no goer. >> >> The NOT very elegant way is to create a URL custom field and paste the >> url in the field. >> >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/b1d07f80/attachment.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 09:39:40 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 14:39:40 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> , <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: The same contact can be the 'Primary Contact' for one Account and not for another Account. This means that you will have to create 2 contact (one with label 'Primary Contact' and another without 'Primary Contacts' - also may require extra browsing action) - again not very elegant way of designing a database system. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 13:55 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan > wrote: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/a7400bb3/attachment.html From stephen at efronteras.com Thu Mar 5 10:06:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 12:06:33 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> It sounds like your businesses' use of the system is very different than most users. That does not make it wrong just different. I'm sure it can be done but you'll have to review the code to see how records are attached as in the potential module which has the same setup as you describe for the associated "account". So the basics are there for what you want. You'll need to do some custom coding. I don't think the system is inefficient. I think your use is different. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 11:39 AM, Hardev Bassan wrote: > The same contact can be the 'Primary Contact' for one Account and not for > another Account. > > This means that you will have to create 2 contact (one with label 'Primary > Contact' and another without 'Primary Contacts' - also may require extra > browsing action) - again not very elegant way of designing a database > system. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 13:55 > > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > I created a custom picklist field in the contacts database to describe > the contact, then you can list that field in the contacts view. > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan < > Hardev.Bassan at warwick.ac.uk> wrote: > >> Stephen, >> >> >> Contact Section - can have 1 or more contacts. >> >> I need a field that will only allow one name - as there is only Primary >> Contact per Account our for setup. >> >> Regards >> Hardev >> ------------------------------ >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ >> vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen >> Mack [stephen at efronteras.com] >> *Sent:* 05 March 2009 12:08 >> *To:* vtigercrm-developers at lists.vtigercrm.com >> *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a >> link to an another table row - vtiger 5.0.4 >> >> Is there a reason you don't want to use the "contact section" on the >> more information tab? >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> >> On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan < >> Hardev.Bassan at warwick.ac.uk> wrote: >> >>> All, >>> >>> I would like to create a custom field for the 'Accounts' form - see >>> attached, that is a link to a 'Contact' instead of just a text string. >>> >>> Is this easily possible (how?) or a no goer. >>> >>> The NOT very elegant way is to create a URL custom field and paste the >>> url in the field. >>> >>> >>> Regards >>> Hardev >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/1e3d0a29/attachment.html From carloz at gnumerica.org Fri Mar 6 03:44:09 2009 From: carloz at gnumerica.org (carlo beschi) Date: Fri, 06 Mar 2009 09:44:09 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49B0E259.9020704@gnumerica.org> Hi all, Joe Bordes ha scritto: > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. I'm willing to help in the i18n area (internationalization issues). I'll report to Joe. See this thread too: http://forums.vtiger.com/viewtopic.php?t=23521 carloz From ddfire at gmail.com Fri Mar 6 09:51:11 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 12:51:11 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? Message-ID: hi how to uninstall vtlib installed module? i cant find any option in the module manager maybe you should add the option. Thanks David -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/ae66b970/attachment-0002.html From prasad at vtiger.com Fri Mar 6 10:16:10 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 6 Mar 2009 20:46:10 +0530 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: References: Message-ID: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Hi David, Deleting the module is dangerous, hence I we decided not to provide it right away But here is development tip I can share: detele(); } ?> NOTE: 1. The underlying tables are not deleted to make sure data is not lost ! 2. You need to manually delete the related folders from modules/MODULENAME Hope this was useful information. Regards, Prasad vtiger Team On 3/6/09, David fire wrote: > > hi > how to uninstall vtlib installed module? > i cant find any option in the module manager maybe you should add the > option. > Thanks > David > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/88ed2c6f/attachment.html From ddfire at gmail.com Fri Mar 6 10:25:34 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 13:25:34 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> References: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Message-ID: thanks 2009/3/6 Prasad > Hi David, > > Deleting the module is dangerous, hence I we decided not to provide it > right away > > But here is development tip I can share: > > $Vtiger_Utils_Log = true; > include_once('vtlib/Vtiger/Module.php'); > > $module = Vtiger_Module::getInstance('MODULENAME'); > if($module) { > $module->detele(); > } > ?> > > NOTE: > > 1. The underlying tables are not deleted to make sure data is not lost > ! > 2. You need to manually delete the related folders from > modules/MODULENAME > > Hope this was useful information. > > Regards, > Prasad > vtiger Team > > On 3/6/09, David fire wrote: > >> hi >> how to uninstall vtlib installed module? >> i cant find any option in the module manager maybe you should add the >> option. >> Thanks >> David >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/19b6d181/attachment.html From prasad at vtiger.com Fri Mar 6 14:45:05 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 7 Mar 2009 01:15:05 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0: Forum Group Message-ID: <39d18b250903061145k32b88067mce6f5d8a9bf39f10@mail.gmail.com> Dear vtigers, In order to capture discussions related to vtiger CRM 5.1.0, we have created new forum group at http://forums.vtiger.com/index.php?c=15 Keep up your spirit of discussion and feedback. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090307/d0b67ded/attachment.html From joe at tsolucio.com Sat Mar 7 04:00:01 2009 From: joe at tsolucio.com (Joe Bordes) Date: Sat, 07 Mar 2009 10:00:01 +0100 Subject: [Vtigercrm-developers] trac emails Message-ID: <49B23791.8070405@tsolucio.com> Hi, I've noticed that I am not receiving email notifications when trac tickets I have created are modified. This is important because without these notifications I have to go into trac every once and a while to see if anything has changed. For example, I have checked today and found that vtiger is waiting for me on one ticket. It's curious because I do receive some emails from trac. I wouldn't want to bother other trac users, but this would be very useful for me. Thanks, Joe TSolucio From jnaneshwar.bantanur at kavach.net Mon Mar 9 02:26:05 2009 From: jnaneshwar.bantanur at kavach.net (Jnaneshwar Bantanur) Date: Mon, 09 Mar 2009 11:56:05 +0530 Subject: [Vtigercrm-developers] E mail issue(CC and BCC).. Message-ID: <49B4B67D.7090606@kavach.net> Hello all, I am facing a strange problem.Whenever I send mail to a lead,I CC that mail to my Sales Head and BCC to my VP.But customer receives the mail only my Id is visible to him,where as CC field is not visible.Even I tried to put my Sales Head Id Also in the To field.But it's not working ! If anybody can help in this regard will be of great help.Thanks in advance for all the valuable suggestions. -------------- next part -------------- A non-text attachment was scrubbed... Name: jnaneshwar_bantanur.vcf Type: text/x-vcard Size: 379 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/a98c9ba7/attachment.vcf From ddfire at gmail.com Mon Mar 9 11:25:33 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 13:25:33 -0200 Subject: [Vtigercrm-developers] vtlib and columntype Message-ID: hi i read the docs ones and again the only conclucion i get is when making a new field using vtlib only put columntype when it is varchar. it is correct? Thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/d65bd54b/attachment.html From prasad at vtiger.com Mon Mar 9 14:41:57 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:11:57 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: Message-ID: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Hi David, You can set the columntype to any valid SQL type. If the table to which field is bound does not have the column the columntype will be used for creating it. By default, columntype is set as VARCHAR. Let me know if this clarified the doubt. Regards, Prasad vtiger Team On 3/9/09, David fire wrote: > > hi > i read the docs ones and again the only conclucion i get is when making a > new field using vtlib only put columntype when it is varchar. > it is correct? > Thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/90850a97/attachment.html From ddfire at gmail.com Mon Mar 9 14:56:38 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 16:56:38 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: in the payslip example for example for CreatedTime field you dont put any columntype. it is varchar(255) ??? i should use varchar always or what i should do? Thanks David 2009/3/9 Prasad > Hi David, > > You can set the columntype to any valid SQL type. > > If the table to which field is bound does not have the column the > columntype will be used for creating it. > > By default, columntype is set as VARCHAR. > > Let me know if this clarified the doubt. > > Regards, > Prasad > vtiger Team > > On 3/9/09, David fire wrote: > >> hi >> i read the docs ones and again the only conclucion i get is when making a >> new field using vtlib only put columntype when it is varchar. >> it is correct? >> Thanks >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/4b767251/attachment.html From prasad at vtiger.com Mon Mar 9 15:21:48 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:51:48 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Hi David, CreatedTime column name points to (tablename: vtiger_crmentity, columnname: createdtime) Since this column already exists in the table, having columntype will not help. If I were to add a CustomTime field then I would set $field->tablename = 'vtiger_mytable'; $field->columname = 'customtime'; $field->columntype = 'DATETIME'; To summarize, the columntype could be any valid SQL datatype need not necessary be VARCHAR Regards, Prasad vtiger Team On 3/10/09, David fire wrote: > > in the payslip example for example for CreatedTime field you dont put any > columntype. > it is varchar(255) ??? > i should use varchar always or what i should do? > Thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> You can set the columntype to any valid SQL type. >> >> If the table to which field is bound does not have the column the >> columntype will be used for creating it. >> >> By default, columntype is set as VARCHAR. >> >> Let me know if this clarified the doubt. >> >> Regards, >> Prasad >> vtiger Team >> >> On 3/9/09, David fire wrote: >> >>> hi >>> i read the docs ones and again the only conclucion i get is when making a >>> new field using vtlib only put columntype when it is varchar. >>> it is correct? >>> Thanks >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/8f88c3ec/attachment.html From ddfire at gmail.com Mon Mar 9 15:26:18 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 17:26:18 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: thanks David 2009/3/9 Prasad > Hi David, > > CreatedTime column name points to (tablename: vtiger_crmentity, columnname: > createdtime) > Since this column already exists in the table, having columntype will not > help. > > If I were to add a CustomTime field then I would set > > $field->tablename = 'vtiger_mytable'; > $field->columname = 'customtime'; > $field->columntype = 'DATETIME'; > > To summarize, the columntype could be any valid SQL datatype need not > necessary be VARCHAR > > Regards, > Prasad > vtiger Team > > > On 3/10/09, David fire wrote: >> >> in the payslip example for example for CreatedTime field you dont put any >> columntype. >> it is varchar(255) ??? >> i should use varchar always or what i should do? >> Thanks >> David >> >> 2009/3/9 Prasad >> >>> Hi David, >>> >>> You can set the columntype to any valid SQL type. >>> >>> If the table to which field is bound does not have the column the >>> columntype will be used for creating it. >>> >>> By default, columntype is set as VARCHAR. >>> >>> Let me know if this clarified the doubt. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> On 3/9/09, David fire wrote: >>> >>>> hi >>>> i read the docs ones and again the only conclucion i get is when making >>>> a new field using vtlib only put columntype when it is varchar. >>>> it is correct? >>>> Thanks >>>> >>>> -- >>>> (\__/) >>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>> (")_(")signature to help him gain world domination. >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/303c5758/attachment.html From prasad at vtiger.com Mon Mar 9 15:33:56 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 01:03:56 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: <39d18b250903091233q4b84bd20i404a30669427a4d7@mail.gmail.com> my pleasure. - Prasad On 3/10/09, David fire wrote: > > thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> CreatedTime column name points to (tablename: vtiger_crmentity, >> columnname: createdtime) >> Since this column already exists in the table, having columntype will not >> help. >> >> If I were to add a CustomTime field then I would set >> >> $field->tablename = 'vtiger_mytable'; >> $field->columname = 'customtime'; >> $field->columntype = 'DATETIME'; >> >> To summarize, the columntype could be any valid SQL datatype need not >> necessary be VARCHAR >> >> Regards, >> Prasad >> vtiger Team >> >> >> On 3/10/09, David fire wrote: >>> >>> in the payslip example for example for CreatedTime field you dont put any >>> columntype. >>> it is varchar(255) ??? >>> i should use varchar always or what i should do? >>> Thanks >>> David >>> >>> 2009/3/9 Prasad >>> >>>> Hi David, >>>> >>>> You can set the columntype to any valid SQL type. >>>> >>>> If the table to which field is bound does not have the column the >>>> columntype will be used for creating it. >>>> >>>> By default, columntype is set as VARCHAR. >>>> >>>> Let me know if this clarified the doubt. >>>> >>>> Regards, >>>> Prasad >>>> vtiger Team >>>> >>>> On 3/9/09, David fire wrote: >>>> >>>>> hi >>>>> i read the docs ones and again the only conclucion i get is when making >>>>> a new field using vtlib only put columntype when it is varchar. >>>>> it is correct? >>>>> Thanks >>>>> >>>>> -- >>>>> (\__/) >>>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>>> (")_(")signature to help him gain world domination. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>>> >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/303ecba7/attachment.html From stephen at efronteras.com Mon Mar 9 17:16:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 9 Mar 2009 18:16:33 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension Message-ID: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Are there any plans to update the Thunderbird extension to allow emails to be attached to all four locations: * Accounts * Contacts * Leads * Vendor If I'm not wrong, it only works with contacts. The update looks great btw! -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment.html From dhananjay at vtiger.com Tue Mar 10 04:14:05 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Tue, 10 Mar 2009 13:44:05 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Message-ID: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> > Hi Stephen, > You are right currently thunderbird plugin allows mail attachment to contacts only. Due to time constraints we didn't extend it to other locations as pointed by you. Going forward will definitely extend it. Regards, Dhananjay vTiger Team. > > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > Regards, > Nitin Goyal > Vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment.html From stephen at efronteras.com Tue Mar 10 07:11:21 2009 From: stephen at efronteras.com (Stephen Mack) Date: Tue, 10 Mar 2009 08:11:21 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> Message-ID: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Is the source code available for others to make the modifications? Thanks for the update. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > > Hi Stephen, >> > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as > pointed by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > >> >> >> Are there any plans to update the Thunderbird extension to allow emails to >> be attached to all four locations: >> * Accounts >> * Contacts >> * Leads >> * Vendor >> >> If I'm not wrong, it only works with contacts. The update looks great >> btw! >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> -- >> Regards, >> Nitin Goyal >> Vtiger Team >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment.html From asha at vtiger.com Tue Mar 10 07:53:24 2009 From: asha at vtiger.com (Asha) Date: Tue, 10 Mar 2009 17:23:24 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Message-ID: Hi Stephen, The source code is freely available. You can checkout and do modifications as per your requirement. On 3/10/09, Stephen Mack wrote: > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > >> >> Hi Stephen, >>> >> >> You are right currently thunderbird plugin allows mail attachment to >> contacts only. >> Due to time constraints we didn't extend it to other locations as >> pointed by you. >> Going forward will definitely extend it. >> >> Regards, >> Dhananjay >> vTiger Team. >> >>> >>> >>> Are there any plans to update the Thunderbird extension to allow emails >>> to be attached to all four locations: >>> * Accounts >>> * Contacts >>> * Leads >>> * Vendor >>> >>> If I'm not wrong, it only works with contacts. The update looks great >>> btw! >>> >>> -- Stephen Mack >>> Gerente de Ventas y Marketing >>> Escuela Fronteras >>> www.eFronteras.com >>> skype: eFronteras.Stephen >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >>> >>> >>> -- >>> Regards, >>> Nitin Goyal >>> Vtiger Team >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment.html From rafaelbozzetti at gmail.com Tue Mar 10 13:24:28 2009 From: rafaelbozzetti at gmail.com (Rafael) Date: Tue, 10 Mar 2009 14:24:28 -0300 Subject: [Vtigercrm-developers] Add a event -> call Message-ID: Hi, I'm need make a function when insert a event type call, i'm try insert information on table directly but dont work... where i can do it? thank's -- Rafael Bozzetti - linuxuser: 418660 -------------------------------------------------- OpenS - WWW.OPENS.COM.BR -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment.html From ml at arceva.fr Tue Mar 10 15:26:42 2009 From: ml at arceva.fr (fusioncore) Date: Tue, 10 Mar 2009 20:26:42 +0100 Subject: [Vtigercrm-developers] customer portal language translation Message-ID: <49B6BEF2.70006@arceva.fr> Hi, Does anybody know how to use the files of language corresponding to the portal user's choice in vtiger and not towards English? This post can resume the problem http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language Thanks, Bruno French community http://www.french-vtiger.fr http://forum.french-vtiger.fr From asha at vtiger.com Wed Mar 11 03:03:30 2009 From: asha at vtiger.com (Asha) Date: Wed, 11 Mar 2009 12:33:30 +0530 Subject: [Vtigercrm-developers] trac emails In-Reply-To: <49B23791.8070405@tsolucio.com> References: <49B23791.8070405@tsolucio.com> Message-ID: Hi All, To get email notifications for the ticket changes, you will have to subscribe to vtigercrm-commits from http://lists.vtigercrm.com/mailman/listinfo Also if you want to get personal notifications on ticket changes, Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email address. Let me know if this is not clear or if this doesn't help.* * On 3/7/09, Joe Bordes wrote: > > Hi, > > I've noticed that I am not receiving email notifications when trac > tickets I have created are modified. This is important because without > these notifications I have to go into trac every once and a while to see > if anything has changed. For example, I have checked today and found > that vtiger is waiting for me on one ticket. > It's curious because I do receive some emails from trac. > > I wouldn't want to bother other trac users, but this would be very > useful for me. > > Thanks, Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.html From vikas at vtiger.com Wed Mar 11 05:33:01 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 15:03:01 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: Hi Bruno, In the PortalConfig.php of Customer Portal source we have a variable for default language,you can change the variable and add language files to language folder.Please check out the latest source from http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. Regards, Vikas Vtiger Team 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow emails > to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks great > btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to allow emails > to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do modifications > as per your requirement. > > On 3/10/09, Stephen Mack wrote: > > > > Is the source code available for others to make the modifications? > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B6BEF2.70006 at arceva.fr> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because without > > these notifications I have to go into trac every once and a while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/c91b4abf/attachment.html From ml at arceva.fr Wed Mar 11 05:55:12 2009 From: ml at arceva.fr (fusioncore) Date: Wed, 11 Mar 2009 10:55:12 +0100 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: <49B78A80.4080006@arceva.fr> Thanks Vikas, But I have already made this modification on the last source and the customer portal always us the english file of the vtiger Regards, Bruno French community http://www.french-vtiger.fr Vikas Jain a ?crit : > Hi Bruno, > In the PortalConfig.php of Customer Portal source we have a variable > for default language,you can change the variable and add language > files to language folder.Please check out the latest source from > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > Regards, > Vikas > Vtiger Team > > 2009/3/11 > > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow > emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail > attachment to > contacts only. > Due to time constraints we didn't extend it to other locations > as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? > Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to > allow emails to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update > looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do > modifications > as per your requirement. > > On 3/10/09, Stephen Mack > wrote: > > > > Is the source code available for others to make the > modifications? Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail > attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other > locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to > allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update > looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding > to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> > Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes > > wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because > without > > these notifications I have to go into trac every once and a > while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment.html From vikas at vtiger.com Wed Mar 11 06:47:24 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 16:17:24 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 14 In-Reply-To: References: Message-ID: Hi Bruno, You also need to translate the fields and blocks in the language file of customer portal. 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. Re: vtigercrm-developers Digest, Vol 39, Issue 12 (fusioncore) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 11 Mar 2009 10:55:12 +0100 > From: fusioncore > Subject: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol > 39, Issue 12 > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B78A80.4080006 at arceva.fr> > Content-Type: text/plain; charset="iso-8859-1" > > Thanks Vikas, > But I have already made this modification on the last source and the > customer portal always us the english file of the vtiger > > Regards, > > Bruno > French community > http://www.french-vtiger.fr > > > Vikas Jain a ?crit : > > Hi Bruno, > > In the PortalConfig.php of Customer Portal source we have a variable > > for default language,you can change the variable and add language > > files to language folder.Please check out the latest source from > > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > > > Regards, > > Vikas > > Vtiger Team > > > > 2009/3/11 > > > > > > Send vtigercrm-developers mailing list submissions to > > vtigercrm-developers at lists.vtigercrm.com > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > > vtigercrm-developers-request at lists.vtigercrm.com > > > > > > You can reach the person managing the list at > > vtigercrm-developers-owner at lists.vtigercrm.com > > > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of vtigercrm-developers digest..." > > > > > > Today's Topics: > > > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > > 4. Re: 5.1.0 Thunderbird extension (Asha) > > 5. Add a event -> call (Rafael) > > 6. customer portal language translation (fusioncore) > > 7. Re: trac emails (Asha) > > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 9 Mar 2009 18:16:33 -0300 > > From: Stephen Mack > > > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 10 Mar 2009 13:44:05 +0530 > > From: Dhananjay Kumar > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > > Hi Stephen, > > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations > > as pointed > > by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > > > > > > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > > be attached to all four locations: > > > * Accounts > > > * Contacts > > > * Leads > > > * Vendor > > > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > > -- > > > Regards, > > > Nitin Goyal > > > Vtiger Team > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > > > ------------------------------ > > > > Message: 3 > > Date: Tue, 10 Mar 2009 08:11:21 -0300 > > From: Stephen Mack > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Is the source code available for others to make the modifications? > > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > > > > Hi Stephen, > > >> > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > > contacts only. > > > Due to time constraints we didn't extend it to other locations > as > > > pointed by you. > > > Going forward will definitely extend it. > > > > > > Regards, > > > Dhananjay > > > vTiger Team. > > > > > >> > > >> > > >> Are there any plans to update the Thunderbird extension to > > allow emails to > > >> be attached to all four locations: > > >> * Accounts > > >> * Contacts > > >> * Leads > > >> * Vendor > > >> > > >> If I'm not wrong, it only works with contacts. The update > > looks great > > >> btw! > > >> > > >> -- Stephen Mack > > >> Gerente de Ventas y Marketing > > >> Escuela Fronteras > > >> www.eFronteras.com > > >> skype: eFronteras.Stephen > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > >> > > >> > > >> -- > > >> Regards, > > >> Nitin Goyal > > >> Vtiger Team > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > > > ------------------------------ > > > > Message: 4 > > Date: Tue, 10 Mar 2009 17:23:24 +0530 > > From: Asha > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi Stephen, > > > > The source code is freely available. You can checkout and do > > modifications > > as per your requirement. > > > > On 3/10/09, Stephen Mack > > wrote: > > > > > > Is the source code available for others to make the > > modifications? Thanks > > > for the update. > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > >> > > >> Hi Stephen, > > >>> > > >> > > >> You are right currently thunderbird plugin allows mail > > attachment to > > >> contacts only. > > >> Due to time constraints we didn't extend it to other > > locations as > > >> pointed by you. > > >> Going forward will definitely extend it. > > >> > > >> Regards, > > >> Dhananjay > > >> vTiger Team. > > >> > > >>> > > >>> > > >>> Are there any plans to update the Thunderbird extension to > > allow emails > > >>> to be attached to all four locations: > > >>> * Accounts > > >>> * Contacts > > >>> * Leads > > >>> * Vendor > > >>> > > >>> If I'm not wrong, it only works with contacts. The update > > looks great > > >>> btw! > > >>> > > >>> -- Stephen Mack > > >>> Gerente de Ventas y Marketing > > >>> Escuela Fronteras > > >>> www.eFronteras.com > > >>> skype: eFronteras.Stephen > > >>> > > >>> _______________________________________________ > > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >>> > > >>> > > >>> > > >>> -- > > >>> Regards, > > >>> Nitin Goyal > > >>> Vtiger Team > > >>> > > >> > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > > > ------------------------------ > > > > Message: 5 > > Date: Tue, 10 Mar 2009 14:24:28 -0300 > > From: Rafael > > > > Subject: [Vtigercrm-developers] Add a event -> call > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi, > > > > I'm need make a function when insert a event type call, i'm try > insert > > information on table directly but dont work... where i can do it? > > > > thank's > > > > -- > > Rafael Bozzetti - linuxuser: 418660 > > -------------------------------------------------- > > OpenS - WWW.OPENS.COM.BR > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > > > ------------------------------ > > > > Message: 6 > > Date: Tue, 10 Mar 2009 20:26:42 +0100 > > From: fusioncore > > > Subject: [Vtigercrm-developers] customer portal language translation > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > Hi, > > > > Does anybody know how to use the files of language corresponding > > to the > > portal user's choice in vtiger and not towards English? > > This post can resume the problem > > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > < > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > > > > > Thanks, > > > > Bruno > > French community > > http://www.french-vtiger.fr > > http://forum.french-vtiger.fr > > > > > > ------------------------------ > > > > Message: 7 > > Date: Wed, 11 Mar 2009 12:33:30 +0530 > > From: Asha > > > Subject: Re: [Vtigercrm-developers] trac emails > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi All, > > > > To get email notifications for the ticket changes, you will have to > > subscribe to vtigercrm-commits from > > http://lists.vtigercrm.com/mailman/listinfo > > > > Also if you want to get personal notifications on ticket changes, > > > > Goto trac.vtiger.com -> Click Settings -> > > Fill in your Username and Email > > address. > > > > Let me know if this is not clear or if this doesn't > > help.* > > > * > > > > On 3/7/09, Joe Bordes > > > wrote: > > > > > > Hi, > > > > > > I've noticed that I am not receiving email notifications when trac > > > tickets I have created are modified. This is important because > > without > > > these notifications I have to go into trac every once and a > > while to see > > > if anything has changed. For example, I have checked today and > found > > > that vtiger is waiting for me on one ticket. > > > It's curious because I do receive some emails from trac. > > > > > > I wouldn't want to bother other trac users, but this would be very > > > useful for me. > > > > > > Thanks, Joe > > > TSolucio > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > > > ------------------------------ > > > > _______________________________________________ > > vtigercrm-developers mailing list > > vtigercrm-developers at lists.vtigercrm.com > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > > **************************************************** > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 14 > **************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/99f3deb5/attachment.html From ml at arceva.fr Thu Mar 12 05:52:58 2009 From: ml at arceva.fr (fusioncore) Date: Thu, 12 Mar 2009 10:52:58 +0100 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 14 In-Reply-To: References: Message-ID: <49B8DB7A.7040807@arceva.fr> Thanks it work fine Regards, Bruno French community http://www.french-vtiger.fr Vikas Jain a ?crit : > Hi Bruno, > You also need to translate the fields and blocks in the language file > of customer portal. > > > 2009/3/11 > > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. Re: vtigercrm-developers Digest, Vol 39, Issue 12 (fusioncore) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 11 Mar 2009 10:55:12 +0100 > From: fusioncore > > Subject: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol > 39, Issue 12 > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: <49B78A80.4080006 at arceva.fr > > > Content-Type: text/plain; charset="iso-8859-1" > > Thanks Vikas, > But I have already made this modification on the last source and the > customer portal always us the english file of the vtiger > > Regards, > > Bruno > French community > http://www.french-vtiger.fr > > > Vikas Jain a ?crit : > > Hi Bruno, > > In the PortalConfig.php of Customer Portal source we have a variable > > for default language,you can change the variable and add language > > files to language folder.Please check out the latest source from > > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > > > Regards, > > Vikas > > Vtiger Team > > > > 2009/3/11 > > >> > > > > Send vtigercrm-developers mailing list submissions to > > vtigercrm-developers at lists.vtigercrm.com > > > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > > vtigercrm-developers-request at lists.vtigercrm.com > > > > > > > > You can reach the person managing the list at > > vtigercrm-developers-owner at lists.vtigercrm.com > > > > > > > > When replying, please edit your Subject line so it is more > specific > > than "Re: Contents of vtigercrm-developers digest..." > > > > > > Today's Topics: > > > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > > 4. Re: 5.1.0 Thunderbird extension (Asha) > > 5. Add a event -> call (Rafael) > > 6. customer portal language translation (fusioncore) > > 7. Re: trac emails (Asha) > > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 9 Mar 2009 18:16:33 -0300 > > From: Stephen Mack > > >> > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > > skype: eFronteras.Stephen > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 10 Mar 2009 13:44:05 +0530 > > From: Dhananjay Kumar > > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > > Hi Stephen, > > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations > > as pointed > > by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > > > > > > > > > Are there any plans to update the Thunderbird extension to > allow > > emails to > > > be attached to all four locations: > > > * Accounts > > > * Contacts > > > * Leads > > > * Vendor > > > > > > If I'm not wrong, it only works with contacts. The update > looks > > great btw! > > > > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > > skype: eFronteras.Stephen > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > > -- > > > Regards, > > > Nitin Goyal > > > Vtiger Team > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > > > ------------------------------ > > > > Message: 3 > > Date: Tue, 10 Mar 2009 08:11:21 -0300 > > From: Stephen Mack > > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Is the source code available for others to make the > modifications? > > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > > >>wrote: > > > > > > > > Hi Stephen, > > >> > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > > contacts only. > > > Due to time constraints we didn't extend it to other > locations as > > > pointed by you. > > > Going forward will definitely extend it. > > > > > > Regards, > > > Dhananjay > > > vTiger Team. > > > > > >> > > >> > > >> Are there any plans to update the Thunderbird extension to > > allow emails to > > >> be attached to all four locations: > > >> * Accounts > > >> * Contacts > > >> * Leads > > >> * Vendor > > >> > > >> If I'm not wrong, it only works with contacts. The update > > looks great > > >> btw! > > >> > > >> -- Stephen Mack > > >> Gerente de Ventas y Marketing > > >> Escuela Fronteras > > >> www.eFronteras.com > > > >> skype: eFronteras.Stephen > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >> > > >> > > >> > > >> -- > > >> Regards, > > >> Nitin Goyal > > >> Vtiger Team > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > > > ------------------------------ > > > > Message: 4 > > Date: Tue, 10 Mar 2009 17:23:24 +0530 > > From: Asha > >> > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi Stephen, > > > > The source code is freely available. You can checkout and do > > modifications > > as per your requirement. > > > > On 3/10/09, Stephen Mack > > >> wrote: > > > > > > Is the source code available for others to make the > > modifications? Thanks > > > for the update. > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > > skype: eFronteras.Stephen > > > > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > > >>wrote: > > > > > >> > > >> Hi Stephen, > > >>> > > >> > > >> You are right currently thunderbird plugin allows mail > > attachment to > > >> contacts only. > > >> Due to time constraints we didn't extend it to other > > locations as > > >> pointed by you. > > >> Going forward will definitely extend it. > > >> > > >> Regards, > > >> Dhananjay > > >> vTiger Team. > > >> > > >>> > > >>> > > >>> Are there any plans to update the Thunderbird extension to > > allow emails > > >>> to be attached to all four locations: > > >>> * Accounts > > >>> * Contacts > > >>> * Leads > > >>> * Vendor > > >>> > > >>> If I'm not wrong, it only works with contacts. The update > > looks great > > >>> btw! > > >>> > > >>> -- Stephen Mack > > >>> Gerente de Ventas y Marketing > > >>> Escuela Fronteras > > >>> www.eFronteras.com > > > >>> skype: eFronteras.Stephen > > >>> > > >>> _______________________________________________ > > >>> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >>> > > >>> > > >>> > > >>> -- > > >>> Regards, > > >>> Nitin Goyal > > >>> Vtiger Team > > >>> > > >> > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - > http://jobs.vtiger.com > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > > > ------------------------------ > > > > Message: 5 > > Date: Tue, 10 Mar 2009 14:24:28 -0300 > > From: Rafael > > >> > > Subject: [Vtigercrm-developers] Add a event -> call > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi, > > > > I'm need make a function when insert a event type call, i'm > try insert > > information on table directly but dont work... where i can > do it? > > > > thank's > > > > -- > > Rafael Bozzetti - linuxuser: 418660 > > -------------------------------------------------- > > OpenS - WWW.OPENS.COM.BR > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > > > ------------------------------ > > > > Message: 6 > > Date: Tue, 10 Mar 2009 20:26:42 +0100 > > From: fusioncore > >> > > Subject: [Vtigercrm-developers] customer portal language > translation > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > >> > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > Hi, > > > > Does anybody know how to use the files of language corresponding > > to the > > portal user's choice in vtiger and not towards English? > > This post can resume the problem > > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > > > > > > > > Thanks, > > > > Bruno > > French community > > http://www.french-vtiger.fr > > http://forum.french-vtiger.fr > > > > > > ------------------------------ > > > > Message: 7 > > Date: Wed, 11 Mar 2009 12:33:30 +0530 > > From: Asha > >> > > Subject: Re: [Vtigercrm-developers] trac emails > > To: vtigercrm-developers at lists.vtigercrm.com > > > > > > Message-ID: > > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi All, > > > > To get email notifications for the ticket changes, you will > have to > > subscribe to vtigercrm-commits from > > http://lists.vtigercrm.com/mailman/listinfo > > > > Also if you want to get personal notifications on ticket > changes, > > > > Goto trac.vtiger.com > -> Click Settings -> > > Fill in your Username and Email > > address. > > > > Let me know if this is not clear or if this doesn't > > > help.* > > * > > > > On 3/7/09, Joe Bordes >> > > wrote: > > > > > > Hi, > > > > > > I've noticed that I am not receiving email notifications > when trac > > > tickets I have created are modified. This is important because > > without > > > these notifications I have to go into trac every once and a > > while to see > > > if anything has changed. For example, I have checked today > and found > > > that vtiger is waiting for me on one ticket. > > > It's curious because I do receive some emails from trac. > > > > > > I wouldn't want to bother other trac users, but this would > be very > > > useful for me. > > > > > > Thanks, Joe > > > TSolucio > > > _______________________________________________ > > > Reach hundreds of potential candidates - > http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > > > ------------------------------ > > > > _______________________________________________ > > vtigercrm-developers mailing list > > vtigercrm-developers at lists.vtigercrm.com > > > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > > **************************************************** > > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 14 > **************************************************** > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/733ed614/attachment.html From arodes at onweald.com Thu Mar 12 10:38:39 2009 From: arodes at onweald.com (Andrew Rodes) Date: Thu, 12 Mar 2009 09:38:39 -0500 Subject: [Vtigercrm-developers] WEbForm API not online? Message-ID: http://en.vtiger.com/wip/vtigerservice.php?service=webforms from http://en.vtiger.com/wip/vtigerservice.php returns an error that looks like the webforms.php isn't online. Is this correct? I assume this isn't intended? Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/521dacc8/attachment.html From prasad at vtiger.com Thu Mar 12 10:59:34 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 12 Mar 2009 20:29:34 +0530 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: References: Message-ID: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Hi Andy, Webforms SOAP API is now depreacted and service is not available on en.vtiger.com/wip We have designed extension module (named Webforms) to provide more capabilities to capture data into different modules of vtiger CRM. This extension modules uses Webservices API. For more information, please look at: http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webforms.pdf Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: > > http://en.vtiger.com/wip/vtigerservice.php?service=webforms > > > > from > > > > http://en.vtiger.com/wip/vtigerservice.php > > > > > > > > > > returns an error that looks like the webforms.php isn?t online. > > > > Is this correct? I assume this isn?t intended? > > > > Andy > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/cc3b280f/attachment.html From arodes at onweald.com Thu Mar 12 11:25:15 2009 From: arodes at onweald.com (Andrew Rodes) Date: Thu, 12 Mar 2009 10:25:15 -0500 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> References: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Message-ID: It looks like a great improvement, but then I suppose that means that if we have customers using the API, they will have to rewrite their interfaces to use the new API. IS there no way to leave it active for "legacy" support? Andy _____ From: Prasad [mailto:prasad at vtiger.com] Sent: Thursday, March 12, 2009 10:00 AM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] WEbForm API not online? Hi Andy, Webforms SOAP API is now depreacted and service is not available on en.vtiger.com/wip We have designed extension module (named Webforms) to provide more capabilities to capture data into different modules of vtiger CRM. This extension modules uses Webservices API. For more information, please look at: http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webform s.pdf Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: http://en.vtiger.com/wip/vtigerservice.php?service=webforms from http://en.vtiger.com/wip/vtigerservice.php returns an error that looks like the webforms.php isn't online. Is this correct? I assume this isn't intended? Andy _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/c34cf837/attachment.html From prasad at vtiger.com Thu Mar 12 12:18:19 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 12 Mar 2009 21:48:19 +0530 Subject: [Vtigercrm-developers] WEbForm API not online? In-Reply-To: References: <39d18b250903120759xfbfd718k1eed993cd3670683@mail.gmail.com> Message-ID: <39d18b250903120918w49152a46i8e0ce302f8e6c1de@mail.gmail.com> Hi Andy, We have renamed webforms.php as webforms.php.deprecated in 5.1 If you have built application using it, you can rename it back. Kindly refer to the following post to understand the reason for this change: http://forums.vtiger.com/viewtopic.php?p=77138#77138 Regards, Prasad vtiger Team On 3/12/09, Andrew Rodes wrote: > > It looks like a great improvement, but then I suppose that means that if > we have customers using the API, they will have to rewrite their interfaces > to use the new API. IS there no way to leave it active for ?legacy? support? > > > > Andy > > > ------------------------------ > > *From:* Prasad [mailto:prasad at vtiger.com] > *Sent:* Thursday, March 12, 2009 10:00 AM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] WEbForm API not online? > > > > Hi Andy, > > Webforms SOAP API is now depreacted and service is not available on > en.vtiger.com/wip > > We have designed extension module (named Webforms) to provide more > capabilities to capture > data into different modules of vtiger CRM. This extension modules uses > Webservices API. > > For more information, please look at: > > http://www.vtiger.com/archives/validation/5.1.0-val1/VtigerCRM_5.1.0_Webforms.pdf > > Regards, > Prasad > vtiger Team > > On 3/12/09, *Andrew Rodes* wrote: > > http://en.vtiger.com/wip/vtigerservice.php?service=webforms > > > > from > > > > http://en.vtiger.com/wip/vtigerservice.php > > > > > > > > > > returns an error that looks like the webforms.php isn?t online. > > > > Is this correct? I assume this isn?t intended? > > > > Andy > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090312/e70018fa/attachment.html From the_sufix at hotmail.com Mon Mar 16 09:04:41 2009 From: the_sufix at hotmail.com (Adam Novak) Date: Mon, 16 Mar 2009 14:04:41 +0100 Subject: [Vtigercrm-developers] vTiger 5.1 WebService Message-ID: I would like to update records (leads) with web service in vTiger 5.1. I can create a new lead using function doCreate and I can get information from crm using doQuery, but how can I update an existing record in crm? Is there a function that can do tithis? I would like to change lead status of an existing lead. Can somebody explain me how to do it? Thanks, Adam _________________________________________________________________ Don't just search. Find. Check out the new MSN Search! http://search.msn.com/ From prasad at vtiger.com Mon Mar 16 09:21:18 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 16 Mar 2009 18:51:18 +0530 Subject: [Vtigercrm-developers] vTiger 5.1 WebService In-Reply-To: References: Message-ID: <39d18b250903160621i295da12cxa39bbd7334527172@mail.gmail.com> Hi Adam, Achieving update on record is possible through Webservices API added in 5.1 Hope you are using vtwsclib 1.1, it is a wrapper library being developed. We will be upgrading this library soon. Regards, Prasad vtiger Team On 3/16/09, Adam Novak wrote: > > I would like to update records (leads) with web service in vTiger 5.1. I > can > create a new lead using function doCreate and I can get information from > crm using doQuery, but how can I update an existing record in crm? Is > there > a function that can do tithis? I would like to change lead status of an > existing lead. Can somebody explain me how to do it? > > Thanks, > > Adam > > > _________________________________________________________________ > Don't just search. Find. Check out the new MSN Search! > http://search.msn.com/ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090316/f2fb5c2f/attachment.html From partout at gmail.com Mon Mar 16 23:54:37 2009 From: partout at gmail.com (David) Date: Tue, 17 Mar 2009 11:54:37 +0800 Subject: [Vtigercrm-developers] How to add more than 2 user list uitype to a page Message-ID: <49BF1EFD.6030505@gmail.com> Hi All, I am making some modification on vTiger system. Now I need to add 3 user list field to a page, and one is uitype 52, another is uitype 77. While I add the third field uitype 77, all the user list data could not be saved correctly. I don't know why, and hope someone to give me some advices. Thanks in advance. Best Regards, David Zhu From amvandemore at gmail.com Wed Mar 18 19:43:29 2009 From: amvandemore at gmail.com (Adam Vandemore) Date: Wed, 18 Mar 2009 18:43:29 -0500 Subject: [Vtigercrm-developers] Fast completions && large contact lists != AJAX Message-ID: <49C18721.8050509@gmail.com> Interesting article taken from mail sent to horde dev list. http://code.flickr.com/blog/2009/03/18/building-fast-client-side-searches/ Good read, perhap ideas for future performance increases. -- Adam Vandemore Systems Administrator IMED Mobility (605) 498-1610 From prasad at vtiger.com Thu Mar 19 00:39:45 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 19 Mar 2009 10:09:45 +0530 Subject: [Vtigercrm-developers] Fast completions && large contact lists != AJAX In-Reply-To: <49C18721.8050509@gmail.com> References: <49C18721.8050509@gmail.com> Message-ID: <39d18b250903182139v7aac40bhf7c6bad471580ce9@mail.gmail.com> Adam, Thanks for the sharing the link. Prasad vtiger Team On 3/19/09, Adam Vandemore wrote: > > Interesting article taken from mail sent to horde dev list. > > http://code.flickr.com/blog/2009/03/18/building-fast-client-side-searches/ > > Good read, perhap ideas for future performance increases. > > > -- > Adam Vandemore > Systems Administrator > IMED Mobility > (605) 498-1610 > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090319/28c02c14/attachment.html From tzenk at gmx.net Sat Mar 21 08:52:29 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Sat, 21 Mar 2009 13:52:29 +0100 Subject: [Vtigercrm-developers] Where are the Custom fields in 5.1 In-Reply-To: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Message-ID: <49C4E30D.2070906@gmx.net> Hi everybody, i am testing the 5.1 SVN version and wonder where the Custom Fields are now that where formerly accessable through Studio > Custom Fields? Can anybody point this out? Beste Regards Torsten Stephen Mack schrieb: > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090321/c0b76d63/attachment.html From musavir at vtiger.com Sat Mar 21 09:01:35 2009 From: musavir at vtiger.com (Musavir Khan) Date: Sat, 21 Mar 2009 18:31:35 +0530 Subject: [Vtigercrm-developers] Where are the Custom fields in 5.1 In-Reply-To: <49C4E30D.2070906@gmx.net> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <49C4E30D.2070906@gmx.net> Message-ID: Hi Torsten, Hi everybody, i am testing the 5.1 SVN version and wonder where the Custom > Fields are now that where formerly accessable through Studio > Custom > Fields? Can anybody point this out? > Custom Fields can now be managed from the Module Manager, accessible through Studio->Module Manager. get back to me if you have any other questions. Regards, MAK -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090321/9882d2b5/attachment.html From christian.castelli at trackset.com Mon Mar 23 06:01:22 2009 From: christian.castelli at trackset.com (Christian Castelli) Date: Mon, 23 Mar 2009 11:01:22 +0100 Subject: [Vtigercrm-developers] [vt 5.04] Sortable rows in product list table Message-ID: <49C75DF2.9080408@trackset.com> Hi vtigers, I'm not following your progress for the new 5.1 version and the new features, but I've created the possibility to sort list items in the product table for Quotes/SO/Invoice modules. This improvement is important for those who cares about the order you want to save items and relies above all on javascript and these files: * Smarty/templates/Inventory/InventoryEditView.tpl * Smarty/templates/Inventory/ProductDetails.tpl * Smarty/templates/Inventory/ProductDetailsEditView.tpl * include/utils/EditViewUtils.php * include/js/Inventory.js I use Insertion class of Prototype for swapping table rows and I really delete a row with remove() function instead of using display:none CSS property. If you're interested in this work for vtiger 5.1, I'll be glad to give my code :-) Greetings -- _________________________________ *Christian Castelli* *Software Developer* christian.castelli at trackset.com *Italian Office* Via Sant'Ilario Sud,109 56021 Cascina (PI) - Italia TEL +39 050 86 65 387 FAX +39 050 80 70 136 www.trackset.com From prasad at vtiger.com Mon Mar 23 06:19:56 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 23 Mar 2009 15:49:56 +0530 Subject: [Vtigercrm-developers] [vt 5.04] Sortable rows in product list table In-Reply-To: <49C75DF2.9080408@trackset.com> References: <49C75DF2.9080408@trackset.com> Message-ID: <39d18b250903230319k1758f117j11829dea9c359e4c@mail.gmail.com> Christian Castelli, Thank you for your contribution support. We have provided the ability to sort the line items in Quotes/SO/PO/Invoice in upcoming 5.1.0 You can look at the demo at http://en.vtiger.com/wip Regards, Prasad vtiger Team On 3/23/09, Christian Castelli wrote: > > Hi vtigers, > I'm not following your progress for the new 5.1 version and the new > features, but I've created the possibility to sort list items in the > product table for Quotes/SO/Invoice modules. This improvement is > important for those who cares about the order you want to save items and > relies above all on javascript and these files: > > * Smarty/templates/Inventory/InventoryEditView.tpl > * Smarty/templates/Inventory/ProductDetails.tpl > * Smarty/templates/Inventory/ProductDetailsEditView.tpl > * include/utils/EditViewUtils.php > * include/js/Inventory.js > > I use Insertion class of Prototype for swapping table rows and I really > delete a row with remove() function instead of using display:none CSS > property. If you're interested in this work for vtiger 5.1, I'll be glad > to give my code :-) > Greetings > -- > _________________________________ > > *Christian Castelli* > *Software Developer* > christian.castelli at trackset.com > > > > *Italian Office* > Via Sant'Ilario Sud,109 > 56021 Cascina (PI) - Italia > TEL +39 050 86 65 387 > FAX +39 050 80 70 136 > www.trackset.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090323/3d2ba406/attachment.html From akos.palfi at gmail.com Wed Mar 25 16:50:12 2009 From: akos.palfi at gmail.com (palako) Date: Wed, 25 Mar 2009 13:50:12 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] vTiger 5.10 web service leads Message-ID: <22710828.post@talk.nabble.com> Hello, I would like to integrate vTiger with a third-party app. I successfully use vtwsclib-1.1 for it, I have only one problem: I can add a lead to Leads with doCreate method, but how can I fill in the "Description" field too? I tried it by add a 'description' key into the map, but this is ignored by vTiger WS. Any ideas, how to fill the description of a lead? Thanks, Akos -- View this message in context: http://www.nabble.com/vTiger-5.10-web-service-leads-tp22710828p22710828.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From Hardev.Bassan at warwick.ac.uk Thu Mar 26 07:44:10 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 26 Mar 2009 11:44:10 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> , <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> Message-ID: Steve, I did manage to create a link in the accounts to a contact - See the step-by-step guide below. I had hoped the vtiger development community to be more forth coming with suggestions but it wasn't the case. I thank you for trying to help. Regards Adding Link to Primary Contacts in Accounts Install the vtlib-2.1. Create a file call vtlib.pc.php in the vtigercrm directory with content '; echo 'vtlib Module Script'; echo ''; echo ''; echo 'vtiger CRM
'; // Turn on debugging level $Vtiger_Utils_Log = true; include_once('vtlib/Vtiger/Menu.php'); include_once('vtlib/Vtiger/Module.php'); // Create module instance and save it first $module = Vtiger_Module::getInstance('Accounts'); // Add a new module block - I don't know how to attach to an existing module block $block1 = new Vtiger_Block(); $block1->label = 'LBL_PC_INFORMATION'; $module->addBlock($block1); $field4 = new Vtiger_Field(); $field4->name = 'LinkToPC'; $field4->label= 'Link To PC'; $field4->table = 'vtiger_account'; $field4->column = 'linktopc'; $field4->columntype = 'VARCHAR(100)'; $field4->uitype = 10; $field4->typeofdata = 'V~O'; $field4->helpinfo = 'Primary Contact'; $block1->addField($field4); $field4->setRelatedModules(Array('Contacts')); # Add the following to the Accounts language file #'LinkToPC' => 'Link to Primary Contact', #'Link To PC' => 'Link To Primary Contact', #'LBL_PC_INFORMATION' => 'Extra Information', echo ''; ?> ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 15:06 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 It sounds like your businesses' use of the system is very different than most users. That does not make it wrong just different. I'm sure it can be done but you'll have to review the code to see how records are attached as in the potential module which has the same setup as you describe for the associated "account". So the basics are there for what you want. You'll need to do some custom coding. I don't think the system is inefficient. I think your use is different. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 11:39 AM, Hardev Bassan > wrote: The same contact can be the 'Primary Contact' for one Account and not for another Account. This means that you will have to create 2 contact (one with label 'Primary Contact' and another without 'Primary Contacts' - also may require extra browsing action) - again not very elegant way of designing a database system. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 13:55 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan > wrote: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090326/96868eb8/attachment.html From asha at vtiger.com Thu Mar 26 14:20:52 2009 From: asha at vtiger.com (Asha) Date: Thu, 26 Mar 2009 23:50:52 +0530 Subject: [Vtigercrm-developers] Displaying extra fields on the gui - vtiger 5.0.4 In-Reply-To: References: Message-ID: Hi Hardev, To add more fields to 'Activities' or 'Acitivity History' in the related list of any module, you will have to change the $list_fields array in modules/Calendar/Activity.php And the queries to add new column to _cf table is handled in the file modules/Settings/AddCustomFieldToDB.php file and the line of code that actual does this, is as follows: $adb->alterTable($tableName, $columnName." ".$type, "Add_Column"); On 3/5/09, Hardev Bassan wrote: > > All, > > I would like to display some more database fields from the activity > database (For example - fields duration_hours and duration_minutes) in the > potentials -additional information - activity History area. > > Can you suggest what files and code I will need to change to get this > affect. example please. > see attached pdfs > > Also, when I add a new custom field to a module, I can see the additional > change in the xXX_CF table. But, when I search for relevant strings in the > source files under htdocs - I don't find any other than in the logs (because > debug is enabled). I am using windows XP to do the search. > > Where are the new code related to the additional field in the _CF table. > Help! > > Regards > > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090326/c07e11e4/attachment.html From prasad at vtiger.com Sat Mar 28 06:00:52 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 28 Mar 2009 15:30:52 +0530 Subject: [Vtigercrm-developers] vtwsclib - 1.2 released Message-ID: <39d18b250903280300u66fa1cebgf6e9ff761e5de69d@mail.gmail.com> Dear Members, vtwsclib 1.2 is now available, the library is updated to consume webservices provided by vtiger CRM 5.1.0 validation1. For more information look at: http://www.vtiger.com/blogs/2009/03/28/vtwsclib-12-released/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090328/e573cb81/attachment.html From quentusrex at gmail.com Sun Mar 1 14:40:07 2009 From: quentusrex at gmail.com (William King) Date: Sun, 01 Mar 2009 11:40:07 -0800 Subject: [Vtigercrm-developers] Invoicing/Billing clients Message-ID: <49AAE497.7000606@gmail.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am considering moving to vtiger when 5.1 is released. Will it be possible to define services/products that have to be calculated from a database? For instance I have a remote backup service that charges by the monthly transfer, and the amount currently stored. I have a sql statement which will calculate both of these, if given a client_id. Will it be possible to generate an invoice based on the calculated numbers? And will it be possible to attach a client_id to the recurring invoice so that the calculations are accurate? - -William -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkmq5JIACgkQZ63Azu7rahoNrgCdEwL91ShTOKCtS2DmK4rWOBx4 gJIAn1l/z9KHbMNm17dfCiP15Hk//zrc =YrSr -----END PGP SIGNATURE----- From stephen at efronteras.com Sun Mar 1 17:53:53 2009 From: stephen at efronteras.com (Stephen Mack) Date: Sun, 1 Mar 2009 19:53:53 -0300 Subject: [Vtigercrm-developers] Submenu delay Message-ID: <10701a710903011453n48896227xb0543afd6e9e5514@mail.gmail.com> Greetings fellow coders... While using vtiger, I've found the second and third row of menus to be a wonderful idea but difficult to use because when you mouseover the main menu, it drops down to cover the other menu options. So I've been playing with the vtiger menu subsystem to correct this annoyance. I figured I would post the "patch" here first and get some feedback from the development community before I post it to the forums. The patch affects the *include/js/general.js* file only and requires the addition of two global variables and contitional use of the *setTimeout* function. The logic behind the change keeps the main menu from being desplayed on mouseover unless the user pauses on a menu item for more than half a second. When that happens the menus funciton normally until the page is refreshed. Add the global variables around line 13 var gMenu=0; var gMenuDelay; In function *fnDropDown* change the last line *tagName.style.display = 'block';* (near line 2070) in the function to look like the following: if(gMenu) tagName.style.display = 'block'; else gMenuDelay=setTimeout(function(){tagName.style.display = 'block';gMenu=1;},500); In function *fnHideDrop* add the following code to the end of the function: clearTimeout(gMenuDelay); That's it. Try it out and post your feedback. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090301/00ebdc55/attachment-0001.html From joe at tsolucio.com Mon Mar 2 06:42:11 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 12:42:11 +0100 Subject: [Vtigercrm-developers] 5.1 Validation webmail body Message-ID: <1235994132.2172.6.camel@joesunix.int> Hi, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 The same problem is still present in 5.1 Val 1 The same solution given in the forum thread is valid I have updated the ticket A few notes: - I wanted to post this on a thread in the forum but there is no 5.1 specific section there. Maybe it's time to open up a 5.1 section in the forum? - To avoid these problems in the future it could be a good idea that, at least one of the programmers on the development team should ALWAYS be developing in a foreign language. If that isn't feasable, it's OK, that is what the rest of us are here for ;-) Joe TSolucio From asha at vtiger.com Mon Mar 2 07:06:11 2009 From: asha at vtiger.com (Asha) Date: Mon, 2 Mar 2009 17:36:11 +0530 Subject: [Vtigercrm-developers] 5.1 Validation webmail body In-Reply-To: <1235994132.2172.6.camel@joesunix.int> References: <1235994132.2172.6.camel@joesunix.int> Message-ID: Hi Joe, Thanks for the information as well as the update. We will surely pick up the fix soon and integrate it. :) On 3/2/09, Joe Bordes wrote: > > Hi, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5201 > > The same problem is still present in 5.1 Val 1 > The same solution given in the forum thread is valid > > I have updated the ticket > > A few notes: > > - I wanted to post this on a thread in the forum but there is no 5.1 > specific section there. Maybe it's time to open up a 5.1 section in the > forum? > > - To avoid these problems in the future it could be a good idea that, at > least one of the programmers on the development team should ALWAYS be > developing in a foreign language. If that isn't feasable, it's OK, that > is what the rest of us are here for ;-) > > Joe > TSolucio > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/9201581d/attachment-0001.html From joe at tsolucio.com Mon Mar 2 09:57:09 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 15:57:09 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 Message-ID: <49ABF3C5.4020500@tsolucio.com> Hi, I downloaded the thunderbird extension available from the vtiger blog link Installed it on thunderbird and saw that a "5.0.4" version was installed. I figured it was just the labeling but when I went to login it complained about version mismatch. I opened up the xpi, changed all the version labels to 5.1.0 and it worked perfect. Tried both on thunderbird 1.5.0.14 and 2.0.19 Joe TSolucio From stephen at efronteras.com Mon Mar 2 10:02:12 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 2 Mar 2009 12:02:12 -0300 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> Any chance that the thunderbird plugin will be extended to allow upload to leads as well as contacts? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090302/389da8f6/attachment-0001.html From partout at gmail.com Mon Mar 2 10:16:17 2009 From: partout at gmail.com (David) Date: Mon, 02 Mar 2009 23:16:17 +0800 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49ABF841.8070902@gmail.com> Hi All, Could you please tell me how to add my own menu item link to the top menu bar of vTiger. I've add new module links to the menu bar, while how to do with other types, such as other sites/my own functions? Thanks in advance. Best Regards, David Zhu From joe at tsolucio.com Mon Mar 2 10:23:42 2009 From: joe at tsolucio.com (Joe Bordes) Date: Mon, 02 Mar 2009 16:23:42 +0100 Subject: [Vtigercrm-developers] Firefox extension 5.1.0 val1 Message-ID: <49ABF9FE.30802@tsolucio.com> Hi, Same problem as with thunderbird extension but this time it was just labeling. After changing label to 5.1.0 I could not get it to login, always get login error. Joe TSolucio From prasad at vtiger.com Tue Mar 3 00:14:06 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 3 Mar 2009 10:44:06 +0530 Subject: [Vtigercrm-developers] How to add a customized menu item(not existing module) to the top menu bar In-Reply-To: <49ABF841.8070902@gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <49ABF841.8070902@gmail.com> Message-ID: <39d18b250903022114q1c3af91ard09a9b4e064a95fe@mail.gmail.com> Hi David, You will not be able to add custom links as menu item at present. Regards, Prasad vtiger Team On 3/2/09, David wrote: > > Hi All, > > Could you please tell me how to add my own menu item link to the top > menu bar of vTiger. > > I've add new module links to the menu bar, while how to do with other > types, such as other sites/my own functions? > > Thanks in advance. > > Best Regards, > David Zhu > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/0d7fc716/attachment-0001.html From asha at vtiger.com Tue Mar 3 03:42:35 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 14:12:35 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 Message-ID: Hi All, We would like the user community and the developers community to help us in validating the build for 5.1.0. As you already know, 5.1.0 validation build -1 is already out for testing. We have put out the important areas of testing for 5.1.0 :- http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan If anyone is interested in owning any of the important areas of testing 5.1.0, you are most welcome. You can update the wiki page to keep everyone informed about it. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/02cba924/attachment-0001.html From ddfire at gmail.com Tue Mar 3 06:57:24 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 09:57:24 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: i take the asterisk integration. please send me some info about what do you need. David 2009/3/3 Asha > Hi All, > > We would like the user community and the developers community to help us in > validating the build for 5.1.0. As you already know, 5.1.0 validation build > -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of testing > 5.1.0, you are most welcome. You can update the wiki page to keep everyone > informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/6628498b/attachment-0001.html From joe at tsolucio.com Tue Mar 3 07:44:44 2009 From: joe at tsolucio.com (Joe Bordes) Date: Tue, 03 Mar 2009 13:44:44 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: Message-ID: <1236084284.17321.32.camel@joesunix.int> Hi, I understand that taking this responsability entails defining a set of tests to be done, be open to other tests and bugs the community may find and then centralize the errors that the community finds in each section towards a small group of people who should validate the bugs and (hopefully) propose the solution through the trac system to the responsable vtiger team member. I have tooken on I18N and would like to participate (at least) in the vtlib validation. If anybody wants to share these sections with me contact me and we can start to define a path. I will proactively inform of any bugs I may find in any section of vtiger CRM 5.1. Joe TSolucio El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > Hi All, > > We would like the user community and the developers community to help > us in validating the build for 5.1.0. As you already know, 5.1.0 > validation build -1 is already out for testing. > > We have put out the important areas of testing for 5.1.0 :- > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > If anyone is interested in owning any of the important areas of > testing 5.1.0, you are most welcome. You can update the wiki page to > keep everyone informed about it. > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From asha at vtiger.com Tue Mar 3 09:31:44 2009 From: asha at vtiger.com (Asha) Date: Tue, 3 Mar 2009 20:01:44 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Joe, David, Thanks for your quick and positive response. We have added you to the list on the wiki page. Hoping to have a good round of validation with 5.1.0 and bring out a better product altogether. On 3/3/09, Joe Bordes wrote: > > Hi, > > I understand that taking this responsability entails defining a set of > tests to be done, be open to other tests and bugs the community may find > and then centralize the errors that the community finds in each section > towards a small group of people who should validate the bugs and > (hopefully) propose the solution through the trac system to the > responsable vtiger team member. > > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. > > I will proactively inform of any bugs I may find in any section of > vtiger CRM 5.1. > > Joe > TSolucio > > El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: > > > Hi All, > > > > We would like the user community and the developers community to help > > us in validating the build for 5.1.0. As you already know, 5.1.0 > > validation build -1 is already out for testing. > > > > We have put out the important areas of testing for 5.1.0 :- > > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan > > > > If anyone is interested in owning any of the important areas of > > testing 5.1.0, you are most welcome. You can update the wiki page to > > keep everyone informed about it. > > > > -- > > Regards, > > Asha > > vtiger Team > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/df133445/attachment-0001.html From ddfire at gmail.com Tue Mar 3 10:02:22 2009 From: ddfire at gmail.com (David fire) Date: Tue, 3 Mar 2009 13:02:22 -0200 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: i was working whit pinaki in the asterisk integration. so i all ready have some info. this is my first validation do you have some guide? or something? thanks David 2009/3/3 Asha > Hi Joe, David, > > Thanks for your quick and positive response. We have added you to the list > on the wiki page. Hoping to have a good round of validation with 5.1.0 and > bring out a better product altogether. > > > On 3/3/09, Joe Bordes wrote: >> >> Hi, >> >> I understand that taking this responsability entails defining a set of >> tests to be done, be open to other tests and bugs the community may find >> and then centralize the errors that the community finds in each section >> towards a small group of people who should validate the bugs and >> (hopefully) propose the solution through the trac system to the >> responsable vtiger team member. >> >> I have tooken on I18N and would like to participate (at least) in the >> vtlib validation. If anybody wants to share these sections with me >> contact me and we can start to define a path. >> >> I will proactively inform of any bugs I may find in any section of >> vtiger CRM 5.1. >> >> Joe >> TSolucio >> >> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >> >> > Hi All, >> > >> > We would like the user community and the developers community to help >> > us in validating the build for 5.1.0. As you already know, 5.1.0 >> > validation build -1 is already out for testing. >> > >> > We have put out the important areas of testing for 5.1.0 :- >> > http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >> > >> > If anyone is interested in owning any of the important areas of >> > testing 5.1.0, you are most welcome. You can update the wiki page to >> > keep everyone informed about it. >> > >> > -- >> > Regards, >> > Asha >> > vtiger Team >> >> > _______________________________________________ >> > Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Regards, > Asha > vtiger Team > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/a9768e23/attachment-0001.html From tzenk at gmx.net Tue Mar 3 15:35:19 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:35:19 +0100 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <49ABF3C5.4020500@tsolucio.com> References: <49ABF3C5.4020500@tsolucio.com> Message-ID: <49AD9487.2030201@gmx.net> Hi, i didn?t even change anything e.g. left the thunderbird extension provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 data and could login without any problem, but i remember that the changeover from 5.03 to 5.04 i had to do what you described Joe. This approach works definitly. Best Regards Torsten Zenk Joe Bordes schrieb: > Hi, > > I downloaded the thunderbird extension available from the vtiger blog link > Installed it on thunderbird and saw that a "5.0.4" version was > installed. I figured it was just the labeling but when I went to login > it complained about version mismatch. > I opened up the xpi, changed all the version labels to 5.1.0 and it > worked perfect. > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From tzenk at gmx.net Tue Mar 3 15:42:30 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 21:42:30 +0100 Subject: [Vtigercrm-developers] [vtiger development] #5503: Settings > Tax Calculations no editing possible after saving edited Tax In-Reply-To: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> References: <041.d4593467b9721148db6a7001a604e89f@trac.vtiger.com> Message-ID: <49AD9636.8080701@gmx.net> Hi all, as the vtiger team could not reproduce the desribed error in http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/5503 could please some of you winxp pro/xampp users tell us if you could reproduce that saving problem? Best Regards Torsten Zenk vtiger development schrieb: > #5503: Settings > Tax Calculations no editing possible after saving edited Tax > -----------------------------------+---------------------------------------- > Reporter: tzenk1 | Owner: developer > Type: defect | Status: new > Priority: minor | Milestone: 5.1.0 > Component: vtigercrm | Version: 5.1.0-val1 > Keywords: Edit Tax Calculations | > -----------------------------------+---------------------------------------- > In Settings > Tax Calculations no editing is possible after saving edited > Tax. Wanting to edit the just edited Strings for Original "VAT" like > "MwSt.-Deutschland" or "MwSt." does not change anything. > You can edit the fields, you can save it without any error warning, but > the data isn??t changed in any way. > > To reproduce, simply change the original VAT Name to something else, save > it and then edit it to something else again and save that again. You will > see that the second changes are not there. > > Best Regards > Torsten Zenk > > From tzenk at gmx.net Tue Mar 3 16:14:02 2009 From: tzenk at gmx.net (Torsten Zenk) Date: Tue, 03 Mar 2009 22:14:02 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49AD9D9A.4090704@gmx.net> Hi, when providing manual tests are welcome i would take the 2 calendar issues and report what i see. Best Regards Torsten Zenk David fire schrieb: > i was working whit pinaki in the asterisk integration. > so i all ready have some info. > this is my first validation do you have some guide? or something? > thanks > David > > 2009/3/3 Asha > > >> Hi Joe, David, >> >> Thanks for your quick and positive response. We have added you to the list >> on the wiki page. Hoping to have a good round of validation with 5.1.0 and >> bring out a better product altogether. >> >> >> On 3/3/09, Joe Bordes wrote: >> >>> Hi, >>> >>> I understand that taking this responsability entails defining a set of >>> tests to be done, be open to other tests and bugs the community may find >>> and then centralize the errors that the community finds in each section >>> towards a small group of people who should validate the bugs and >>> (hopefully) propose the solution through the trac system to the >>> responsable vtiger team member. >>> >>> I have tooken on I18N and would like to participate (at least) in the >>> vtlib validation. If anybody wants to share these sections with me >>> contact me and we can start to define a path. >>> >>> I will proactively inform of any bugs I may find in any section of >>> vtiger CRM 5.1. >>> >>> Joe >>> TSolucio >>> >>> El mar, 03-03-2009 a las 14:12 +0530, Asha escribi?: >>> >>> >>>> Hi All, >>>> >>>> We would like the user community and the developers community to help >>>> us in validating the build for 5.1.0. As you already know, 5.1.0 >>>> validation build -1 is already out for testing. >>>> >>>> We have put out the important areas of testing for 5.1.0 :- >>>> http://wiki.vtiger.com/index.php/5.1.0_Validation_Plan >>>> >>>> If anyone is interested in owning any of the important areas of >>>> testing 5.1.0, you are most welcome. You can update the wiki page to >>>> keep everyone informed about it. >>>> >>>> -- >>>> Regards, >>>> Asha >>>> vtiger Team >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> -- >> Regards, >> Asha >> vtiger Team >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090303/2c142869/attachment-0001.html From dhananjay at vtiger.com Wed Mar 4 02:08:45 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:38:45 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: References: <49ABF3C5.4020500@tsolucio.com> <49AD9487.2030201@gmx.net> Message-ID: <626f14180903032308l33ad155cia7625bc04eea5829@mail.gmail.com> Hi All, > > vTiger 5.1.0-val1 has the version check modified to allow the thunderbird > extension 5.0.4 to work with vtiger 5.1.0-val1. > So without changing the label it should work smoothly with 5.1.0-val1 > build. > Regards, Dhananjay vTiger Team > > > > Hi, > i didn?t even change anything e.g. left the thunderbird extension > provided for 5.0.4 installed, entered newly installed vtiger 5.1.0val1 > data and could login without any problem, but i remember that the > changeover from 5.03 to 5.04 i had to do what you described Joe. This > approach works definitly. > > Best Regards > Torsten Zenk > > Joe Bordes schrieb: > > > > Hi, > > > > I downloaded the thunderbird extension available from the vtiger blog > link > > Installed it on thunderbird and saw that a "5.0.4" version was > > installed. I figured it was just the labeling but when I went to login > > it complained about version mismatch. > > I opened up the xpi, changed all the version labels to 5.1.0 and it > > worked perfect. > > > > Tried both on thunderbird 1.5.0.14 and 2.0.19 > > > > Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/fa73011d/attachment-0001.html From dhananjay at vtiger.com Wed Mar 4 02:15:24 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Wed, 4 Mar 2009 12:45:24 +0530 Subject: [Vtigercrm-developers] thunderbird plugin for 5.1Val1 In-Reply-To: <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> References: <49ABF3C5.4020500@tsolucio.com> <10701a710903020702q66ee9704iab7d37a73e9cce9b@mail.gmail.com> <626f14180903032313l6027a677l64d4d2f3af45d986@mail.gmail.com> Message-ID: <626f14180903032315y71c14ecdwcc7306c327c2f99b@mail.gmail.com> Hi Mack, > Can you please specify what exactly you mean by upload to leads as well as contacts ? Regards, Dhananjay vTiger Team > > Any chance that the thunderbird plugin will be extended to allow upload to > leads as well as contacts? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > > On Mon, Mar 2, 2009 at 11:57 AM, Joe Bordes wrote: > >> Hi, >> >> I downloaded the thunderbird extension available from the vtiger blog link >> Installed it on thunderbird and saw that a "5.0.4" version was >> installed. I figured it was just the labeling but when I went to login >> it complained about version mismatch. >> I opened up the xpi, changed all the version labels to 5.1.0 and it >> worked perfect. >> >> Tried both on thunderbird 1.5.0.14 and 2.0.19 >> >> Joe >> TSolucio >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/769eafc2/attachment-0001.html From Hardev.Bassan at warwick.ac.uk Wed Mar 4 06:25:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 11:25:05 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: , <1236084284.17321.32.camel@joesunix.int> Message-ID: Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Wed Mar 4 11:10:47 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Wed, 4 Mar 2009 16:10:47 +0000 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: , <1236084284.17321.32.camel@joesunix.int>, Message-ID: All, Further questions - I would like to display some more database fields from the activity database (fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other that the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev ________________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev Bassan [Hardev.Bassan at warwick.ac.uk] Sent: 04 March 2009 11:25 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 Hello All, Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/attachment-0002.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/0a18011c/attachment-0003.pdf From asha at vtiger.com Wed Mar 4 13:17:26 2009 From: asha at vtiger.com (Asha) Date: Wed, 4 Mar 2009 23:47:26 +0530 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: References: <1236084284.17321.32.camel@joesunix.int> Message-ID: Hi Hardev, Please start on a different post for the questions you have to the developers community. Do not mix it up with the subject started. We would surely like to help you out, but in a separate thread. On 3/4/09, Hardev Bassan wrote: > > All, > > Further questions - > I would like to display some more database fields from the activity > database (fields duration_hours and duration_minutes) in the potentials > -additional information - activity History area. > > Can you suggest what files and code I will need to change to get this > affect. example please. > see attached pdfs > > Also, when I add a new custom field to a module, I can see the additional > change in the xXX_CF table. But, when I search for relevant strings in the > source files under htdocs - I don't find any other that the logs (because > debug is enabled). I am using windows XP to do the search. > > Where are the new code related to the additional field in the _CF table. > Help! > > Regards > Hardev > > ________________________________________ > From: vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Hardev > Bassan [Hardev.Bassan at warwick.ac.uk] > Sent: 04 March 2009 11:25 > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Testing Support for 5.1.0 > > > Hello All, > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090304/19b03e94/attachment-0001.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:35:05 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:05 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Message-ID: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev From Hardev.Bassan at warwick.ac.uk Thu Mar 5 05:35:46 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 10:35:46 +0000 Subject: [Vtigercrm-developers] Displaying extra fields on the gui - vtiger 5.0.4 Message-ID: All, I would like to display some more database fields from the activity database (For example - fields duration_hours and duration_minutes) in the potentials -additional information - activity History area. Can you suggest what files and code I will need to change to get this affect. example please. see attached pdfs Also, when I add a new custom field to a module, I can see the additional change in the xXX_CF table. But, when I search for relevant strings in the source files under htdocs - I don't find any other than in the logs (because debug is enabled). I am using windows XP to do the search. Where are the new code related to the additional field in the _CF table. Help! Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: potentials-activity-history.pdf Type: application/pdf Size: 37251 bytes Desc: potentials-activity-history.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/attachment-0002.pdf -------------- next part -------------- A non-text attachment was scrubbed... Name: activity-history-hours-minutes.pdf Type: application/pdf Size: 59470 bytes Desc: activity-history-hours-minutes.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/3e86e42f/attachment-0003.pdf From Hardev.Bassan at warwick.ac.uk Thu Mar 5 06:02:16 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 11:02:16 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Message-ID: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev -------------- next part -------------- A non-text attachment was scrubbed... Name: accounts - primary- contact.pdf Type: application/pdf Size: 45012 bytes Desc: accounts - primary- contact.pdf Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/04e31300/attachment-0001.pdf From stephen at efronteras.com Thu Mar 5 07:04:28 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:04:28 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan wrote: > All, > > I am new to vtiger and php coding. My organisation would like to make use > of vtiger but it needs some functionality enhancements. I have done some of > the changes required - for others, I will appreciate if community member can > help me out with the issues that I am encountering. To start with > > Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for > potentials) - if yes How? > If Not - is there a quick hack (forgetting about upgrading)? > > Thanks in advance > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: custom field.jpg Type: image/jpeg Size: 89991 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/e7061d0f/attachment-0001.jpg From stephen at efronteras.com Thu Mar 5 07:08:00 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 09:08:00 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: Message-ID: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan wrote: > All, > > I would like to create a custom field for the 'Accounts' form - see > attached, that is a link to a 'Contact' instead of just a text string. > > Is this easily possible (how?) or a no goer. > > The NOT very elegant way is to create a URL custom field and paste the url > in the field. > > > Regards > Hardev > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ede528ce/attachment-0001.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 08:00:03 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:00:03 +0000 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> References: , <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: Stephen, That only create a date field - I what a field that will have Date and Time. As a last resort - will have to have 2 extra fields as hours/minutes. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:04 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 Login as the system admin and follow the attached picture. ;) -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: All, I am new to vtiger and php coding. My organisation would like to make use of vtiger but it needs some functionality enhancements. I have done some of the changes required - for others, I will appreciate if community member can help me out with the issues that I am encountering. To start with Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for potentials) - if yes How? If Not - is there a quick hack (forgetting about upgrading)? Thanks in advance Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/720e97b6/attachment-0001.html From cbohara2 at yahoo.com Thu Mar 5 08:05:23 2009 From: cbohara2 at yahoo.com (Brad O'Hara) Date: Thu, 5 Mar 2009 05:05:23 -0800 (PST) Subject: [Vtigercrm-developers] remove me References: Message-ID: <745882.18349.qm@web32707.mail.mud.yahoo.com> Forgive me, how do I unsubscribe? Brad -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/c12c0635/attachment-0001.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 08:05:51 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 13:05:51 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> References: , <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/262e27ee/attachment-0001.html From prasad at vtiger.com Thu Mar 5 08:24:20 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 5 Mar 2009 18:54:20 +0530 Subject: [Vtigercrm-developers] remove me In-Reply-To: <745882.18349.qm@web32707.mail.mud.yahoo.com> References: <745882.18349.qm@web32707.mail.mud.yahoo.com> Message-ID: <39d18b250903050524p7eda28cble5522fe602d81eb4@mail.gmail.com> Please visit http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers On 3/5/09, Brad O'Hara wrote: > > Forgive me, how do I unsubscribe? > > Brad > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/ff04711e/attachment-0001.html From stephen at efronteras.com Thu Mar 5 08:52:32 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:52:32 -0300 Subject: [Vtigercrm-developers] create 'Date&Time' Custom Field in vtiger 5.0.4 In-Reply-To: References: <10701a710903050404m46d2a6e5gfb46810aa9e0444f@mail.gmail.com> Message-ID: <10701a710903050552k336df0cfg69bc6402742db180@mail.gmail.com> These are the available field types that you can choose from. Some you have to edit the database to use. http://wiki.vtiger.com/index.php/Ui_types -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:00 AM, Hardev Bassan wrote: > Stephen, > > That only create a date field - I what a field that will have Date *and > Time.* As a last resort - will have to have 2 extra fields as > hours/minutes. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:04 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] create 'Date&Time' Custom Field in > vtiger 5.0.4 > > Login as the system admin and follow the attached picture. ;) > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 7:35 AM, Hardev Bassan > wrote: > >> All, >> >> I am new to vtiger and php coding. My organisation would like to make use >> of vtiger but it needs some functionality enhancements. I have done some of >> the changes required - for others, I will appreciate if community member can >> help me out with the issues that I am encountering. To start with >> >> Is there a way to a create 'Date&Time' Custom Field in vtiger 5.0.4 (for >> potentials) - if yes How? >> If Not - is there a quick hack (forgetting about upgrading)? >> >> Thanks in advance >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/bcc0c4b7/attachment-0001.html From stephen at efronteras.com Thu Mar 5 08:55:35 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 10:55:35 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> Message-ID: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan wrote: > Stephen, > > > Contact Section - can have 1 or more contacts. > > I need a field that will only allow one name - as there is only Primary > Contact per Account our for setup. > > Regards > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 12:08 > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > Is there a reason you don't want to use the "contact section" on the more > information tab? > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: > >> All, >> >> I would like to create a custom field for the 'Accounts' form - see >> attached, that is a link to a 'Contact' instead of just a text string. >> >> Is this easily possible (how?) or a no goer. >> >> The NOT very elegant way is to create a URL custom field and paste the >> url in the field. >> >> >> Regards >> Hardev >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/b1d07f80/attachment-0001.html From Hardev.Bassan at warwick.ac.uk Thu Mar 5 09:39:40 2009 From: Hardev.Bassan at warwick.ac.uk (Hardev Bassan) Date: Thu, 5 Mar 2009 14:39:40 +0000 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> , <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: The same contact can be the 'Primary Contact' for one Account and not for another Account. This means that you will have to create 2 contact (one with label 'Primary Contact' and another without 'Primary Contacts' - also may require extra browsing action) - again not very elegant way of designing a database system. Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 13:55 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 I created a custom picklist field in the contacts database to describe the contact, then you can list that field in the contacts view. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan > wrote: Stephen, Contact Section - can have 1 or more contacts. I need a field that will only allow one name - as there is only Primary Contact per Account our for setup. Regards Hardev ________________________________ From: vtigercrm-developers-bounces at lists.vtigercrm.com [vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen Mack [stephen at efronteras.com] Sent: 05 March 2009 12:08 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 Is there a reason you don't want to use the "contact section" on the more information tab? -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan > wrote: All, I would like to create a custom field for the 'Accounts' form - see attached, that is a link to a 'Contact' instead of just a text string. Is this easily possible (how?) or a no goer. The NOT very elegant way is to create a URL custom field and paste the url in the field. Regards Hardev _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/a7400bb3/attachment-0001.html From stephen at efronteras.com Thu Mar 5 10:06:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Thu, 5 Mar 2009 12:06:33 -0300 Subject: [Vtigercrm-developers] Creating a custom field that is a link to an another table row - vtiger 5.0.4 In-Reply-To: References: <10701a710903050408u4a1eeb3al7d23fdc0230c2b2e@mail.gmail.com> <10701a710903050555w70e77339g23d5518554cfe1d1@mail.gmail.com> Message-ID: <10701a710903050706o24a2ac27ta27a78567df55e6a@mail.gmail.com> It sounds like your businesses' use of the system is very different than most users. That does not make it wrong just different. I'm sure it can be done but you'll have to review the code to see how records are attached as in the potential module which has the same setup as you describe for the associated "account". So the basics are there for what you want. You'll need to do some custom coding. I don't think the system is inefficient. I think your use is different. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Thu, Mar 5, 2009 at 11:39 AM, Hardev Bassan wrote: > The same contact can be the 'Primary Contact' for one Account and not for > another Account. > > This means that you will have to create 2 contact (one with label 'Primary > Contact' and another without 'Primary Contacts' - also may require extra > browsing action) - again not very elegant way of designing a database > system. > > Hardev > ------------------------------ > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen > Mack [stephen at efronteras.com] > *Sent:* 05 March 2009 13:55 > > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a > link to an another table row - vtiger 5.0.4 > > I created a custom picklist field in the contacts database to describe > the contact, then you can list that field in the contacts view. > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Thu, Mar 5, 2009 at 10:05 AM, Hardev Bassan < > Hardev.Bassan at warwick.ac.uk> wrote: > >> Stephen, >> >> >> Contact Section - can have 1 or more contacts. >> >> I need a field that will only allow one name - as there is only Primary >> Contact per Account our for setup. >> >> Regards >> Hardev >> ------------------------------ >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [ >> vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stephen >> Mack [stephen at efronteras.com] >> *Sent:* 05 March 2009 12:08 >> *To:* vtigercrm-developers at lists.vtigercrm.com >> *Subject:* Re: [Vtigercrm-developers] Creating a custom field that is a >> link to an another table row - vtiger 5.0.4 >> >> Is there a reason you don't want to use the "contact section" on the >> more information tab? >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> >> On Thu, Mar 5, 2009 at 8:02 AM, Hardev Bassan < >> Hardev.Bassan at warwick.ac.uk> wrote: >> >>> All, >>> >>> I would like to create a custom field for the 'Accounts' form - see >>> attached, that is a link to a 'Contact' instead of just a text string. >>> >>> Is this easily possible (how?) or a no goer. >>> >>> The NOT very elegant way is to create a URL custom field and paste the >>> url in the field. >>> >>> >>> Regards >>> Hardev >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090305/1e3d0a29/attachment-0001.html From carloz at gnumerica.org Fri Mar 6 03:44:09 2009 From: carloz at gnumerica.org (carlo beschi) Date: Fri, 06 Mar 2009 09:44:09 +0100 Subject: [Vtigercrm-developers] Testing Support for 5.1.0 In-Reply-To: <1236084284.17321.32.camel@joesunix.int> References: <1236084284.17321.32.camel@joesunix.int> Message-ID: <49B0E259.9020704@gnumerica.org> Hi all, Joe Bordes ha scritto: > I have tooken on I18N and would like to participate (at least) in the > vtlib validation. If anybody wants to share these sections with me > contact me and we can start to define a path. I'm willing to help in the i18n area (internationalization issues). I'll report to Joe. See this thread too: http://forums.vtiger.com/viewtopic.php?t=23521 carloz From ddfire at gmail.com Fri Mar 6 09:51:11 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 12:51:11 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? Message-ID: hi how to uninstall vtlib installed module? i cant find any option in the module manager maybe you should add the option. Thanks David -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/ae66b970/attachment-0003.html From prasad at vtiger.com Fri Mar 6 10:16:10 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 6 Mar 2009 20:46:10 +0530 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: References: Message-ID: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Hi David, Deleting the module is dangerous, hence I we decided not to provide it right away But here is development tip I can share: detele(); } ?> NOTE: 1. The underlying tables are not deleted to make sure data is not lost ! 2. You need to manually delete the related folders from modules/MODULENAME Hope this was useful information. Regards, Prasad vtiger Team On 3/6/09, David fire wrote: > > hi > how to uninstall vtlib installed module? > i cant find any option in the module manager maybe you should add the > option. > Thanks > David > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/88ed2c6f/attachment-0001.html From ddfire at gmail.com Fri Mar 6 10:25:34 2009 From: ddfire at gmail.com (David fire) Date: Fri, 6 Mar 2009 13:25:34 -0200 Subject: [Vtigercrm-developers] how to uninstall vtlib installed module? In-Reply-To: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> References: <39d18b250903060716m13c73e33mc83e2cb208f3625a@mail.gmail.com> Message-ID: thanks 2009/3/6 Prasad > Hi David, > > Deleting the module is dangerous, hence I we decided not to provide it > right away > > But here is development tip I can share: > > $Vtiger_Utils_Log = true; > include_once('vtlib/Vtiger/Module.php'); > > $module = Vtiger_Module::getInstance('MODULENAME'); > if($module) { > $module->detele(); > } > ?> > > NOTE: > > 1. The underlying tables are not deleted to make sure data is not lost > ! > 2. You need to manually delete the related folders from > modules/MODULENAME > > Hope this was useful information. > > Regards, > Prasad > vtiger Team > > On 3/6/09, David fire wrote: > >> hi >> how to uninstall vtlib installed module? >> i cant find any option in the module manager maybe you should add the >> option. >> Thanks >> David >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090306/19b6d181/attachment-0001.html From prasad at vtiger.com Fri Mar 6 14:45:05 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 7 Mar 2009 01:15:05 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0: Forum Group Message-ID: <39d18b250903061145k32b88067mce6f5d8a9bf39f10@mail.gmail.com> Dear vtigers, In order to capture discussions related to vtiger CRM 5.1.0, we have created new forum group at http://forums.vtiger.com/index.php?c=15 Keep up your spirit of discussion and feedback. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090307/d0b67ded/attachment-0001.html From joe at tsolucio.com Sat Mar 7 04:00:01 2009 From: joe at tsolucio.com (Joe Bordes) Date: Sat, 07 Mar 2009 10:00:01 +0100 Subject: [Vtigercrm-developers] trac emails Message-ID: <49B23791.8070405@tsolucio.com> Hi, I've noticed that I am not receiving email notifications when trac tickets I have created are modified. This is important because without these notifications I have to go into trac every once and a while to see if anything has changed. For example, I have checked today and found that vtiger is waiting for me on one ticket. It's curious because I do receive some emails from trac. I wouldn't want to bother other trac users, but this would be very useful for me. Thanks, Joe TSolucio From jnaneshwar.bantanur at kavach.net Mon Mar 9 02:26:05 2009 From: jnaneshwar.bantanur at kavach.net (Jnaneshwar Bantanur) Date: Mon, 09 Mar 2009 11:56:05 +0530 Subject: [Vtigercrm-developers] E mail issue(CC and BCC).. Message-ID: <49B4B67D.7090606@kavach.net> Hello all, I am facing a strange problem.Whenever I send mail to a lead,I CC that mail to my Sales Head and BCC to my VP.But customer receives the mail only my Id is visible to him,where as CC field is not visible.Even I tried to put my Sales Head Id Also in the To field.But it's not working ! If anybody can help in this regard will be of great help.Thanks in advance for all the valuable suggestions. -------------- next part -------------- A non-text attachment was scrubbed... Name: jnaneshwar_bantanur.vcf Type: text/x-vcard Size: 379 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/a98c9ba7/attachment-0001.vcf From ddfire at gmail.com Mon Mar 9 11:25:33 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 13:25:33 -0200 Subject: [Vtigercrm-developers] vtlib and columntype Message-ID: hi i read the docs ones and again the only conclucion i get is when making a new field using vtlib only put columntype when it is varchar. it is correct? Thanks -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/d65bd54b/attachment-0001.html From prasad at vtiger.com Mon Mar 9 14:41:57 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:11:57 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: Message-ID: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Hi David, You can set the columntype to any valid SQL type. If the table to which field is bound does not have the column the columntype will be used for creating it. By default, columntype is set as VARCHAR. Let me know if this clarified the doubt. Regards, Prasad vtiger Team On 3/9/09, David fire wrote: > > hi > i read the docs ones and again the only conclucion i get is when making a > new field using vtlib only put columntype when it is varchar. > it is correct? > Thanks > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/90850a97/attachment-0001.html From ddfire at gmail.com Mon Mar 9 14:56:38 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 16:56:38 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: in the payslip example for example for CreatedTime field you dont put any columntype. it is varchar(255) ??? i should use varchar always or what i should do? Thanks David 2009/3/9 Prasad > Hi David, > > You can set the columntype to any valid SQL type. > > If the table to which field is bound does not have the column the > columntype will be used for creating it. > > By default, columntype is set as VARCHAR. > > Let me know if this clarified the doubt. > > Regards, > Prasad > vtiger Team > > On 3/9/09, David fire wrote: > >> hi >> i read the docs ones and again the only conclucion i get is when making a >> new field using vtlib only put columntype when it is varchar. >> it is correct? >> Thanks >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/4b767251/attachment-0001.html From prasad at vtiger.com Mon Mar 9 15:21:48 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 00:51:48 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> Message-ID: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Hi David, CreatedTime column name points to (tablename: vtiger_crmentity, columnname: createdtime) Since this column already exists in the table, having columntype will not help. If I were to add a CustomTime field then I would set $field->tablename = 'vtiger_mytable'; $field->columname = 'customtime'; $field->columntype = 'DATETIME'; To summarize, the columntype could be any valid SQL datatype need not necessary be VARCHAR Regards, Prasad vtiger Team On 3/10/09, David fire wrote: > > in the payslip example for example for CreatedTime field you dont put any > columntype. > it is varchar(255) ??? > i should use varchar always or what i should do? > Thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> You can set the columntype to any valid SQL type. >> >> If the table to which field is bound does not have the column the >> columntype will be used for creating it. >> >> By default, columntype is set as VARCHAR. >> >> Let me know if this clarified the doubt. >> >> Regards, >> Prasad >> vtiger Team >> >> On 3/9/09, David fire wrote: >> >>> hi >>> i read the docs ones and again the only conclucion i get is when making a >>> new field using vtlib only put columntype when it is varchar. >>> it is correct? >>> Thanks >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/8f88c3ec/attachment-0001.html From ddfire at gmail.com Mon Mar 9 15:26:18 2009 From: ddfire at gmail.com (David fire) Date: Mon, 9 Mar 2009 17:26:18 -0200 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: thanks David 2009/3/9 Prasad > Hi David, > > CreatedTime column name points to (tablename: vtiger_crmentity, columnname: > createdtime) > Since this column already exists in the table, having columntype will not > help. > > If I were to add a CustomTime field then I would set > > $field->tablename = 'vtiger_mytable'; > $field->columname = 'customtime'; > $field->columntype = 'DATETIME'; > > To summarize, the columntype could be any valid SQL datatype need not > necessary be VARCHAR > > Regards, > Prasad > vtiger Team > > > On 3/10/09, David fire wrote: >> >> in the payslip example for example for CreatedTime field you dont put any >> columntype. >> it is varchar(255) ??? >> i should use varchar always or what i should do? >> Thanks >> David >> >> 2009/3/9 Prasad >> >>> Hi David, >>> >>> You can set the columntype to any valid SQL type. >>> >>> If the table to which field is bound does not have the column the >>> columntype will be used for creating it. >>> >>> By default, columntype is set as VARCHAR. >>> >>> Let me know if this clarified the doubt. >>> >>> Regards, >>> Prasad >>> vtiger Team >>> >>> On 3/9/09, David fire wrote: >>> >>>> hi >>>> i read the docs ones and again the only conclucion i get is when making >>>> a new field using vtlib only put columntype when it is varchar. >>>> it is correct? >>>> Thanks >>>> >>>> -- >>>> (\__/) >>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>> (")_(")signature to help him gain world domination. >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> >> -- >> (\__/) >> (='.'=)This is Bunny. Copy and paste bunny into your >> (")_(")signature to help him gain world domination. >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- (\__/) (='.'=)This is Bunny. Copy and paste bunny into your (")_(")signature to help him gain world domination. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/303c5758/attachment-0001.html From prasad at vtiger.com Mon Mar 9 15:33:56 2009 From: prasad at vtiger.com (Prasad) Date: Tue, 10 Mar 2009 01:03:56 +0530 Subject: [Vtigercrm-developers] vtlib and columntype In-Reply-To: References: <39d18b250903091141x43c736e8xff4ad793658d44fa@mail.gmail.com> <39d18b250903091221t6e987463r90f37d2ee325e2df@mail.gmail.com> Message-ID: <39d18b250903091233q4b84bd20i404a30669427a4d7@mail.gmail.com> my pleasure. - Prasad On 3/10/09, David fire wrote: > > thanks > David > > 2009/3/9 Prasad > >> Hi David, >> >> CreatedTime column name points to (tablename: vtiger_crmentity, >> columnname: createdtime) >> Since this column already exists in the table, having columntype will not >> help. >> >> If I were to add a CustomTime field then I would set >> >> $field->tablename = 'vtiger_mytable'; >> $field->columname = 'customtime'; >> $field->columntype = 'DATETIME'; >> >> To summarize, the columntype could be any valid SQL datatype need not >> necessary be VARCHAR >> >> Regards, >> Prasad >> vtiger Team >> >> >> On 3/10/09, David fire wrote: >>> >>> in the payslip example for example for CreatedTime field you dont put any >>> columntype. >>> it is varchar(255) ??? >>> i should use varchar always or what i should do? >>> Thanks >>> David >>> >>> 2009/3/9 Prasad >>> >>>> Hi David, >>>> >>>> You can set the columntype to any valid SQL type. >>>> >>>> If the table to which field is bound does not have the column the >>>> columntype will be used for creating it. >>>> >>>> By default, columntype is set as VARCHAR. >>>> >>>> Let me know if this clarified the doubt. >>>> >>>> Regards, >>>> Prasad >>>> vtiger Team >>>> >>>> On 3/9/09, David fire wrote: >>>> >>>>> hi >>>>> i read the docs ones and again the only conclucion i get is when making >>>>> a new field using vtlib only put columntype when it is varchar. >>>>> it is correct? >>>>> Thanks >>>>> >>>>> -- >>>>> (\__/) >>>>> (='.'=)This is Bunny. Copy and paste bunny into your >>>>> (")_(")signature to help him gain world domination. >>>>> >>>>> >>>>> _______________________________________________ >>>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>>> >>>> >>>> >>>> _______________________________________________ >>>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>>> >>> >>> >>> >>> -- >>> (\__/) >>> (='.'=)This is Bunny. Copy and paste bunny into your >>> (")_(")signature to help him gain world domination. >>> >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > (\__/) > (='.'=)This is Bunny. Copy and paste bunny into your > (")_(")signature to help him gain world domination. > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/303ecba7/attachment-0001.html From stephen at efronteras.com Mon Mar 9 17:16:33 2009 From: stephen at efronteras.com (Stephen Mack) Date: Mon, 9 Mar 2009 18:16:33 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension Message-ID: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Are there any plans to update the Thunderbird extension to allow emails to be attached to all four locations: * Accounts * Contacts * Leads * Vendor If I'm not wrong, it only works with contacts. The update looks great btw! -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.html From dhananjay at vtiger.com Tue Mar 10 04:14:05 2009 From: dhananjay at vtiger.com (Dhananjay Kumar) Date: Tue, 10 Mar 2009 13:44:05 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> Message-ID: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> > Hi Stephen, > You are right currently thunderbird plugin allows mail attachment to contacts only. Due to time constraints we didn't extend it to other locations as pointed by you. Going forward will definitely extend it. Regards, Dhananjay vTiger Team. > > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > Regards, > Nitin Goyal > Vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.html From stephen at efronteras.com Tue Mar 10 07:11:21 2009 From: stephen at efronteras.com (Stephen Mack) Date: Tue, 10 Mar 2009 08:11:21 -0300 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> Message-ID: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Is the source code available for others to make the modifications? Thanks for the update. -- Stephen Mack Gerente de Ventas y Marketing Escuela Fronteras www.eFronteras.com skype: eFronteras.Stephen On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > > Hi Stephen, >> > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as > pointed by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > >> >> >> Are there any plans to update the Thunderbird extension to allow emails to >> be attached to all four locations: >> * Accounts >> * Contacts >> * Leads >> * Vendor >> >> If I'm not wrong, it only works with contacts. The update looks great >> btw! >> >> -- Stephen Mack >> Gerente de Ventas y Marketing >> Escuela Fronteras >> www.eFronteras.com >> skype: eFronteras.Stephen >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> -- >> Regards, >> Nitin Goyal >> Vtiger Team >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.html From asha at vtiger.com Tue Mar 10 07:53:24 2009 From: asha at vtiger.com (Asha) Date: Tue, 10 Mar 2009 17:23:24 +0530 Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension In-Reply-To: <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> References: <10701a710903091416y5b6f4327v3f64ace02e8692d@mail.gmail.com> <626f14180903100114n6ff90756m670fc72cef4ed4e3@mail.gmail.com> <10701a710903100411o150c6945j700bdb1c50e03606@mail.gmail.com> Message-ID: Hi Stephen, The source code is freely available. You can checkout and do modifications as per your requirement. On 3/10/09, Stephen Mack wrote: > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar wrote: > >> >> Hi Stephen, >>> >> >> You are right currently thunderbird plugin allows mail attachment to >> contacts only. >> Due to time constraints we didn't extend it to other locations as >> pointed by you. >> Going forward will definitely extend it. >> >> Regards, >> Dhananjay >> vTiger Team. >> >>> >>> >>> Are there any plans to update the Thunderbird extension to allow emails >>> to be attached to all four locations: >>> * Accounts >>> * Contacts >>> * Leads >>> * Vendor >>> >>> If I'm not wrong, it only works with contacts. The update looks great >>> btw! >>> >>> -- Stephen Mack >>> Gerente de Ventas y Marketing >>> Escuela Fronteras >>> www.eFronteras.com >>> skype: eFronteras.Stephen >>> >>> _______________________________________________ >>> Reach hundreds of potential candidates - http://jobs.vtiger.com >>> >>> >>> >>> -- >>> Regards, >>> Nitin Goyal >>> Vtiger Team >>> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.html From rafaelbozzetti at gmail.com Tue Mar 10 13:24:28 2009 From: rafaelbozzetti at gmail.com (Rafael) Date: Tue, 10 Mar 2009 14:24:28 -0300 Subject: [Vtigercrm-developers] Add a event -> call Message-ID: Hi, I'm need make a function when insert a event type call, i'm try insert information on table directly but dont work... where i can do it? thank's -- Rafael Bozzetti - linuxuser: 418660 -------------------------------------------------- OpenS - WWW.OPENS.COM.BR -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.html From ml at arceva.fr Tue Mar 10 15:26:42 2009 From: ml at arceva.fr (fusioncore) Date: Tue, 10 Mar 2009 20:26:42 +0100 Subject: [Vtigercrm-developers] customer portal language translation Message-ID: <49B6BEF2.70006@arceva.fr> Hi, Does anybody know how to use the files of language corresponding to the portal user's choice in vtiger and not towards English? This post can resume the problem http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language Thanks, Bruno French community http://www.french-vtiger.fr http://forum.french-vtiger.fr From asha at vtiger.com Wed Mar 11 03:03:30 2009 From: asha at vtiger.com (Asha) Date: Wed, 11 Mar 2009 12:33:30 +0530 Subject: [Vtigercrm-developers] trac emails In-Reply-To: <49B23791.8070405@tsolucio.com> References: <49B23791.8070405@tsolucio.com> Message-ID: Hi All, To get email notifications for the ticket changes, you will have to subscribe to vtigercrm-commits from http://lists.vtigercrm.com/mailman/listinfo Also if you want to get personal notifications on ticket changes, Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email address. Let me know if this is not clear or if this doesn't help.* * On 3/7/09, Joe Bordes wrote: > > Hi, > > I've noticed that I am not receiving email notifications when trac > tickets I have created are modified. This is important because without > these notifications I have to go into trac every once and a while to see > if anything has changed. For example, I have checked today and found > that vtiger is waiting for me on one ticket. > It's curious because I do receive some emails from trac. > > I wouldn't want to bother other trac users, but this would be very > useful for me. > > Thanks, Joe > TSolucio > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment-0001.html From vikas at vtiger.com Wed Mar 11 05:33:01 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 15:03:01 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: Hi Bruno, In the PortalConfig.php of Customer Portal source we have a variable for default language,you can change the variable and add language files to language folder.Please check out the latest source from http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. Regards, Vikas Vtiger Team 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail attachment to > contacts only. > Due to time constraints we didn't extend it to other locations as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow emails > to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks great > btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to allow emails > to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do modifications > as per your requirement. > > On 3/10/09, Stephen Mack wrote: > > > > Is the source code available for others to make the modifications? > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B6BEF2.70006 at arceva.fr> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because without > > these notifications I have to go into trac every once and a while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/c91b4abf/attachment-0001.html From ml at arceva.fr Wed Mar 11 05:55:12 2009 From: ml at arceva.fr (fusioncore) Date: Wed, 11 Mar 2009 10:55:12 +0100 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 12 In-Reply-To: References: Message-ID: <49B78A80.4080006@arceva.fr> Thanks Vikas, But I have already made this modification on the last source and the customer portal always us the english file of the vtiger Regards, Bruno French community http://www.french-vtiger.fr Vikas Jain a ?crit : > Hi Bruno, > In the PortalConfig.php of Customer Portal source we have a variable > for default language,you can change the variable and add language > files to language folder.Please check out the latest source from > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > Regards, > Vikas > Vtiger Team > > 2009/3/11 > > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > > To subscribe or unsubscribe via the World Wide Web, visit > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > 4. Re: 5.1.0 Thunderbird extension (Asha) > 5. Add a event -> call (Rafael) > 6. customer portal language translation (fusioncore) > 7. Re: trac emails (Asha) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 9 Mar 2009 18:16:33 -0300 > From: Stephen Mack > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Are there any plans to update the Thunderbird extension to allow > emails to > be attached to all four locations: > * Accounts > * Contacts > * Leads > * Vendor > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Tue, 10 Mar 2009 13:44:05 +0530 > From: Dhananjay Kumar > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > > Hi Stephen, > > > > You are right currently thunderbird plugin allows mail > attachment to > contacts only. > Due to time constraints we didn't extend it to other locations > as pointed > by you. > Going forward will definitely extend it. > > Regards, > Dhananjay > vTiger Team. > > > > > > > Are there any plans to update the Thunderbird extension to allow > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > Regards, > > Nitin Goyal > > Vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Tue, 10 Mar 2009 08:11:21 -0300 > From: Stephen Mack > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > > Content-Type: text/plain; charset="iso-8859-1" > > Is the source code available for others to make the modifications? > Thanks > for the update. > -- Stephen Mack > Gerente de Ventas y Marketing > Escuela Fronteras > www.eFronteras.com > skype: eFronteras.Stephen > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > > > Hi Stephen, > >> > > > > You are right currently thunderbird plugin allows mail > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations as > > pointed by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > >> > >> > >> Are there any plans to update the Thunderbird extension to > allow emails to > >> be attached to all four locations: > >> * Accounts > >> * Contacts > >> * Leads > >> * Vendor > >> > >> If I'm not wrong, it only works with contacts. The update > looks great > >> btw! > >> > >> -- Stephen Mack > >> Gerente de Ventas y Marketing > >> Escuela Fronteras > >> www.eFronteras.com > >> skype: eFronteras.Stephen > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > >> > >> > >> -- > >> Regards, > >> Nitin Goyal > >> Vtiger Team > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > ------------------------------ > > Message: 4 > Date: Tue, 10 Mar 2009 17:23:24 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi Stephen, > > The source code is freely available. You can checkout and do > modifications > as per your requirement. > > On 3/10/09, Stephen Mack > wrote: > > > > Is the source code available for others to make the > modifications? Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > >wrote: > > > >> > >> Hi Stephen, > >>> > >> > >> You are right currently thunderbird plugin allows mail > attachment to > >> contacts only. > >> Due to time constraints we didn't extend it to other > locations as > >> pointed by you. > >> Going forward will definitely extend it. > >> > >> Regards, > >> Dhananjay > >> vTiger Team. > >> > >>> > >>> > >>> Are there any plans to update the Thunderbird extension to > allow emails > >>> to be attached to all four locations: > >>> * Accounts > >>> * Contacts > >>> * Leads > >>> * Vendor > >>> > >>> If I'm not wrong, it only works with contacts. The update > looks great > >>> btw! > >>> > >>> -- Stephen Mack > >>> Gerente de Ventas y Marketing > >>> Escuela Fronteras > >>> www.eFronteras.com > >>> skype: eFronteras.Stephen > >>> > >>> _______________________________________________ > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > >>> > >>> > >>> > >>> -- > >>> Regards, > >>> Nitin Goyal > >>> Vtiger Team > >>> > >> > >> > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > >> > > > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > ------------------------------ > > Message: 5 > Date: Tue, 10 Mar 2009 14:24:28 -0300 > From: Rafael > > Subject: [Vtigercrm-developers] Add a event -> call > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi, > > I'm need make a function when insert a event type call, i'm try insert > information on table directly but dont work... where i can do it? > > thank's > > -- > Rafael Bozzetti - linuxuser: 418660 > -------------------------------------------------- > OpenS - WWW.OPENS.COM.BR > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/9f60af49/attachment-0001.htm > > ------------------------------ > > Message: 6 > Date: Tue, 10 Mar 2009 20:26:42 +0100 > From: fusioncore > > Subject: [Vtigercrm-developers] customer portal language translation > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: <49B6BEF2.70006 at arceva.fr > > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Does anybody know how to use the files of language corresponding > to the > portal user's choice in vtiger and not towards English? > This post can resume the problem > http://forums.vtiger.com/viewtopic.php?t=23754&highlight=customer+portal+language > > > > Thanks, > > Bruno > French community > http://www.french-vtiger.fr > http://forum.french-vtiger.fr > > > ------------------------------ > > Message: 7 > Date: Wed, 11 Mar 2009 12:33:30 +0530 > From: Asha > > Subject: Re: [Vtigercrm-developers] trac emails > To: vtigercrm-developers at lists.vtigercrm.com > > Message-ID: > > > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > > To get email notifications for the ticket changes, you will have to > subscribe to vtigercrm-commits from > http://lists.vtigercrm.com/mailman/listinfo > > Also if you want to get personal notifications on ticket changes, > > Goto trac.vtiger.com -> Click Settings -> > Fill in your Username and Email > address. > > Let me know if this is not clear or if this doesn't > help.* > * > > On 3/7/09, Joe Bordes > > wrote: > > > > Hi, > > > > I've noticed that I am not receiving email notifications when trac > > tickets I have created are modified. This is important because > without > > these notifications I have to go into trac every once and a > while to see > > if anything has changed. For example, I have checked today and found > > that vtiger is waiting for me on one ticket. > > It's curious because I do receive some emails from trac. > > > > I wouldn't want to bother other trac users, but this would be very > > useful for me. > > > > Thanks, Joe > > TSolucio > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > -- > Regards, > Asha > vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/720c47db/attachment.htm > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 39, Issue 12 > **************************************************** > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090311/8046da2c/attachment-0001.html From vikas at vtiger.com Wed Mar 11 06:47:24 2009 From: vikas at vtiger.com (Vikas Jain) Date: Wed, 11 Mar 2009 16:17:24 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 39, Issue 14 In-Reply-To: References: Message-ID: Hi Bruno, You also need to translate the fields and blocks in the language file of customer portal. 2009/3/11 > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. Re: vtigercrm-developers Digest, Vol 39, Issue 12 (fusioncore) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 11 Mar 2009 10:55:12 +0100 > From: fusioncore > Subject: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol > 39, Issue 12 > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <49B78A80.4080006 at arceva.fr> > Content-Type: text/plain; charset="iso-8859-1" > > Thanks Vikas, > But I have already made this modification on the last source and the > customer portal always us the english file of the vtiger > > Regards, > > Bruno > French community > http://www.french-vtiger.fr > > > Vikas Jain a ?crit : > > Hi Bruno, > > In the PortalConfig.php of Customer Portal source we have a variable > > for default language,you can change the variable and add language > > files to language folder.Please check out the latest source from > > http://trac.vtiger.com/svn/vtiger/customerportal/branches/5.1. > > > > Regards, > > Vikas > > Vtiger Team > > > > 2009/3/11 > > > > > > Send vtigercrm-developers mailing list submissions to > > vtigercrm-developers at lists.vtigercrm.com > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > > vtigercrm-developers-request at lists.vtigercrm.com > > > > > > You can reach the person managing the list at > > vtigercrm-developers-owner at lists.vtigercrm.com > > > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of vtigercrm-developers digest..." > > > > > > Today's Topics: > > > > 1. 5.1.0 Thunderbird extension (Stephen Mack) > > 2. Re: 5.1.0 Thunderbird extension (Dhananjay Kumar) > > 3. Re: 5.1.0 Thunderbird extension (Stephen Mack) > > 4. Re: 5.1.0 Thunderbird extension (Asha) > > 5. Add a event -> call (Rafael) > > 6. customer portal language translation (fusioncore) > > 7. Re: trac emails (Asha) > > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 9 Mar 2009 18:16:33 -0300 > > From: Stephen Mack > > > > Subject: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > <10701a710903091416y5b6f4327v3f64ace02e8692d at mail.gmail.com > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > be attached to all four locations: > > * Accounts > > * Contacts > > * Leads > > * Vendor > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090309/345ae1d7/attachment-0001.htm > > > > ------------------------------ > > > > Message: 2 > > Date: Tue, 10 Mar 2009 13:44:05 +0530 > > From: Dhananjay Kumar > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <626f14180903100114n6ff90756m670fc72cef4ed4e3 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > > Hi Stephen, > > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > contacts only. > > Due to time constraints we didn't extend it to other locations > > as pointed > > by you. > > Going forward will definitely extend it. > > > > Regards, > > Dhananjay > > vTiger Team. > > > > > > > > > > > Are there any plans to update the Thunderbird extension to allow > > emails to > > > be attached to all four locations: > > > * Accounts > > > * Contacts > > > * Leads > > > * Vendor > > > > > > If I'm not wrong, it only works with contacts. The update looks > > great btw! > > > > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > > -- > > > Regards, > > > Nitin Goyal > > > Vtiger Team > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/06a7bde9/attachment-0001.htm > > > > ------------------------------ > > > > Message: 3 > > Date: Tue, 10 Mar 2009 08:11:21 -0300 > > From: Stephen Mack > > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > <10701a710903100411o150c6945j700bdb1c50e03606 at mail.gmail.com > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Is the source code available for others to make the modifications? > > Thanks > > for the update. > > -- Stephen Mack > > Gerente de Ventas y Marketing > > Escuela Fronteras > > www.eFronteras.com > > skype: eFronteras.Stephen > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > > > > Hi Stephen, > > >> > > > > > > You are right currently thunderbird plugin allows mail > > attachment to > > > contacts only. > > > Due to time constraints we didn't extend it to other locations > as > > > pointed by you. > > > Going forward will definitely extend it. > > > > > > Regards, > > > Dhananjay > > > vTiger Team. > > > > > >> > > >> > > >> Are there any plans to update the Thunderbird extension to > > allow emails to > > >> be attached to all four locations: > > >> * Accounts > > >> * Contacts > > >> * Leads > > >> * Vendor > > >> > > >> If I'm not wrong, it only works with contacts. The update > > looks great > > >> btw! > > >> > > >> -- Stephen Mack > > >> Gerente de Ventas y Marketing > > >> Escuela Fronteras > > >> www.eFronteras.com > > >> skype: eFronteras.Stephen > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > >> > > >> > > >> -- > > >> Regards, > > >> Nitin Goyal > > >> Vtiger Team > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/dec296fa/attachment-0001.htm > > > > ------------------------------ > > > > Message: 4 > > Date: Tue, 10 Mar 2009 17:23:24 +0530 > > From: Asha > > > Subject: Re: [Vtigercrm-developers] 5.1.0 Thunderbird extension > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > >> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi Stephen, > > > > The source code is freely available. You can checkout and do > > modifications > > as per your requirement. > > > > On 3/10/09, Stephen Mack > > wrote: > > > > > > Is the source code available for others to make the > > modifications? Thanks > > > for the update. > > > -- Stephen Mack > > > Gerente de Ventas y Marketing > > > Escuela Fronteras > > > www.eFronteras.com > > > skype: eFronteras.Stephen > > > > > > > > > On Tue, Mar 10, 2009 at 5:14 AM, Dhananjay Kumar > > >wrote: > > > > > >> > > >> Hi Stephen, > > >>> > > >> > > >> You are right currently thunderbird plugin allows mail > > attachment to > > >> contacts only. > > >> Due to time constraints we didn't extend it to other > > locations as > > >> pointed by you. > > >> Going forward will definitely extend it. > > >> > > >> Regards, > > >> Dhananjay > > >> vTiger Team. > > >> > > >>> > > >>> > > >>> Are there any plans to update the Thunderbird extension to > > allow emails > > >>> to be attached to all four locations: > > >>> * Accounts > > >>> * Contacts > > >>> * Leads > > >>> * Vendor > > >>> > > >>> If I'm not wrong, it only works with contacts. The update > > looks great > > >>> btw! > > >>> > > >>> -- Stephen Mack > > >>> Gerente de Ventas y Marketing > > >>> Escuela Fronteras > > >>> www.eFronteras.com > > >>> skype: eFronteras.Stephen > > >>> > > >>> _______________________________________________ > > >>> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >>> > > >>> > > >>> > > >>> -- > > >>> Regards, > > >>> Nitin Goyal > > >>> Vtiger Team > > >>> > > >> > > >> > > >> _______________________________________________ > > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > >> > > > > > > > > > _______________________________________________ > > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > > -- > > Regards, > > Asha > > vtiger Team > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > URL: > > > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090310/908cc841/attachment-0001.htm > > > > ------------------------------ > > > > Message: 5 > > Date: Tue, 10 Mar 2009 14:24:28 -0300 > > From: Rafael > > > > Subject: [Vtigercrm-developers] Add a event -> call > > To: vtigercrm-developers at lists.vtigercrm.com > > > > Message-ID: > > > > > > Content-Type: text/plain; charset="iso-8859-1" > > > > Hi, > > > > I'm need make a function when insert a event type call, i'm try > insert > >