From asha at vtiger.com Wed Jul 1 00:07:48 2009 From: asha at vtiger.com (Asha) Date: Wed, 1 Jul 2009 12:37:48 +0530 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi All, This issue is reported on trac ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6108) and we have recently integrated the changes. On 7/1/09, Lee Valentine wrote: > > Hi Ding, > > That was just applied to 5.1rc2. However I did the query originally in > 5.0.4. > > Thanks, > Lee > > > 2009/7/1 ding jianting : > > > Hi,Lee > > What is version of your vtigerCRM? > > > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: > >> > >> Hey Guys, > >> > >> We were having performance issues with the crm taking ages to load so > >> I had all the queries being executed printed to the screen with the > >> duration each query was taking. I found: > >> > >> select distinct(setype) from vtiger_crmentity where crmid in (select > >> parent_id from vtiger_troubletickets) > >> 106.894966125 seconds. > >> > >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in > >> function getSalesRelatedName) > >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in > >> (select ". $adb->sql_escape_string($fieldname)." from ". > >> $adb->sql_escape_string($tablename).")"; > >> > >> I replaced it with the following: > >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN > >> ".$adb->sql_escape_string($tablename)." t ON > >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; > >> > >> And received the result: > >> select distinct(setype) from vtiger_crmentity c INNER JOIN > >> vtiger_troubletickets t ON t.parent_id = c.crmid > >> 0.0270490646362 seconds. > >> > >> This has given our crm a MAJOR performance increase. > >> > >> Thanks, > >> Lee > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > > > > _______________________________________________ > > 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/20090701/71ed0548/attachment.htm From asha at vtiger.com Fri Jul 3 09:02:25 2009 From: asha at vtiger.com (Asha) Date: Fri, 3 Jul 2009 21:32:25 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 released Message-ID: Hi All, We are glad to announce the availability of 5.1.0 RC today. This release covers several new features, enhancements and bug fixes. Download information is available at this link, and view the RC Release Notes here. Online Demo: http://en.vtiger.com/wip We have put up some demo tutorials for installation and migration that are available here . *Please evaluate it and share your feedback.* Report any issues you notice at http://trac.vtiger.com *with version set to 5.1.0 RC*. Make sure to provide complete details of the issue. PS: Did you get a chance to Vote for vtiger CRM ( Sourceforge CCA09 ) -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090703/9cdde483/attachment.htm From christophe-bouchet at laposte.net Mon Jul 6 06:44:50 2009 From: christophe-bouchet at laposte.net (Christophe BOUCHET) Date: Mon, 06 Jul 2009 15:44:50 +0200 Subject: [Vtigercrm-developers] Cosmetics in vtiger RC 5.1.0 Message-ID: <1246887890.3235.26.camel@christophe-laptop> Hi, When creating an account, lead, contact, lack a space between the tabs (file /Smarty/templates/CreateView.tpl missing between lines 108 and 109 ' '), and CSS can not be applied to the block 'Description' file /Smarty/templates/EditViewUI.tpl line 116 missing class="dvtCellInfo") Thank you Best regards Christophe BOUCHET From djeandot at gmail.com Fri Jul 10 01:50:46 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 10:50:46 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC Message-ID: Hello, I try to migrate my CRM into the latest version for testing but I get a problem during the process of migration. When I specify the name of database and after the "next" step, I get this : *Fatal error*: Call to a member function NumRows() on a non-object in * /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try to migrate this 5.0.4 to 5.1 RC, I get an error. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/98dbebcb/attachment.htm From stefan.lorenz at burdadirect.de Fri Jul 10 03:56:48 2009 From: stefan.lorenz at burdadirect.de (DJLorry) Date: Fri, 10 Jul 2009 03:56:48 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Message-ID: <24408556.post@talk.nabble.com> Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From asha at vtiger.com Fri Jul 10 04:21:59 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:51:59 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: <24408556.post@talk.nabble.com> References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry wrote: > > > Hello, > how can I add a second account or person field in these modules ? > The problem can't be solved by just adding a custom field and changing the > uitype. (Which works when no account field already exits, though) > The uitype 50 changes the custom field to contain the button for the > popup-window for account-selection. > The problem is that a thereby selected account is stored in the modul's > default account field whereas the custom field stays blank. I have added a > query to show the account if I put an accountid in the customfield's table > in mysql. So the remainig problem is how to get vtiger to store the > selected > account's Id in the custom field and not in the account_id field. Where is > the connection between popup window,save button and the insertion into the > database ? How can I get vtiger not to treat both the custom and the > already > existing field as the same when storing the account-id ? The same problem > occurs with a custom person field if one is already part of a module by > default. > > I hope someone is able to help. > > Regards > Stefan > > > > -- > View this message in context: > http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html > Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/bc8c2f9c/attachment-0001.htm From asha at vtiger.com Fri Jul 10 04:23:18 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:53:18 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, This would happen if the connection to your database fails with the database information you have provided. Can you brief out the exact steps followed to migrate from 5.0.4 to 5.1.0? On 7/10/09, den jean wrote: > > Hello, > > I try to migrate my CRM into the latest version for testing but I get a > problem during the process of migration. > > When I specify the name of database and after the "next" step, I get this : > > > *Fatal error*: Call to a member function NumRows() on a non-object in * > /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* > > I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try > to migrate this 5.0.4 to 5.1 RC, I get an error. > > Regards, > > _______________________________________________ > 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/20090710/a1db76f6/attachment.htm From djeandot at gmail.com Fri Jul 10 05:27:04 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 14:27:04 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Thanks you for your answer. So I start to click on "Migrate" and I'm on the "Installation Check" with all the values to YES and I choose all the optional modules then I get that : Previous Installation Path : /var/www/vtiger504/ Previous Installation Version : 5.0.4 Admin Username : I give my admin name (but it's not the same as phpmyadmin) Admin Password : ****** Database Name for Migraiton : I give the database of the previous installation. And then I click on "Next", I get the error. Regards, 2009/7/10 Asha > Hi, > > This would happen if the connection to your database fails with the > database information you have provided. Can you brief out the exact steps > followed to migrate from 5.0.4 to 5.1.0? > > On 7/10/09, den jean wrote: > >> Hello, >> >> I try to migrate my CRM into the latest version for testing but I get a >> problem during the process of migration. >> >> When I specify the name of database and after the "next" step, I get this >> : >> >> >> *Fatal error*: Call to a member function NumRows() on a non-object in * >> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >> >> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >> try to migrate this 5.0.4 to 5.1 RC, I get an error. >> >> Regards, >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > 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/20090710/4a64aee2/attachment.htm From Stefan.Lorenz at burdadirect.de Fri Jul 10 05:48:59 2009 From: Stefan.Lorenz at burdadirect.de (Lorenz Stefan) Date: Fri, 10 Jul 2009 14:48:59 +0200 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Thanks for your reply. I had a quick look at the documentation of vtlib but it remains rather unclear to me how to use it with already existing modules such as quotes etc. Would you give some hints, please ? Reagrds Stefan ________________________________ Von: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Im Auftrag von Asha Gesendet: Freitag, 10. Juli 2009 13:22 An: vtigercrm-developers at lists.vtigercrm.com Betreff: Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry > wrote: Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/e9aba47e/attachment.htm From asha at vtiger.com Fri Jul 10 11:34:52 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:04:52 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Can you check if all the database related information in config.inc.php file of /var/www/vtiger504/ installation is correct (including the database name you given for migration) On 7/10/09, den jean wrote: > > Thanks you for your answer. > > So I start to click on "Migrate" and I'm on the "Installation Check" with > all the values to YES and I choose all the optional modules then I get that > : > > Previous Installation Path : /var/www/vtiger504/ > Previous Installation Version : 5.0.4 > Admin Username : I give my admin name (but it's not the same as phpmyadmin) > Admin Password : ****** > Database Name for Migraiton : I give the database of the previous > installation. > > And then I click on "Next", I get the error. > > Regards, > > 2009/7/10 Asha > >> Hi, >> >> This would happen if the connection to your database fails with the >> database information you have provided. Can you brief out the exact steps >> followed to migrate from 5.0.4 to 5.1.0? >> >> On 7/10/09, den jean wrote: >> >>> Hello, >>> >>> I try to migrate my CRM into the latest version for testing but I get a >>> problem during the process of migration. >>> >>> When I specify the name of database and after the "next" step, I get this >>> : >>> >>> >>> *Fatal error*: Call to a member function NumRows() on a non-object in * >>> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >>> >>> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >>> try to migrate this 5.0.4 to 5.1 RC, I get an error. >>> >>> Regards, >>> >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/93402e96/attachment.htm From asha at vtiger.com Fri Jul 10 11:36:25 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:06:25 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, You can get an instance of any of the existing modules and add field for it. The field uitype that I would suggest you is 10. On 7/10/09, Lorenz Stefan wrote: > > Thanks for your reply. I had a quick look at the documentation of vtlib > but it remains rather unclear to me how to use it with already existing > modules such as quotes etc. Would you give some hints, please ? > Reagrds > Stefan > > ------------------------------ > *Von:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *Im Auftrag von *Asha > *Gesendet:* Freitag, 10. Juli 2009 13:22 > *An:* vtigercrm-developers at lists.vtigercrm.com > *Betreff:* Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom > second account field to invoice, sales order, quote > > Hi Stefan, > > I suggest you to try out vtlib. Use uitype 10 of vtlib to create such > custom fields. Hope that meets your requirement which will not clash with > the existing referencing field. > > On 7/10/09, DJLorry wrote: >> >> >> Hello, >> how can I add a second account or person field in these modules ? >> The problem can't be solved by just adding a custom field and changing the >> uitype. (Which works when no account field already exits, though) >> The uitype 50 changes the custom field to contain the button for the >> popup-window for account-selection. >> The problem is that a thereby selected account is stored in the modul's >> default account field whereas the custom field stays blank. I have added a >> query to show the account if I put an accountid in the customfield's table >> in mysql. So the remainig problem is how to get vtiger to store the >> selected >> account's Id in the custom field and not in the account_id field. Where is >> the connection between popup window,save button and the insertion into the >> database ? How can I get vtiger not to treat both the custom and the >> already >> existing field as the same when storing the account-id ? The same problem >> occurs with a custom person field if one is already part of a module by >> default. >> >> I hope someone is able to help. >> >> Regards >> Stefan >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > vtiger Team > > _______________________________________________ > 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/20090710/8169f0ef/attachment-0001.htm From djeandot at gmail.com Mon Jul 13 01:21:55 2009 From: djeandot at gmail.com (den jean) Date: Mon, 13 Jul 2009 10:21:55 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, I ckeck the config.inc.php and I think it's correct. I just wondering if the "Database Name for Migraiton" should be empty or this the previous database ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090713/1c1a72e7/attachment.htm From asha at vtiger.com Mon Jul 13 11:19:35 2009 From: asha at vtiger.com (Asha) Date: Mon, 13 Jul 2009 23:49:35 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Either your new database should have the data copied from previous database (OR) new database can be empty and you can copy the data from previous database in the next step of the migration wizard (which we do not recommend). In your case, looks like the user credentials (mysql username/password from previous installation config file) is not correct to connect to the new database name specified. Please check if that user has the privileges on the new database. On 7/13/09, den jean wrote: > > Hi, > > I ckeck the config.inc.php and I think it's correct. > I just wondering if the "Database Name for Migraiton" should be empty or > this the previous database ? > > Regards, > > _______________________________________________ > 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/20090713/c635a315/attachment.htm From ml at arceva.fr Mon Jul 13 16:44:59 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 14 Jul 2009 01:44:59 +0200 Subject: [Vtigercrm-developers] translate firefox extension Message-ID: <4A5BC6FB.1040201@arceva.fr> Hi all, I actually translate the firefox plugin but I have a big problem with accent Does anyone know how to insert accent in the xpi files (vtigertoolbar.xul for example ?) I have test with ? ou é, the first create a screen bug and the last close the extension Thanks, Bruno From carloz at gnumerica.org Tue Jul 14 07:43:07 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Tue, 14 Jul 2009 16:43:07 +0200 Subject: [Vtigercrm-developers] translate firefox extension In-Reply-To: <4A5BC6FB.1040201@arceva.fr> References: <4A5BC6FB.1040201@arceva.fr> Message-ID: <4A5C997B.9080806@gnumerica.org> Hi Bruno, I did some googling on this, and here's my findings: http://www.rietta.com/firefox/Tutorial/locale.html https://developer.mozilla.org/en/International_characters_in_XUL_JavaScript http://forums.mozillazine.org/viewtopic.php?f=19&t=337032&start=0&st=0&sk=t&sd=a https://developer.mozilla.org/En/XUL Please keep me updated about your localization effort. I'm the coordinator of the italian community translation team (see http://vtiger-italia.net/ and http://vtiger-italia.net/mailman/listinfo/traduttori_vtiger-italia.net ) and we are definitely interested in the issue. Ciao carloz Fusioncore ha scritto: > Hi all, > I actually translate the firefox plugin but I have a big problem with accent > Does anyone know how to insert accent in the xpi files > (vtigertoolbar.xul for example ?) I have test with ? ou é, the > first create a screen bug and the last close the extension > > Thanks, > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From djeandot at gmail.com Wed Jul 15 01:04:19 2009 From: djeandot at gmail.com (den jean) Date: Wed, 15 Jul 2009 10:04:19 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: I create a user for the database with the same login and pwd as the admin user on the CRM, but the problem is still here. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090715/dec67711/attachment.htm From prasad at vtiger.com Sun Jul 19 07:11:45 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 19:41:45 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing Message-ID: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090719/63e5d5f8/attachment.htm From brett.hooker at roarz.com Sun Jul 19 07:51:07 2009 From: brett.hooker at roarz.com (Brett Hooker) Date: Mon, 20 Jul 2009 00:51:07 +1000 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Message-ID: <4A6332DB.4090809@roarz.com> Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug > fixes into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/a7c578bb/attachment.htm From prasad at vtiger.com Sun Jul 19 08:24:22 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 20:54:22 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <4A6332DB.4090809@roarz.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> <4A6332DB.4090809@roarz.com> Message-ID: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: > > Prasad, > > Just clarifying, do you want testing done on the RC code line, or the > latest code in SVN? > > > Thanks, > Brett > > Prasad wrote: > > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug fixes > into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/93fa1713/attachment.htm From s.shaw at amalganet.com Sun Jul 19 09:47:55 2009 From: s.shaw at amalganet.com (AML) Date: Sun, 19 Jul 2009 17:47:55 +0100 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting In-Reply-To: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Message-ID: <200907191648.n6JGmKbh022948@vtigerforge.com> I have an upgrade to test, from 5.0.4 Is it possible to download the zip file as my SVN knowledge is not great. Ken _____ From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: 19 July 2009 16:24 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad 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/20090719/f67018ab/attachment-0001.htm From asha at vtiger.com Wed Jul 22 06:47:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:17:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone Message-ID: Hi All, We are glad to announce the release of vtiger 5.1.0 today! This release addresses around 150+ features/enhancements, 700 bug fixes besides performance improvements. We are hopeful that you will like the new release. Following are some of the important features added: - Webservices API - Workflow - Vtlib library - Services support - Layout Editor - Duplicate Merging - Mail Scanner - Mass Edit - Multi-Currency Support - Recurring Invoice Thank you for all your patience and support in making this a big release. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Release Notes is available here. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Note: vtiger CRM 5.0.4 Office Plugin will continue to work with vtiger CRM 5.1.0 Online Demo: http://en.vtiger.com Documentation: http://wiki.vtiger.com We welcome your feedback. Please report any issues on Tracor on vtiger Forums . -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/4460e149/attachment.htm From manilal at ejyothi.com Wed Jul 22 07:00:47 2009 From: manilal at ejyothi.com (Manilal K M) Date: Wed, 22 Jul 2009 19:30:47 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Quoting Asha : > Hi All, > > We are glad to announce the release of vtiger 5.1.0 today! This release > addresses around 150+ features/enhancements, 700 bug fixes besides > performance improvements. We are hopeful that you will like the new release. > > The download link in the vtiger.com home page still leads to 5.0.4. You should follow the download links in the email. regards -- Manilal K M eJyothi Services http://www.ejyothi.com From asha at vtiger.com Wed Jul 22 07:24:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:54:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> References: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Message-ID: Hi Manilal, Thanks for pointing it out. We have updated the links. Please check it out. On 7/22/09, Manilal K M wrote: > > > Quoting Asha : > > > Hi All, > > > > We are glad to announce the release of vtiger 5.1.0 today! This release > > addresses around 150+ features/enhancements, 700 bug fixes besides > > performance improvements. We are hopeful that you will like the new > release. > > > > > > > > The download link in the vtiger.com home page still leads to 5.0.4. > You should follow the download links in the email. > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090722/f2cae4e2/attachment.htm From galdes at internode.on.net Wed Jul 22 17:11:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 09:41:33 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <4A67AAB5.1030608@internode.on.net> Hello all, I've upgraded from 5.01 to 5.10 using the migration instructions at http://wiki.vtiger.com/index.php/vtiger510:Migration It seemed to progress through as intended but when i log in (as an Admin user) i see no information on the Home Page but there is a top menu. I select Contacts and i get the following error: *Fatal error*: Call to a member function FetchRow() on a non-object in */home//public_html/vtigercrm/include/database/PearDatabase.php* on line *645 *The same for Accounts. I click on Settings and the same thing happens as did with Home Page - the page load ok but no information within it. Any ideas? What info might help you? This is running on a cPanel. vtiger was installed via source. Cheers, -Andrew Galdes * * -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/d4f2c0d7/attachment.htm From dfar2008 at gmail.com Wed Jul 22 18:16:58 2009 From: dfar2008 at gmail.com (ding jianting) Date: Thu, 23 Jul 2009 09:16:58 +0800 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <4A67AAB5.1030608@internode.on.net> References: <4A67AAB5.1030608@internode.on.net> Message-ID: Hi,Andrew Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes wrote: > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions at > http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an Admin > user) i see no information on the Home Page but there is a top menu. I > select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a non-object in * > /home//public_html/vtigercrm/include/database/PearDatabase.php*on line > *645 > > *The same for Accounts. I click on Settings and the same thing happens as > did with Home Page - the page load ok but no information within it. > > Any ideas? What info might help you? This is running on a cPanel. vtiger > was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- ________________________________________ ????CRM ?? ???????????????631????? ???021-64876448 ??:021-64876441 ???(0)13701696656 Email:dfar2008 at gmail.com ----------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/22ac5120/attachment.htm From prasad at vtiger.com Wed Jul 22 18:40:33 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 07:10:33 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down Message-ID: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/a975b7a4/attachment-0001.htm From galdes at internode.on.net Wed Jul 22 19:56:41 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 12:26:41 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: <4A67AAB5.1030608@internode.on.net> Message-ID: <4A67D169.9000208@internode.on.net> Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment.htm From prasad at vtiger.com Wed Jul 22 20:07:42 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 08:37:42 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down In-Reply-To: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment.htm From pbucolo at vodafone.it Thu Jul 23 01:44:45 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 10:44:45 +0200 Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown In-Reply-To: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> Message-ID: Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0001.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side-0001.jpeg From vikas at vtiger.com Thu Jul 23 05:08:28 2009 From: vikas at vtiger.com (Vikas Jain) Date: Thu, 23 Jul 2009 17:38:28 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: > > 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) > 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) > 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 23 Jul 2009 12:26:41 +0930 > From: Andrew Galdes > Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A > Major > Milestone > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <4A67D169.9000208 at internode.on.net> > Content-Type: text/plain; charset="gb2312" > > Thanks for the help. Let me know if you want more of that log file. Note > that the date is incorrect on in the following: > > Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] > Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] > Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into > vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values > (?,?,?,?,?) > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, > Approved] > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > parameters : [1,AUD,AU,$,1,Active,-11] > > -Andrew Galdes > > > > Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the > module(Utilities) language file for the selected language(en_us) or the > default language(en_us) > > > ding jianting wrote: > > Hi,Andrew > > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > > wrote: > > > > Hello all, > > > > I've upgraded from 5.01 to 5.10 using the migration instructions > > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > > > It seemed to progress through as intended but when i log in (as an > > Admin user) i see no information on the Home Page but there is a > > top menu. I select Contacts and i get the following error: > > > > *Fatal error*: Call to a member function FetchRow() on a > > non-object in > > > */home//public_html/vtigercrm/include/database/PearDatabase.php* > > on line *645 > > > > *The same for Accounts. I click on Settings and the same thing > > happens as did with Home Page - the page load ok but no > > information within it. > > > > Any ideas? What info might help you? This is running on a cPanel. > > vtiger was installed via source. > > > > Cheers, > > -Andrew Galdes > > > > * > > * > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > > > > ----------------------------------------------------------------------- > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Thu, 23 Jul 2009 08:37:42 +0530 > From: Prasad > Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: > trac.vtiger.com is down > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > > > Dear members, > > > > Our issue tracker server disk space is pilled up with log and needs a > > cleanup. > > > > Administrator team is working to get it back back soon. Sorry for the > > inconvenience caused. > > > > Regards, > > Prasad > > vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Thu, 23 Jul 2009 10:44:45 +0200 > From: "Pierluigi Bucolo" > Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: > trac.vtiger.com isdown > To: > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Side by side view of Diff, using trac doesn?t work with FFX 3.5. > > It?s work with IE. > > > > The error is in attach. > > > > Regards, > > - Pierluigi > > > > _____ > > Da: vtigercrm-developers-bounces at lists.vtigercrm.com > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di > Prasad > Inviato: gioved? 23 luglio 2009 05.08 > A: vtigercrm-developers at lists.vtigercrm.com > Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com > isdown > > > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.htm > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: Side-By-Side.JPG > Type: image/jpeg > Size: 16568 bytes > Desc: not available > Url : > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side.jpeg > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 43, Issue 5 > *************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/0683591b/attachment.htm From ml at arceva.fr Thu Jul 23 05:18:04 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 14:18:04 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks Message-ID: <4A6854FC.8090708@arceva.fr> Hi all, I found a small bug on the home page block In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save and cancel button label are hardcode Regards, Bruno From nitin at vtiger.com Thu Jul 23 06:12:28 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Thu, 23 Jul 2009 06:12:28 -0700 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6854FC.8090708@arceva.fr> References: <4A6854FC.8090708@arceva.fr> Message-ID: Hi Bruno, The Buttons you are talking about are not hardcoded, you can change the button label from /include/language/en_us.lang.php file. Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL Change these strings as they are handling save and cancel button through the vtigercrm. Regards, Nitin Goyal Vtiger Team On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore wrote: > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > 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/20090723/6eb84910/attachment.htm From pbucolo at vodafone.it Thu Jul 23 06:32:39 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 15:32:39 +0200 Subject: [Vtigercrm-developers] R: vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: OK. Now it works. Regards, - Pierluigi - _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Vikas Jain Inviato: gioved? 23 luglio 2009 14.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43,Issue 5 Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) ---------------------------------------------------------------------- Message: 1 Date: Thu, 23 Jul 2009 12:26:41 +0930 From: Andrew Galdes Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <4A67D169.9000208 at internode.on.net> Content-Type: text/plain; charset="gb2312" Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V ] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/c2b2cf7f/attachment-0001.htm ------------------------------ Message: 2 Date: Thu, 23 Jul 2009 08:37:42 +0530 From: Prasad Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/ed365db5/attachment-0001.htm ------------------------------ Message: 3 Date: Thu, 23 Jul 2009 10:44:45 +0200 From: "Pierluigi Bucolo" Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/Side-By-Side.jpeg ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 43, Issue 5 *************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/59e3f9eb/attachment-0001.htm From ml at arceva.fr Thu Jul 23 06:47:06 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 15:47:06 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: References: <4A6854FC.8090708@arceva.fr> Message-ID: <4A6869DA.5060604@arceva.fr> The inclued language file was already translate. In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around line 29: If I replace it by : The buttons labels were transate Regards, Bruno French-vtiger Manager Nitin Goyal a ?crit : > Hi Bruno, > > The Buttons you are talking about are not hardcoded, you can change > the button label from /include/language/en_us.lang.php file. > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > Change these strings as they are handling save and cancel button > through the vtigercrm. > > > Regards, > Nitin Goyal > Vtiger Team > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > wrote: > > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From fp at crm-now.de Thu Jul 23 07:04:47 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Thu, 23 Jul 2009 16:04:47 +0200 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: References: Message-ID: <005f01ca0b9e$9c19b830$d44d2890$@de> I tried to place a contribution at the vtiger Extension site for the v5.0.1. No luck the latest version offered at the Vtiger Versions picklist is v.5.0.1 RC. Could anybody fix that? Regards, Frank From asha at vtiger.com Thu Jul 23 09:28:31 2009 From: asha at vtiger.com (Asha) Date: Thu, 23 Jul 2009 21:58:31 +0530 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6869DA.5060604@arceva.fr> References: <4A6854FC.8090708@arceva.fr> <4A6869DA.5060604@arceva.fr> Message-ID: Hi Bruno, Thanks for identifying the issue. We shall soon address this. We have noted down the issue on our trac system ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6191 ) On 7/23/09, Fusioncore wrote: > > The inclued language file was already translate. > In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around > line 29: > > style="height:28px;" width=60%> > class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > If I replace it by : > > style="height:28px;" width=60%> > value="{$APP.LBL_SAVE_BUTTON_LABEL}" class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > value="{$APP.LBL_CANCEL_BUTTON_LABEL}" class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > The buttons labels were transate > > Regards, > Bruno > French-vtiger Manager > > > > Nitin Goyal a ?crit : > > > Hi Bruno, > > > > The Buttons you are talking about are not hardcoded, you can change > > the button label from /include/language/en_us.lang.php file. > > > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > > > Change these strings as they are handling save and cancel button > > through the vtigercrm. > > > > > > Regards, > > Nitin Goyal > > Vtiger Team > > > > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > > > wrote: > > > > Hi all, > > I found a small bug on the home page block > > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > > the save > > and cancel button label are hardcode > > > > Regards, > > Bruno > > _______________________________________________ > > 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/6026aac5/attachment.htm From svk at vtiger.com Thu Jul 23 10:21:09 2009 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 23 Jul 2009 10:21:09 -0700 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: <005f01ca0b9e$9c19b830$d44d2890$@de> References: <005f01ca0b9e$9c19b830$d44d2890$@de> Message-ID: <370368f40907231021r74c0af4cg539896c141c9d5db@mail.gmail.com> Frank, Version 5.1 is available now as a choice. thanks, -Sreenivas On Thu, Jul 23, 2009 at 7:04 AM, Frank Piepiorra wrote: > I tried to place a contribution at the vtiger Extension site for the > v5.0.1. > No luck the latest version offered at the Vtiger Versions picklist is > v.5.0.1 RC. Could anybody fix that? > > Regards, > Frank > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 733-3229 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/70ec43f0/attachment.htm From manilal at ejyothi.com Thu Jul 23 23:10:40 2009 From: manilal at ejyothi.com (Manilal K M) Date: Fri, 24 Jul 2009 11:40:40 +0530 Subject: [Vtigercrm-developers] User privileges error Message-ID: <20090724114040.161555wp33un50g0@app.ascellatech.com> Hello all, I tried to post this to vtiger forums, but it's not responding, hence posting this to mailing list as it is very much critical for me. I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am using LDAP authentication and authentication is working fine. But when I created a new user I got the following error message: [code] Parse error: syntax error, unexpected ';' in /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 [/code] Here is the contents of the above file: [code] '','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); ?> [/code] It seems the user is not being added to the database. I have also tried to use the SQL authentication, but no luck so far. Can somebody provide some hints? regards -- Manilal K M eJyothi Services http://www.ejyothi.com From eugene.babiy at gmail.com Fri Jul 24 04:36:01 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Fri, 24 Jul 2009 14:36:01 +0300 Subject: [Vtigercrm-developers] Sending Document from system by e-mail Message-ID: <4A699CA1.3020303@gmail.com> Hi. Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. His business is Engineering Development and he often need to send documents to clients and also to have possibility to store records and data in CRM. Is there a possibility to make easier sending of documents from inside of system on e-mail? Best regards, Eugene Babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/c5b83f19/eugene_babiy.vcf From asha at vtiger.com Fri Jul 24 05:29:08 2009 From: asha at vtiger.com (Asha) Date: Fri, 24 Jul 2009 17:59:08 +0530 Subject: [Vtigercrm-developers] Sending Document from system by e-mail In-Reply-To: <4A699CA1.3020303@gmail.com> References: <4A699CA1.3020303@gmail.com> Message-ID: Hi Eugene Babiy, As far as understand your requirement, following is what you can do: 1. Create Contacts for each of the clients. 2. Associate the required document to the contact. 3. Go to the detail view of the document and use 'send mail with attachment' link on the right side. 4. Compose mail box with attachment will open up. Select the contact name and send the email. 5. The email will be automatically attached to the Contact. Let me know if you are looking for something else. On 7/24/09, Eugene Babiy wrote: > > Hi. > > Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. > His business is Engineering Development and he often need to send > documents to clients and also to have possibility to store records and > data in CRM. > > Is there a possibility to make easier sending of documents from inside > of system on e-mail? > > Best regards, Eugene Babiy > > _______________________________________________ > 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/20090724/a0f04a43/attachment-0001.htm From alanslists at gmail.com Fri Jul 24 08:09:34 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 16:09:34 +0100 Subject: [Vtigercrm-developers] Asterisk Integration Message-ID: Can someone explain what this chunk of code is for in function function transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? $arr = explode(":", $to); if(is_array($arr)){ $typeCalled = $arr[0]; $to = trim($arr[1]); } This is being called via the Ajax stuff for initiating outbound calls. Our telephone numbers for contacts/leads etc are usually in the form of either: $AREA $NUMBER or they have an international prefix: +$INT (0)$AREA $NUMBER explode() always results in an Array. As we do *not* have a colon in our phone numbers this chunk of code mangles them and afterwards $to is empty. I don't think it should be called for an outgoing call. Alan From pinaki at vtiger.com Fri Jul 24 09:58:22 2009 From: pinaki at vtiger.com (Pinaki Das) Date: Fri, 24 Jul 2009 22:28:22 +0530 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: References: Message-ID: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Hi Alan, This issue has been fixed in the GA release of vtiger. Can you please check and update us? Regards Pinaki vtiger Team On Fri, Jul 24, 2009 at 8:39 PM, Alan Lord (News) wrote: > Can someone explain what this chunk of code is for in function function > transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? > > > $arr = explode(":", $to); > if(is_array($arr)){ > $typeCalled = $arr[0]; > $to = trim($arr[1]); > } > > > This is being called via the Ajax stuff for initiating outbound calls. > > Our telephone numbers for contacts/leads etc are usually in the form of > either: > > $AREA $NUMBER > > or they have an international prefix: > > +$INT (0)$AREA $NUMBER > > > explode() always results in an Array. > > As we do *not* have a colon in our phone numbers this chunk of code > mangles them and afterwards $to is empty. > > I don't think it should be called for an outgoing call. > > Alan > > > _______________________________________________ > 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/20090724/696e471a/attachment.htm From alanslists at gmail.com Fri Jul 24 10:40:58 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 18:40:58 +0100 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> References: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Message-ID: On 24/07/09 17:58, Pinaki Das wrote: > Hi Alan, > > This issue has been fixed in the GA release of vtiger. Can you please > check and update us? OK, I used the upgrade (vtigercrm-5.0.x-to-5.1.0-patch.zip) from 5.10RC to 5.10 and it doesn't seem to have updated this file. Looking at the new package I can see what you have done to fix it. I've been working on some changes to the Asterisk Integration code. When I have something more concrete to show I will. Thanks for the quick response. Alan From prasad at vtiger.com Fri Jul 24 11:52:11 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 25 Jul 2009 00:22:11 +0530 Subject: [Vtigercrm-developers] vtiger CRM Forum Traffic Surge Message-ID: <39d18b250907241152g230801d8hb409797f9775ffd3@mail.gmail.com> Dear members, Due to surge in traffic and discussion at http://forums.vtiger.com, you might find it to be slow sometimes. Our IT team is working on improving the server resources soon, please bear with us in the meantime. Sorry for the inconvenience, but don't miss your comments or feedback to us Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/80dd266e/attachment.htm From eugene.babiy at gmail.com Sat Jul 25 03:24:05 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Sat, 25 Jul 2009 13:24:05 +0300 Subject: [Vtigercrm-developers] Translation Problems Message-ID: <4A6ADD45.5010206@gmail.com> Hi. I'm translating vTiger 5.1.0 to Russian and experiencing some problems. 1. On creating Document page labels 'Folder Name' and 'Document No' are still displaying in English although they are translated in document's module language file. 2. Actions list is not displaying at all (Detail view of Document). Any ideas? P.S. The same was in 5.1.0RC -- Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/7f99e0a5/eugene_babiy.vcf From StevenS at techtron.co.za Sun Jul 26 05:21:22 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 14:21:22 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon Message-ID: I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/864de6c1/attachment.htm From StevenS at techtron.co.za Sun Jul 26 06:58:02 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 15:58:02 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: Never mind just a broken mirror on sourceforge, used another mirror worked fine. From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Steven Sher Sent: 26 July 2009 02:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] problem downloading customer portal addon I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/92ada472/attachment.htm From prasad at vtiger.com Sun Jul 26 11:10:25 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:40:25 +0530 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: <39d18b250907261110k5c9417d3m258a01fb5b2a25ee@mail.gmail.com> Thanks for the update, I have posted the same comment on the blogs now. http://www.vtiger.com/blogs/2009/07/22/vtiger-crm-510-is-released-major-milestone/#comment-120363 Regards, Prasad vtiger Team On 7/26/09, Steven Sher wrote: > > Never mind just a broken mirror on sourceforge, used another mirror > worked fine. > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Steven > Sher > *Sent:* 26 July 2009 02:21 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] problem downloading customer portal > addon > > > > I cant seem to download the customer portal addon for vtigercrm5.1 the link > seems to be invalid? > > > > > > > > > > > > > > _______________________________________________ > 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/20090726/0eaa6329/attachment-0001.htm From prasad at vtiger.com Sun Jul 26 11:23:44 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:53:44 +0530 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: <4A6ADD45.5010206@gmail.com> References: <4A6ADD45.5010206@gmail.com> Message-ID: <39d18b250907261123w7f59ea4bv920118fea36c4dbb@mail.gmail.com> Hi Eugene, Your language translation pack should include module translation for (Services, ServiceContracts, Recycle Bin...) Refer to some of the translated version at: http://www.vtiger.com//index.php?option=com_jreviews&task=list&jr_vtigerversions=Version+5.1&Itemid=185 Regards, Prasad vtiger Team On 7/25/09, Eugene Babiy wrote: > > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > > -- > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > _______________________________________________ > 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/20090726/9a3d7dec/attachment.htm From fp at crm-now.de Sun Jul 26 12:28:57 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Sun, 26 Jul 2009 21:28:57 +0200 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: References: Message-ID: <006401ca0e27$52e0d460$f8a27d20$@de> Eugene, for a patch see http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 Regards, Frank > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > -- > Best regards, Eugene Babiy From ml at arceva.fr Sun Jul 26 16:03:26 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 01:03:26 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module Message-ID: <4A6CE0BE.5030204@arceva.fr> Hi All, I have some problems with the French language pack We have translate *all *strings of the Documents Modules and when we use the french language, all of the column Action at the right don't appear when we look a download file. I apply this patch http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 and nothing change In english the 3 button work perfectly The language pack is available at : http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip Thanks for your help Bruno From dfar2008 at gmail.com Sun Jul 26 18:19:41 2009 From: dfar2008 at gmail.com (ding jianting) Date: Mon, 27 Jul 2009 09:19:41 +0800 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: <20090724114040.161555wp33un50g0@app.ascellatech.com> References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: First backup user_privileges_215.php file . Then delete user_privileges_215.php and edit the user with userid 215. On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > Hello all, > I tried to post this to vtiger forums, but it's not responding, > hence posting this to mailing list as it is very much critical for me. > > I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am > using LDAP authentication and authentication is working fine. But when > I created a new user I got the following error message: > > [code] > Parse error: syntax error, unexpected ';' in > /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 > [/code] > > Here is the contents of the above file: > > > [code] > //This is the access privilege file > $is_admin=false; > $current_user_roles=''; > $current_user_parent_role_seq=''; > $current_user_profiles=array(); > $profileGlobalPermission=; > $profileTabsPermission=; > $profileActionPermission=array(); > $current_user_groups=array(); > $subordinate_roles=array(); > $parent_roles=array(); > $subordinate_roles_users=array(); > > $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, > > Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); > ?> > [/code] > > It seems the user is not being added to the database. I have also > tried to use the SQL authentication, but no luck so far. Can somebody > provide some hints? > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090726/823c4888/attachment.htm From manilal at ejyothi.com Sun Jul 26 22:12:58 2009 From: manilal at ejyothi.com (Manilal K M) Date: Mon, 27 Jul 2009 10:42:58 +0530 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: <20090727104258.17734ne4i3dw18ys@app.ascellatech.com> I missed one fact: 1. The user is not created in the database and hence I can't edit it. Quoting ding jianting : > First backup user_privileges_215.php file . > Then delete user_privileges_215.php and edit the user with userid 215. > > On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > >> Hello all, >> I tried to post this to vtiger forums, but it's not responding, >> hence posting this to mailing list as it is very much critical for me. >> >> I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am >> using LDAP authentication and authentication is working fine. But when >> I created a new user I got the following error message: >> >> [code] >> Parse error: syntax error, unexpected ';' in >> /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 >> [/code] >> >> Here is the contents of the above file: >> >> >> [code] >> > //This is the access privilege file >> $is_admin=false; >> $current_user_roles=''; >> $current_user_parent_role_seq=''; >> $current_user_profiles=array(); >> $profileGlobalPermission=; >> $profileTabsPermission=; >> $profileActionPermission=array(); >> $current_user_groups=array(); >> $subordinate_roles=array(); >> $parent_roles=array(); >> $subordinate_roles_users=array(); >> >> $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, >> >> Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); >> ?> >> [/code] >> >> It seems the user is not being added to the database. I have also >> tried to use the SQL authentication, but no luck so far. Can somebody >> provide some hints? >> >> regards >> >> -- >> Manilal K M >> eJyothi Services >> http://www.ejyothi.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > -- Manilal K M eJyothi Services http://www.ejyothi.com From varma at vtiger.com Mon Jul 27 02:04:36 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 14:34:36 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM IST). Sorry for the inconvenience. We shall update you as soon as they are up and running again. -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1a8a4c43/attachment.htm From djeandot at gmail.com Mon Jul 27 02:43:54 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 11:43:54 +0200 Subject: [Vtigercrm-developers] Keep the id numerotation in vtiger 5.1.0 Message-ID: Hello, How can I keep the numerotation that I have in vtiger 5.0.4 (for example tickets 1, 2, 1500...) ? Because the numerotation in vtiger 5.1.0, the numerotation is bizarre (CON1...). Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/85854aa9/attachment.htm From eugene.babiy at gmail.com Mon Jul 27 02:42:07 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Mon, 27 Jul 2009 12:42:07 +0300 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6CE0BE.5030204@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> Message-ID: <4A6D766F.1000005@gmail.com> Hi Bruno. I've tested German Language Pack for 5.1.0 and it also has a problems with displaying of Actions list. I've found that the problem is only in the label "File Name". When I leave it untranslated in Langpack, everything else displays Ok, but when it's translated, Actions list is not showing. So you can just leave that label untranslated until some patch will appear. Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy Fusioncore ?????: > Hi All, > > I have some problems with the French language pack > We have translate *all *strings of the Documents Modules and when we use > the french language, all of the column Action at the right don't appear > when we look a download file. > I apply this patch > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > and nothing change > In english the 3 button work perfectly > The language pack is available at : > http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > > Thanks for your help > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/b6802013/eugene_babiy-0001.vcf From StevenS at techtron.co.za Mon Jul 27 02:51:14 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Mon, 27 Jul 2009 11:51:14 +0200 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? Message-ID: I am looking for anybody who does support/development work for vTiger in South Africa, preferably Cape Town. Thanks Steven -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/791e68fe/attachment.htm From varma at vtiger.com Mon Jul 27 02:51:38 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 15:21:38 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) are up and running now. Please check it and let us know if you have any problem access them. On Mon, Jul 27, 2009 at 2:34 PM, Varma wrote: > Hi All, > > Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( > blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, > 2009 ( 2:45PM IST to 3:15 PM IST). > > Sorry for the inconvenience. We shall update you as soon as they are up and > running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1b81f768/attachment.htm From galdes at internode.on.net Mon Jul 27 02:57:23 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Mon, 27 Jul 2009 19:27:23 +0930 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? In-Reply-To: References: Message-ID: <4A6D7A03.3030700@internode.on.net> Hi Steven, We are hosting and supporting vtiger but we are in Australia. Let me know if you have trouble and we might be able to help you out. Cheers, -Andrew G Steven Sher wrote: > > I am looking for anybody who does support/development work for vTiger > in South Africa, preferably Cape Town. > > > > Thanks > > Steven > > > -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/3ed980d4/attachment.htm From ml at arceva.fr Mon Jul 27 03:38:22 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 12:38:22 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D766F.1000005@gmail.com> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> Message-ID: <4A6D839E.4040702@arceva.fr> Hi Eugene, Your solution doesn't work with success with the french pack If anyone have an other idea , Thanks, Bruno Eugene Babiy a ?crit : > Hi Bruno. > > I've tested German Language Pack for 5.1.0 and it also has a problems > with displaying of Actions list. I've found that the problem is only in > the label "File Name". When I leave it untranslated in Langpack, > everything else displays Ok, but when it's translated, Actions list is > not showing. > > So you can just leave that label untranslated until some patch will appear. > > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > > Fusioncore ?????: > >> Hi All, >> >> I have some problems with the French language pack >> We have translate *all *strings of the Documents Modules and when we use >> the french language, all of the column Action at the right don't appear >> when we look a download file. >> I apply this patch >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 >> and nothing change >> In english the 3 button work perfectly >> The language pack is available at : >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip >> >> Thanks for your help >> >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com From nitin at vtiger.com Mon Jul 27 05:14:44 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Mon, 27 Jul 2009 05:14:44 -0700 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D839E.4040702@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: Hi, You can try the fix suggested in the comments of the following ticket, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 try this, it will fix the issue. Regards, Nitin Goyal Vtiger Team On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore wrote: > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a problems > > with displaying of Actions list. I've found that the problem is only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions list is > > not showing. > > > > So you can just leave that label untranslated until some patch will > appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and when we use > >> the french language, all of the column Action at the right don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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/20090727/34482353/attachment.htm From ml at arceva.fr Mon Jul 27 05:53:54 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 14:53:54 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: <4A6DA362.8040000@arceva.fr> Thanks, It work Bruno Nitin Goyal a ?crit : > Hi, > > You can try the fix suggested in the comments of the following ticket, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 > > try this, it will fix the issue. > > Regards, > Nitin Goyal > Vtiger Team > > > On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore > wrote: > > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a > problems > > with displaying of Actions list. I've found that the problem is > only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions > list is > > not showing. > > > > So you can just leave that label untranslated until some patch > will appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and > when we use > >> the french language, all of the column Action at the right > don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From djeandot at gmail.com Mon Jul 27 06:34:04 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 15:34:04 +0200 Subject: [Vtigercrm-developers] Modify the "Send Mail" functionnality Message-ID: Hello, I try to modify the functionnality of the button "Send Mail", but I don't have success. I just want send mail to the main adress and don't have the choice between the mail or yahoo adress. How can I do to make that up ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1c7510c6/attachment-0001.htm From asha at vtiger.com Mon Jul 27 08:09:40 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 20:39:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help Message-ID: Hi All, People have been reporting us a major issue with migration, where the script that changes the MyISAM tables to InnoDB tables is not working. We are trying to reproduce this issue in our test labs and have not succeeded yet. Whole problem is around the query 'SHOW TABLE STATUS FROM '. Would be great if anyone can provide us a helping hand in analyzing or resolving the issue. Possibly if anyone can reproduce this issue on their servers and can give us the access to the server, that would help a lot. Hoping to get a resolution for this issue soon so that people can migrate to vtiger 5.1.0 smoothly. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/366a9fb2/attachment.htm From djeandot at gmail.com Mon Jul 27 08:23:49 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 17:23:49 +0200 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi, What are we supposed to have like error ? Regards, 2009/7/27 Asha > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM > '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on their > servers and can give us the access to the server, that would help a lot. > > Hoping to get a resolution for this issue soon so that people can migrate > to vtiger 5.1.0 smoothly. > > -- > Regards, > Asha > 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/20090727/639e43f4/attachment.htm From asha at vtiger.com Mon Jul 27 09:28:30 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 21:58:30 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi All, The migration error would look something like below: ---------------------------------------------- Notice: Undefined index: ajax in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 15 Notice: Undefined index: web161-vtiger_localhost:3306_HealthApproved in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 29 Notice: Undefined index: updateTableEngine in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 31 Fatal error: Call to a member function NumRows() on a non-object in /home/sites/yourdomian/public_html/crm/include/utils/DBHealthCheck.php on line 58 ---------------------------------------------- On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/6980aa80/attachment.htm From alanslists at gmail.com Mon Jul 27 09:34:27 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Mon, 27 Jul 2009 17:34:27 +0100 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: On 27/07/09 16:09, Asha wrote: > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on > their servers and can give us the access to the server, that would help > a lot. > > Hoping to get a resolution for this issue soon so that people can > migrate to vtiger 5.1.0 smoothly. I had some issues with the upgrade but not to do with the InnoDB table conversion. The bog problem was that the database upgrade routine did not check the version info in the vtiger_version table and when I stupidly backed up a 5.0.4 db but told the install script it was a 5.1.0 RC it went through happily and completed. But the install was completely borked. Took me a while to work out what I was doing wrong... But the InnoDB change has worked fine for me several times over. PHP version: PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 MySQL version: Ver 14.12 Distrib 5.0.51a, for debian-linux-gnu (i486) using readline 5.2 HTH Alan From prasad at vtiger.com Mon Jul 27 09:42:59 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 27 Jul 2009 22:12:59 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Hi, If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' returns NULL value result for InnoDB tables. How to reproduce the issue? You will end up with the described result if you have the following MySQL configuration. [mysqld] default-storage-engine=MyISAM skip-innodb Please note, for vtiger CRM to work properly you will need to have InnoDB support enabled in MySQL. How to avoid the issue? [mysqld] default-storage-engine=INNODB #skip-innodb Regards, Prasad vtiger Team On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/d129fa52/attachment.htm From ml at arceva.fr Mon Jul 27 17:03:51 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:03:51 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page Message-ID: <4A6E4067.8020304@arceva.fr> Hi Team, I found another hardcode strings or missing modules. The gmail bookmarklet is hardcode on the Bookmarklet.tpl file Where I can add the strings ? I test in /modules/Emails/language an /include/language without success An other issue who can be critical in non english speeking country is the feedback link who point on a page of vtiger.com site Regards, Bruno French-vtiger Manager From ml at arceva.fr Mon Jul 27 17:18:54 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:18:54 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page In-Reply-To: <4A6E4067.8020304@arceva.fr> References: <4A6E4067.8020304@arceva.fr> Message-ID: <4A6E43EE.7040601@arceva.fr> Fusioncore a ?crit : > Hi Team, > > I found another hardcode strings or missing modules. The gmail > bookmarklet is hardcode on the Bookmarklet.tpl file > Where I can add the strings ? I test in /modules/Emails/language an > /include/language without success > > An other issue who can be critical in non english speeking country is > the feedback link who point on a page of vtiger.com site > > Regards, > Bruno > French-vtiger Manager > I add some string: On the home page widget : the edit, refresh, hide and close button alternate label and when we clic on the edit button, the two button save and close are hardcode (file /Smarty/templates/Home/MainHomeBlock.tpl around line 20) From djeandot at gmail.com Wed Jul 29 01:46:27 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 10:46:27 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview Message-ID: Hi, I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a filter with the ticket ID in the first column as you can see here : http://img151.imageshack.us/img151/6218/filterh.jpg I saved it but the tickets ID is not on the listview : http://img148.imageshack.us/img148/133/listview.jpg How can I fix that ? Regards, -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/3ba37324/attachment.htm From galdes at internode.on.net Wed Jul 29 02:28:30 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Wed, 29 Jul 2009 18:58:30 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos Message-ID: <4A70163E.8020005@internode.on.net> Hello all, We've developed a training video pack for vTiger CRM. I'd like some feedback on the supposed demand for such a training tool. Before we spend too much time on the final product development and marketing of the video pack, i'd like to know if you, your clients or peers would benefit from such a tool. Feel free to post off list as this might infringe on list policy. -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From sandeep at vtiger.com Wed Jul 29 04:02:22 2009 From: sandeep at vtiger.com (Sandeep P) Date: Wed, 29 Jul 2009 16:32:22 +0530 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: References: Message-ID: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Hi Denis, Kindly make the following change on your source in order to resolve the issue you have mentioned. In file *modules/CustomView/CustomView.php* at *line no 965* in function getCvColumnListSQL add the code provided below else if($list[1] == 'crmid'){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } after the below mentioned lines if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } Check if the above changes help you in solving the issue. On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > Hi, > > I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a > filter with the ticket ID in the first column as you can see here : > http://img151.imageshack.us/img151/6218/filterh.jpg > > I saved it but the tickets ID is not on the listview : > http://img148.imageshack.us/img148/133/listview.jpg > > How can I fix that ? > > Regards, > > > -- > Jean Denis > DotRiver pr?sente EluRiver, une approche unique pour la bureautique des > ?lus de France. > http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html > > Pas ? pas, agissons au quotidien pour pr?server notre environnement. > N'imprimez que si n?cessaire, > r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les > solutions DotRiver. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/aa505b8d/attachment.htm From asha at vtiger.com Wed Jul 29 04:01:40 2009 From: asha at vtiger.com (Asha) Date: Wed, 29 Jul 2009 16:31:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> References: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Message-ID: Hi All, Thanks for your support. We have finally analyzed the issue and found the quick fix for it. Please follow the trac ticket below for more details: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6205 On 7/27/09, Prasad wrote: > > Hi, > > If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' > returns NULL value result for InnoDB tables. > > How to reproduce the issue? > You will end up with the described result if you have the following MySQL > configuration. > [mysqld] > default-storage-engine=MyISAM > skip-innodb > > Please note, for vtiger CRM to work properly you will need to have InnoDB > support enabled in MySQL. > > How to avoid the issue? > [mysqld] > default-storage-engine=INNODB > #skip-innodb > > Regards, > Prasad > vtiger Team > > On 7/27/09, den jean wrote: >> >> Hi, >> What are we supposed to have like error ? >> Regards, >> >> 2009/7/27 Asha >> >>> Hi All, >>> >>> People have been reporting us a major issue with migration, where the >>> script that changes the MyISAM tables to InnoDB tables is not working. >>> >>> We are trying to reproduce this issue in our test labs and have not >>> succeeded yet. >>> >>> Whole problem is around the query 'SHOW TABLE STATUS FROM >>> '. >>> >>> Would be great if anyone can provide us a helping hand in analyzing or >>> resolving the issue. Possibly if anyone can reproduce this issue on their >>> servers and can give us the access to the server, that would help a lot. >>> >>> Hoping to get a resolution for this issue soon so that people can migrate >>> to vtiger 5.1.0 smoothly. >>> >>> -- >>> Regards, >>> Asha >>> vtiger Team >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/e05ab00a/attachment.htm From djeandot at gmail.com Wed Jul 29 04:52:39 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 13:52:39 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> References: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Message-ID: Thank you so much. It works well. Regards, 2009/7/29 Sandeep P > Hi Denis, > > Kindly make the following change on your source in order to resolve the > issue you have mentioned. > > In file *modules/CustomView/CustomView.php* at *line no 965* > in function getCvColumnListSQL add the code provided below > > else if($list[1] == 'crmid'){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > after the below mentioned lines > > if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > Check if the above changes help you in solving the issue. > > > On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > >> Hi, >> >> I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created >> a filter with the ticket ID in the first column as you can see here : >> http://img151.imageshack.us/img151/6218/filterh.jpg >> >> I saved it but the tickets ID is not on the listview : >> http://img148.imageshack.us/img148/133/listview.jpg >> >> How can I fix that ? >> >> Regards, >> >> >> -- >> Jean Denis >> DotRiver pr?sente EluRiver, une approche unique pour la bureautique des >> ?lus de France. >> http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html >> >> Pas ? pas, agissons au quotidien pour pr?server notre environnement. >> N'imprimez que si n?cessaire, >> r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant >> les solutions DotRiver. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Sandeep > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/53da1b5b/attachment-0001.htm From j4c0b1 at gmail.com Wed Jul 29 06:45:29 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Wed, 29 Jul 2009 10:45:29 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70163E.8020005@internode.on.net> References: <4A70163E.8020005@internode.on.net> Message-ID: Can you send a link that we can see to post a feedback ? I think its very usefull for new vtiger users. 2009/7/29 Andrew Galdes > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/b4e8841d/attachment.htm From prasad at vtiger.com Wed Jul 29 07:34:13 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:04:13 +0530 Subject: [Vtigercrm-developers] Mobile Extension Module for vtiger CRM 5.1.0 Message-ID: <39d18b250907290734i52f22dabl5085f3ce0d0c36aa@mail.gmail.com> Dear members, The first version of Mobile (web client) is now available for vtiger CRM 5.1.0 Refer the blog post: http://www.vtiger.com/blogs/2009/07/29/mobile-extension-module-for-vtiger-crm-510/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/8167bb03/attachment.htm From prasad at vtiger.com Wed Jul 29 08:22:07 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:52:07 +0530 Subject: [Vtigercrm-developers] Do you like using vtiger CRM? Write a review for us. Message-ID: <39d18b250907290822u62d44399h28797229102b3b4b@mail.gmail.com> Dear members, Take your few minutes and write a review for us at https://sourceforge.net/projects/vtigercrm/ Hoping to see more 'Thumbs up' on the reviews. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/2e5a5a49/attachment.htm From galdes at internode.on.net Wed Jul 29 16:43:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 30 Jul 2009 09:13:33 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> Message-ID: <4A70DEA5.9040609@internode.on.net> Thanks all who replied, http://www.impresser.com.au/vtigercrm-video/ You can see a demo at the above URL. The above link is nothing fancy but a directory listing at this stage. The video is 6.87MB in WMV format. It's the chapter on Contact management. I'd like to have a few others uploaded as they are ready. Sorry for the WMV format but for testing it is simplest. Note that the video set was recorded (screen and sound only) during real training so the language used is very natural - possibly not what you'd expect from a formal training set. Also, it's intended to have these for sale when completed. Your input till then is appreciated. -Andrew G Cicero Jacobi Filho wrote: > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > > > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/5f3b8b52/attachment.htm From ml at arceva.fr Thu Jul 30 08:54:13 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 17:54:13 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: <4A71C225.8070006@arceva.fr> Hi, The vtiger website and vtiger forum are always extremly slow and produce time out The forum first page appear after around 2min and a search after 4-5 min Varma a ?crit : > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) are up and running now. > > Please check it and let us know if you have any problem access them. > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > wrote: > > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) will be down for > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > IST). > > Sorry for the inconvenience. We shall update you as soon as they > are up and running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > > > > > -- > Thanks & Regards, > Varma. > VtigerTeam. > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From ml at arceva.fr Thu Jul 30 09:33:46 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 18:33:46 +0200 Subject: [Vtigercrm-developers] user creation Message-ID: <4A71CB6A.1010300@arceva.fr> Hi All, Does anyone now what is the function who save a new user on the database ? I search all the day and I just found the function who send the email to the new user (in /modules/users/Save.php around line 185) Thanks for your help Bruno From prasad at vtiger.com Thu Jul 30 09:46:39 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 30 Jul 2009 22:16:39 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A71C225.8070006@arceva.fr> References: <4A71C225.8070006@arceva.fr> Message-ID: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Hi, Sorry for the inconvenience. The last maintenance did not give us much benefit, Our IT team is planning to boost hardware to our servers and working out on a suitable timing to get it done. We will keep you posted before next maintenance and get the speed back. Regards, Prasad On 7/30/09, Fusioncore wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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/20090730/28888849/attachment-0001.htm From asha at vtiger.com Thu Jul 30 11:46:54 2009 From: asha at vtiger.com (Asha) Date: Fri, 31 Jul 2009 00:16:54 +0530 Subject: [Vtigercrm-developers] user creation In-Reply-To: <4A71CB6A.1010300@arceva.fr> References: <4A71CB6A.1010300@arceva.fr> Message-ID: Hi Bruno, save function of modules/Users/Users.php is triggered on save of a User. This function in turn triggers saveentity -> insertIntoEntityTable -> which will actually insert the data to required tables (The tables to which the values needs to be inserted is picked from $tab_name variable defined in modules/Users/Users.php) On 7/30/09, Fusioncore wrote: > > Hi All, > > Does anyone now what is the function who save a new user on the database ? > I search all the day and I just found the function who send the email to > the new user (in /modules/users/Save.php around line 185) > > Thanks for your help > > Bruno > _______________________________________________ > 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/20090730/3725fdc6/attachment.htm From carloz at gnumerica.org Fri Jul 31 00:11:18 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Fri, 31 Jul 2009 09:11:18 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Message-ID: <4A729916.5060507@gnumerica.org> Hi, I just posted a brief announcement on the italian subforum regarding this (yesterday a number of duplicated posts appeared there, since people are not aware of what's happening and end up "re-submitting" the same article). Keep us updated, Carlo ps: if you are thinking about moving to the (very scalable ;-) Amazon AWS and need some experienced professionals, drop a line :-D Prasad ha scritto: > Hi, > > Sorry for the inconvenience. > > The last maintenance did not give us much benefit, Our IT team is > planning to boost hardware to our servers and > working out on a suitable timing to get it done. > > We will keep you posted before next maintenance and get the speed back. > > Regards, > Prasad > > On 7/30/09, *Fusioncore* > wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > >> wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 From prasad at vtiger.com Fri Jul 31 00:14:32 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 31 Jul 2009 12:44:32 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A729916.5060507@gnumerica.org> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> <4A729916.5060507@gnumerica.org> Message-ID: <39d18b250907310014q94d6a00t739c27ca26ff86c8@mail.gmail.com> Carlo, Thank you for the support. Regards, Prasad On 7/31/09, Carlo Beschi wrote: > > Hi, > > I just posted a brief announcement on the italian subforum regarding > this (yesterday a number of duplicated posts appeared there, since > people are not aware of what's happening and end up "re-submitting" the > same article). > > Keep us updated, > > Carlo > > ps: if you are thinking about moving to the (very scalable ;-) Amazon > AWS and need some experienced professionals, drop a line :-D > > > > Prasad ha scritto: > > > Hi, > > > > Sorry for the inconvenience. > > > > The last maintenance did not give us much benefit, Our IT team is > > planning to boost hardware to our servers and > > working out on a suitable timing to get it done. > > > > We will keep you posted before next maintenance and get the speed back. > > > > Regards, > > Prasad > > > > > On 7/30/09, *Fusioncore* > wrote: > > > > Hi, > > The vtiger website and vtiger forum are always extremly slow and > produce > > time out > > The forum first page appear after around 2min and a search after 4-5 > min > > > > Varma a ?crit : > > > Hi All, > > > > > > Vtiger website (vtiger.com > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > ) are up and running now. > > > > > > > > Please check it and let us know if you have any problem access > them. > > > > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > > > > > >> wrote: > > > > > > Hi All, > > > > > > > > Vtiger website (vtiger.com > > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > > ) will be down for > > > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 > PM > > > IST). > > > > > > Sorry for the inconvenience. We shall update you as soon as > they > > > are up and running again. > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > > > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > _______________________________________________ > 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/20090731/2ab00b1d/attachment.htm From fp at crm-now.de Fri Jul 31 07:19:50 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Fri, 31 Jul 2009 16:19:50 +0200 Subject: [Vtigercrm-developers] accessing the forum impossible In-Reply-To: References: Message-ID: <010a01ca11e9$f78ee630$e6acb290$@de> At least for me it is impossible to login into the vtiger forum today in order to respond to some postings. This is very unfortunate. From ml at arceva.fr Fri Jul 31 09:14:52 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:14:52 +0200 Subject: [Vtigercrm-developers] debug Message-ID: <4A73187C.4090200@arceva.fr> Hi all I search to active debug on 5.1.0 but the method used on the 504 didn't work Do you have an idea ? Thanks, Bruno From joe at tsolucio.com Fri Jul 31 09:28:30 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:28:30 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A73187C.4090200@arceva.fr> References: <4A73187C.4090200@arceva.fr> Message-ID: <4A731BAE.2040808@tsolucio.com> We now have a global performance config file, you have to activate it there first: config.performance.php Joe TSolucio Fusioncore escribi?: > Hi all > I search to active debug on 5.1.0 but the method used on the 504 didn't work > Do you have an idea ? > Thanks, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From ml at arceva.fr Fri Jul 31 09:36:47 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:36:47 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731BAE.2040808@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> Message-ID: <4A731D9F.9010703@arceva.fr> Thanks Joe but, I activate debug in this file but I don't have any result. I search the new function who provide the same result than : //$this->database->debug = true; log4php.rootLogger=DEBUG,A1 Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > We now have a global performance config file, you have to activate it > there first: > > config.performance.php > > Joe > TSolucio > > Fusioncore escribi?: > >> Hi all >> I search to active debug on 5.1.0 but the method used on the 504 didn't work >> Do you have an idea ? >> Thanks, >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From joe at tsolucio.com Fri Jul 31 09:50:03 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:50:03 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731D9F.9010703@arceva.fr> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> Message-ID: <4A7320BB.1050708@tsolucio.com> You have to activate debug in this new file: $this->database->debug = true; and THEN, configure log4php.properties as we did before Joe TSolucio Fusioncore escribi?: > Thanks Joe but, > I activate debug in this file but I don't have any result. > I search the new function who provide the same result than : > > //$this->database->debug = true; > log4php.rootLogger=DEBUG,A1 > > Thanks, > Bruno > > French-vtiger Manager > > > > Joe Bordes a ?crit : > >> We now have a global performance config file, you have to activate it >> there first: >> >> config.performance.php >> >> Joe >> TSolucio >> >> Fusioncore escribi?: >> >> >>> Hi all >>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>> Do you have an idea ? >>> Thanks, >>> Bruno >>> _______________________________________________ >>> 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/20090731/b0fca5d2/attachment.htm From ml at arceva.fr Fri Jul 31 12:58:09 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 21:58:09 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A7320BB.1050708@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> <4A7320BB.1050708@tsolucio.com> Message-ID: <4A734CD1.1080202@arceva.fr> I do it but nothing work correctly I active in the new file and I modify the file LoggerPropertyConfigurator.php and nothing work And I found function setDebug($value) { $this->database->debug = $value; } in the peardatabase file. Where I can change this var : $value ? Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > You have to activate debug in this new file: > > $this->database->debug = true; > > and THEN, configure log4php.properties as we did before > > Joe > TSolucio > > Fusioncore escribi?: >> Thanks Joe but, >> I activate debug in this file but I don't have any result. >> I search the new function who provide the same result than : >> >> //$this->database->debug = true; >> log4php.rootLogger=DEBUG,A1 >> >> Thanks, >> Bruno >> >> French-vtiger Manager >> >> >> >> Joe Bordes a ?crit : >> >>> We now have a global performance config file, you have to activate it >>> there first: >>> >>> config.performance.php >>> >>> Joe >>> TSolucio >>> >>> Fusioncore escribi?: >>> >>> >>>> Hi all >>>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>>> Do you have an idea ? >>>> Thanks, >>>> Bruno >>>> _______________________________________________ >>>> 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 >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From j4c0b1 at gmail.com Fri Jul 31 14:17:20 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Fri, 31 Jul 2009 18:17:20 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70DEA5.9040609@internode.on.net> References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: teh qualitty is very poor. I can not hear or understand what is beeing tlaked at the video and the image is fuzzy with much noise. Do y have something better ? hasta -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi 2009/7/29 Andrew Galdes > Thanks all who replied, > > http://www.impresser.com.au/vtigercrm-video/ > > You can see a demo at the above URL. The above link is nothing fancy but a > directory listing at this stage. The video is 6.87MB in WMV format. It's the > chapter on Contact management. I'd like to have a few others uploaded as > they are ready. Sorry for the WMV format but for testing it is simplest. > > Note that the video set was recorded (screen and sound only) during real > training so the language used is very natural - possibly not what you'd > expect from a formal training set. Also, it's intended to have these for > sale when completed. Your input till then is appreciated. > > -Andrew G > > > Cicero Jacobi Filho wrote: > > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > >> Hello all, >> >> We've developed a training video pack for vTiger CRM. I'd like some >> feedback on the supposed demand for such a training tool. Before we >> spend too much time on the final product development and marketing of >> the video pack, i'd like to know if you, your clients or peers would >> benefit from such a tool. >> >> Feel free to post off list as this might infringe on list policy. >> >> -- >> -Andrew Galdes >> Managing Director >> Impresser Pty Ltd >> >> Ph: 08 8357 2024 >> Mb: 0422 927 598 >> www.impresser.com.au >> >> I.T Services To Science Companies >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > > ------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598www.impresser.com.au > > I.T Services To Science Companies > > > _______________________________________________ > 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/20090731/637ccd98/attachment.htm From galdes at internode.on.net Fri Jul 31 17:07:14 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 09:37:14 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A738732.6030404@internode.on.net> Thanks, Can you tell me which media player and OS you're using? At this end (and others have agreed) the codec is less then a perfect choice. We'll recompile with a different codec. The version you saw was with WMV. However, we've already started recompiling with MOV which is giving us better results. -Andrew G Cicero Jacobi Filho wrote: > teh qualitty is very poor. > > I can not hear or understand what is beeing tlaked at the video and > the image is fuzzy with much noise. > > Do y have something better ? > > hasta ce Companies From galdes at internode.on.net Fri Jul 31 22:03:39 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 14:33:39 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A73CCAB.7090806@internode.on.net> Hi all, Those who are interested, please take a look at the most recent development-demo of the training videos. I'm most interested in quality of image and clarity of the speaker in this new dev. I'm very happy with your feedback so far. Visit the URL: http://www.impresser.com.au/vtigercrm-video/ Changes: --------- 1. Improved volume and clarity 2. Improved Image quality 3. In both WMV and MOV format Thanks, -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From lee at leev.net Wed Jul 1 00:23:02 2009 From: lee at leev.net (Lee Valentine) Date: Wed, 1 Jul 2009 14:23:02 +1000 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi Ding, That was just applied to 5.1rc2. However I did the query originally in 5.0.4. Thanks, Lee 2009/7/1 ding jianting : > Hi,Lee > What is version of your vtigerCRM? > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: >> >> Hey Guys, >> >> We were having performance issues with the crm taking ages to load so >> I had all the queries being executed printed to the screen with the >> duration each query was taking. I found: >> >> select distinct(setype) from vtiger_crmentity where crmid in (select >> parent_id from vtiger_troubletickets) >> 106.894966125 seconds. >> >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in >> function getSalesRelatedName) >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in >> (select ". $adb->sql_escape_string($fieldname)." from ". >> $adb->sql_escape_string($tablename).")"; >> >> I replaced it with the following: >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN >> ".$adb->sql_escape_string($tablename)." t ON >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; >> >> And received the result: >> select distinct(setype) from vtiger_crmentity c INNER JOIN >> vtiger_troubletickets t ON t.parent_id = c.crmid >> 0.0270490646362 seconds. >> >> This has given our crm a MAJOR performance increase. >> >> Thanks, >> Lee >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > ----------------------------------------------------------------------- > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From asha at vtiger.com Wed Jul 1 03:07:48 2009 From: asha at vtiger.com (Asha) Date: Wed, 1 Jul 2009 12:37:48 +0530 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi All, This issue is reported on trac ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6108) and we have recently integrated the changes. On 7/1/09, Lee Valentine wrote: > > Hi Ding, > > That was just applied to 5.1rc2. However I did the query originally in > 5.0.4. > > Thanks, > Lee > > > 2009/7/1 ding jianting : > > > Hi,Lee > > What is version of your vtigerCRM? > > > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: > >> > >> Hey Guys, > >> > >> We were having performance issues with the crm taking ages to load so > >> I had all the queries being executed printed to the screen with the > >> duration each query was taking. I found: > >> > >> select distinct(setype) from vtiger_crmentity where crmid in (select > >> parent_id from vtiger_troubletickets) > >> 106.894966125 seconds. > >> > >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in > >> function getSalesRelatedName) > >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in > >> (select ". $adb->sql_escape_string($fieldname)." from ". > >> $adb->sql_escape_string($tablename).")"; > >> > >> I replaced it with the following: > >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN > >> ".$adb->sql_escape_string($tablename)." t ON > >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; > >> > >> And received the result: > >> select distinct(setype) from vtiger_crmentity c INNER JOIN > >> vtiger_troubletickets t ON t.parent_id = c.crmid > >> 0.0270490646362 seconds. > >> > >> This has given our crm a MAJOR performance increase. > >> > >> Thanks, > >> Lee > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > > > > _______________________________________________ > > 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/20090701/71ed0548/attachment.html From asha at vtiger.com Fri Jul 3 12:02:25 2009 From: asha at vtiger.com (Asha) Date: Fri, 3 Jul 2009 21:32:25 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 released Message-ID: Hi All, We are glad to announce the availability of 5.1.0 RC today. This release covers several new features, enhancements and bug fixes. Download information is available at this link, and view the RC Release Notes here. Online Demo: http://en.vtiger.com/wip We have put up some demo tutorials for installation and migration that are available here . *Please evaluate it and share your feedback.* Report any issues you notice at http://trac.vtiger.com *with version set to 5.1.0 RC*. Make sure to provide complete details of the issue. PS: Did you get a chance to Vote for vtiger CRM ( Sourceforge CCA09 ) -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090703/9cdde483/attachment.html From christophe-bouchet at laposte.net Mon Jul 6 09:44:50 2009 From: christophe-bouchet at laposte.net (Christophe BOUCHET) Date: Mon, 06 Jul 2009 15:44:50 +0200 Subject: [Vtigercrm-developers] Cosmetics in vtiger RC 5.1.0 Message-ID: <1246887890.3235.26.camel@christophe-laptop> Hi, When creating an account, lead, contact, lack a space between the tabs (file /Smarty/templates/CreateView.tpl missing between lines 108 and 109 ' '), and CSS can not be applied to the block 'Description' file /Smarty/templates/EditViewUI.tpl line 116 missing class="dvtCellInfo") Thank you Best regards Christophe BOUCHET From djeandot at gmail.com Fri Jul 10 04:50:46 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 10:50:46 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC Message-ID: Hello, I try to migrate my CRM into the latest version for testing but I get a problem during the process of migration. When I specify the name of database and after the "next" step, I get this : *Fatal error*: Call to a member function NumRows() on a non-object in * /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try to migrate this 5.0.4 to 5.1 RC, I get an error. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/98dbebcb/attachment.html From stefan.lorenz at burdadirect.de Fri Jul 10 06:56:48 2009 From: stefan.lorenz at burdadirect.de (DJLorry) Date: Fri, 10 Jul 2009 03:56:48 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Message-ID: <24408556.post@talk.nabble.com> Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From asha at vtiger.com Fri Jul 10 07:21:59 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:51:59 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: <24408556.post@talk.nabble.com> References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry wrote: > > > Hello, > how can I add a second account or person field in these modules ? > The problem can't be solved by just adding a custom field and changing the > uitype. (Which works when no account field already exits, though) > The uitype 50 changes the custom field to contain the button for the > popup-window for account-selection. > The problem is that a thereby selected account is stored in the modul's > default account field whereas the custom field stays blank. I have added a > query to show the account if I put an accountid in the customfield's table > in mysql. So the remainig problem is how to get vtiger to store the > selected > account's Id in the custom field and not in the account_id field. Where is > the connection between popup window,save button and the insertion into the > database ? How can I get vtiger not to treat both the custom and the > already > existing field as the same when storing the account-id ? The same problem > occurs with a custom person field if one is already part of a module by > default. > > I hope someone is able to help. > > Regards > Stefan > > > > -- > View this message in context: > http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html > Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/bc8c2f9c/attachment.html From asha at vtiger.com Fri Jul 10 07:23:18 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:53:18 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, This would happen if the connection to your database fails with the database information you have provided. Can you brief out the exact steps followed to migrate from 5.0.4 to 5.1.0? On 7/10/09, den jean wrote: > > Hello, > > I try to migrate my CRM into the latest version for testing but I get a > problem during the process of migration. > > When I specify the name of database and after the "next" step, I get this : > > > *Fatal error*: Call to a member function NumRows() on a non-object in * > /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* > > I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try > to migrate this 5.0.4 to 5.1 RC, I get an error. > > Regards, > > _______________________________________________ > 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/20090710/a1db76f6/attachment.html From djeandot at gmail.com Fri Jul 10 08:27:04 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 14:27:04 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Thanks you for your answer. So I start to click on "Migrate" and I'm on the "Installation Check" with all the values to YES and I choose all the optional modules then I get that : Previous Installation Path : /var/www/vtiger504/ Previous Installation Version : 5.0.4 Admin Username : I give my admin name (but it's not the same as phpmyadmin) Admin Password : ****** Database Name for Migraiton : I give the database of the previous installation. And then I click on "Next", I get the error. Regards, 2009/7/10 Asha > Hi, > > This would happen if the connection to your database fails with the > database information you have provided. Can you brief out the exact steps > followed to migrate from 5.0.4 to 5.1.0? > > On 7/10/09, den jean wrote: > >> Hello, >> >> I try to migrate my CRM into the latest version for testing but I get a >> problem during the process of migration. >> >> When I specify the name of database and after the "next" step, I get this >> : >> >> >> *Fatal error*: Call to a member function NumRows() on a non-object in * >> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >> >> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >> try to migrate this 5.0.4 to 5.1 RC, I get an error. >> >> Regards, >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > 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/20090710/4a64aee2/attachment.html From Stefan.Lorenz at burdadirect.de Fri Jul 10 08:48:59 2009 From: Stefan.Lorenz at burdadirect.de (Lorenz Stefan) Date: Fri, 10 Jul 2009 14:48:59 +0200 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Thanks for your reply. I had a quick look at the documentation of vtlib but it remains rather unclear to me how to use it with already existing modules such as quotes etc. Would you give some hints, please ? Reagrds Stefan ________________________________ Von: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Im Auftrag von Asha Gesendet: Freitag, 10. Juli 2009 13:22 An: vtigercrm-developers at lists.vtigercrm.com Betreff: Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry > wrote: Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/e9aba47e/attachment.html From asha at vtiger.com Fri Jul 10 14:34:52 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:04:52 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Can you check if all the database related information in config.inc.php file of /var/www/vtiger504/ installation is correct (including the database name you given for migration) On 7/10/09, den jean wrote: > > Thanks you for your answer. > > So I start to click on "Migrate" and I'm on the "Installation Check" with > all the values to YES and I choose all the optional modules then I get that > : > > Previous Installation Path : /var/www/vtiger504/ > Previous Installation Version : 5.0.4 > Admin Username : I give my admin name (but it's not the same as phpmyadmin) > Admin Password : ****** > Database Name for Migraiton : I give the database of the previous > installation. > > And then I click on "Next", I get the error. > > Regards, > > 2009/7/10 Asha > >> Hi, >> >> This would happen if the connection to your database fails with the >> database information you have provided. Can you brief out the exact steps >> followed to migrate from 5.0.4 to 5.1.0? >> >> On 7/10/09, den jean wrote: >> >>> Hello, >>> >>> I try to migrate my CRM into the latest version for testing but I get a >>> problem during the process of migration. >>> >>> When I specify the name of database and after the "next" step, I get this >>> : >>> >>> >>> *Fatal error*: Call to a member function NumRows() on a non-object in * >>> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >>> >>> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >>> try to migrate this 5.0.4 to 5.1 RC, I get an error. >>> >>> Regards, >>> >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090711/93402e96/attachment.html From asha at vtiger.com Fri Jul 10 14:36:25 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:06:25 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, You can get an instance of any of the existing modules and add field for it. The field uitype that I would suggest you is 10. On 7/10/09, Lorenz Stefan wrote: > > Thanks for your reply. I had a quick look at the documentation of vtlib > but it remains rather unclear to me how to use it with already existing > modules such as quotes etc. Would you give some hints, please ? > Reagrds > Stefan > > ------------------------------ > *Von:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *Im Auftrag von *Asha > *Gesendet:* Freitag, 10. Juli 2009 13:22 > *An:* vtigercrm-developers at lists.vtigercrm.com > *Betreff:* Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom > second account field to invoice, sales order, quote > > Hi Stefan, > > I suggest you to try out vtlib. Use uitype 10 of vtlib to create such > custom fields. Hope that meets your requirement which will not clash with > the existing referencing field. > > On 7/10/09, DJLorry wrote: >> >> >> Hello, >> how can I add a second account or person field in these modules ? >> The problem can't be solved by just adding a custom field and changing the >> uitype. (Which works when no account field already exits, though) >> The uitype 50 changes the custom field to contain the button for the >> popup-window for account-selection. >> The problem is that a thereby selected account is stored in the modul's >> default account field whereas the custom field stays blank. I have added a >> query to show the account if I put an accountid in the customfield's table >> in mysql. So the remainig problem is how to get vtiger to store the >> selected >> account's Id in the custom field and not in the account_id field. Where is >> the connection between popup window,save button and the insertion into the >> database ? How can I get vtiger not to treat both the custom and the >> already >> existing field as the same when storing the account-id ? The same problem >> occurs with a custom person field if one is already part of a module by >> default. >> >> I hope someone is able to help. >> >> Regards >> Stefan >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > vtiger Team > > _______________________________________________ > 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/20090711/8169f0ef/attachment.html From djeandot at gmail.com Mon Jul 13 04:21:55 2009 From: djeandot at gmail.com (den jean) Date: Mon, 13 Jul 2009 10:21:55 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, I ckeck the config.inc.php and I think it's correct. I just wondering if the "Database Name for Migraiton" should be empty or this the previous database ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090713/1c1a72e7/attachment.html From asha at vtiger.com Mon Jul 13 14:19:35 2009 From: asha at vtiger.com (Asha) Date: Mon, 13 Jul 2009 23:49:35 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Either your new database should have the data copied from previous database (OR) new database can be empty and you can copy the data from previous database in the next step of the migration wizard (which we do not recommend). In your case, looks like the user credentials (mysql username/password from previous installation config file) is not correct to connect to the new database name specified. Please check if that user has the privileges on the new database. On 7/13/09, den jean wrote: > > Hi, > > I ckeck the config.inc.php and I think it's correct. > I just wondering if the "Database Name for Migraiton" should be empty or > this the previous database ? > > Regards, > > _______________________________________________ > 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/20090713/c635a315/attachment.html From ml at arceva.fr Mon Jul 13 19:44:59 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 14 Jul 2009 01:44:59 +0200 Subject: [Vtigercrm-developers] translate firefox extension Message-ID: <4A5BC6FB.1040201@arceva.fr> Hi all, I actually translate the firefox plugin but I have a big problem with accent Does anyone know how to insert accent in the xpi files (vtigertoolbar.xul for example ?) I have test with ? ou é, the first create a screen bug and the last close the extension Thanks, Bruno From carloz at gnumerica.org Tue Jul 14 10:43:07 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Tue, 14 Jul 2009 16:43:07 +0200 Subject: [Vtigercrm-developers] translate firefox extension In-Reply-To: <4A5BC6FB.1040201@arceva.fr> References: <4A5BC6FB.1040201@arceva.fr> Message-ID: <4A5C997B.9080806@gnumerica.org> Hi Bruno, I did some googling on this, and here's my findings: http://www.rietta.com/firefox/Tutorial/locale.html https://developer.mozilla.org/en/International_characters_in_XUL_JavaScript http://forums.mozillazine.org/viewtopic.php?f=19&t=337032&start=0&st=0&sk=t&sd=a https://developer.mozilla.org/En/XUL Please keep me updated about your localization effort. I'm the coordinator of the italian community translation team (see http://vtiger-italia.net/ and http://vtiger-italia.net/mailman/listinfo/traduttori_vtiger-italia.net ) and we are definitely interested in the issue. Ciao carloz Fusioncore ha scritto: > Hi all, > I actually translate the firefox plugin but I have a big problem with accent > Does anyone know how to insert accent in the xpi files > (vtigertoolbar.xul for example ?) I have test with ? ou é, the > first create a screen bug and the last close the extension > > Thanks, > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From djeandot at gmail.com Wed Jul 15 04:04:19 2009 From: djeandot at gmail.com (den jean) Date: Wed, 15 Jul 2009 10:04:19 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: I create a user for the database with the same login and pwd as the admin user on the CRM, but the problem is still here. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090715/dec67711/attachment.html From prasad at vtiger.com Sun Jul 19 10:11:45 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 19:41:45 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing Message-ID: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090719/63e5d5f8/attachment.html From brett.hooker at roarz.com Sun Jul 19 10:51:07 2009 From: brett.hooker at roarz.com (Brett Hooker) Date: Mon, 20 Jul 2009 00:51:07 +1000 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Message-ID: <4A6332DB.4090809@roarz.com> Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug > fixes into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090720/a7c578bb/attachment.html From prasad at vtiger.com Sun Jul 19 11:24:22 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 20:54:22 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <4A6332DB.4090809@roarz.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> <4A6332DB.4090809@roarz.com> Message-ID: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: > > Prasad, > > Just clarifying, do you want testing done on the RC code line, or the > latest code in SVN? > > > Thanks, > Brett > > Prasad wrote: > > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug fixes > into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/93fa1713/attachment.html From s.shaw at amalganet.com Sun Jul 19 12:47:55 2009 From: s.shaw at amalganet.com (AML) Date: Sun, 19 Jul 2009 17:47:55 +0100 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting In-Reply-To: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Message-ID: <200907191648.n6JGmKbh022948@vtigerforge.com> I have an upgrade to test, from 5.0.4 Is it possible to download the zip file as my SVN knowledge is not great. Ken _____ From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: 19 July 2009 16:24 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad 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/20090719/f67018ab/attachment.html From asha at vtiger.com Wed Jul 22 09:47:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:17:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone Message-ID: Hi All, We are glad to announce the release of vtiger 5.1.0 today! This release addresses around 150+ features/enhancements, 700 bug fixes besides performance improvements. We are hopeful that you will like the new release. Following are some of the important features added: - Webservices API - Workflow - Vtlib library - Services support - Layout Editor - Duplicate Merging - Mail Scanner - Mass Edit - Multi-Currency Support - Recurring Invoice Thank you for all your patience and support in making this a big release. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Release Notes is available here. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Note: vtiger CRM 5.0.4 Office Plugin will continue to work with vtiger CRM 5.1.0 Online Demo: http://en.vtiger.com Documentation: http://wiki.vtiger.com We welcome your feedback. Please report any issues on Tracor on vtiger Forums . -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/4460e149/attachment.html From manilal at ejyothi.com Wed Jul 22 10:00:47 2009 From: manilal at ejyothi.com (Manilal K M) Date: Wed, 22 Jul 2009 19:30:47 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Quoting Asha : > Hi All, > > We are glad to announce the release of vtiger 5.1.0 today! This release > addresses around 150+ features/enhancements, 700 bug fixes besides > performance improvements. We are hopeful that you will like the new release. > > The download link in the vtiger.com home page still leads to 5.0.4. You should follow the download links in the email. regards -- Manilal K M eJyothi Services http://www.ejyothi.com From asha at vtiger.com Wed Jul 22 10:24:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:54:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> References: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Message-ID: Hi Manilal, Thanks for pointing it out. We have updated the links. Please check it out. On 7/22/09, Manilal K M wrote: > > > Quoting Asha : > > > Hi All, > > > > We are glad to announce the release of vtiger 5.1.0 today! This release > > addresses around 150+ features/enhancements, 700 bug fixes besides > > performance improvements. We are hopeful that you will like the new > release. > > > > > > > > The download link in the vtiger.com home page still leads to 5.0.4. > You should follow the download links in the email. > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090722/f2cae4e2/attachment.html From galdes at internode.on.net Wed Jul 22 20:11:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 09:41:33 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <4A67AAB5.1030608@internode.on.net> Hello all, I've upgraded from 5.01 to 5.10 using the migration instructions at http://wiki.vtiger.com/index.php/vtiger510:Migration It seemed to progress through as intended but when i log in (as an Admin user) i see no information on the Home Page but there is a top menu. I select Contacts and i get the following error: *Fatal error*: Call to a member function FetchRow() on a non-object in */home//public_html/vtigercrm/include/database/PearDatabase.php* on line *645 *The same for Accounts. I click on Settings and the same thing happens as did with Home Page - the page load ok but no information within it. Any ideas? What info might help you? This is running on a cPanel. vtiger was installed via source. Cheers, -Andrew Galdes * * -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/d4f2c0d7/attachment.html From dfar2008 at gmail.com Wed Jul 22 21:16:58 2009 From: dfar2008 at gmail.com (ding jianting) Date: Thu, 23 Jul 2009 09:16:58 +0800 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <4A67AAB5.1030608@internode.on.net> References: <4A67AAB5.1030608@internode.on.net> Message-ID: Hi,Andrew Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes wrote: > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions at > http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an Admin > user) i see no information on the Home Page but there is a top menu. I > select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a non-object in * > /home//public_html/vtigercrm/include/database/PearDatabase.php*on line > *645 > > *The same for Accounts. I click on Settings and the same thing happens as > did with Home Page - the page load ok but no information within it. > > Any ideas? What info might help you? This is running on a cPanel. vtiger > was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- ________________________________________ ????CRM ?? ???????????????631????? ???021-64876448 ??:021-64876441 ???(0)13701696656 Email:dfar2008 at gmail.com ----------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/22ac5120/attachment.html From prasad at vtiger.com Wed Jul 22 21:40:33 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 07:10:33 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down Message-ID: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/a975b7a4/attachment.html From galdes at internode.on.net Wed Jul 22 22:56:41 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 12:26:41 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: <4A67AAB5.1030608@internode.on.net> Message-ID: <4A67D169.9000208@internode.on.net> Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c2b2cf7f/attachment.html From prasad at vtiger.com Wed Jul 22 23:07:42 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 08:37:42 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down In-Reply-To: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/ed365db5/attachment.html From pbucolo at vodafone.it Thu Jul 23 04:44:45 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 10:44:45 +0200 Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown In-Reply-To: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> Message-ID: Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.jpe From vikas at vtiger.com Thu Jul 23 08:08:28 2009 From: vikas at vtiger.com (Vikas Jain) Date: Thu, 23 Jul 2009 17:38:28 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: > > 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) > 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) > 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 23 Jul 2009 12:26:41 +0930 > From: Andrew Galdes > Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A > Major > Milestone > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <4A67D169.9000208 at internode.on.net> > Content-Type: text/plain; charset="gb2312" > > Thanks for the help. Let me know if you want more of that log file. Note > that the date is incorrect on in the following: > > Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] > Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] > Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into > vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values > (?,?,?,?,?) > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, > Approved] > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > parameters : [1,AUD,AU,$,1,Active,-11] > > -Andrew Galdes > > > > Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the > module(Utilities) language file for the selected language(en_us) or the > default language(en_us) > > > ding jianting wrote: > > Hi,Andrew > > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > > wrote: > > > > Hello all, > > > > I've upgraded from 5.01 to 5.10 using the migration instructions > > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > > > It seemed to progress through as intended but when i log in (as an > > Admin user) i see no information on the Home Page but there is a > > top menu. I select Contacts and i get the following error: > > > > *Fatal error*: Call to a member function FetchRow() on a > > non-object in > > > */home//public_html/vtigercrm/include/database/PearDatabase.php* > > on line *645 > > > > *The same for Accounts. I click on Settings and the same thing > > happens as did with Home Page - the page load ok but no > > information within it. > > > > Any ideas? What info might help you? This is running on a cPanel. > > vtiger was installed via source. > > > > Cheers, > > -Andrew Galdes > > > > * > > * > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > > > > ----------------------------------------------------------------------- > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Thu, 23 Jul 2009 08:37:42 +0530 > From: Prasad > Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: > trac.vtiger.com is down > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > > > Dear members, > > > > Our issue tracker server disk space is pilled up with log and needs a > > cleanup. > > > > Administrator team is working to get it back back soon. Sorry for the > > inconvenience caused. > > > > Regards, > > Prasad > > vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Thu, 23 Jul 2009 10:44:45 +0200 > From: "Pierluigi Bucolo" > Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: > trac.vtiger.com isdown > To: > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Side by side view of Diff, using trac doesn?t work with FFX 3.5. > > It?s work with IE. > > > > The error is in attach. > > > > Regards, > > - Pierluigi > > > > _____ > > Da: vtigercrm-developers-bounces at lists.vtigercrm.com > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di > Prasad > Inviato: gioved? 23 luglio 2009 05.08 > A: vtigercrm-developers at lists.vtigercrm.com > Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com > isdown > > > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.htm > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: Side-By-Side.JPG > Type: image/jpeg > Size: 16568 bytes > Desc: not available > Url : > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side.jpeg > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 43, Issue 5 > *************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/0683591b/attachment.html From ml at arceva.fr Thu Jul 23 08:18:04 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 14:18:04 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks Message-ID: <4A6854FC.8090708@arceva.fr> Hi all, I found a small bug on the home page block In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save and cancel button label are hardcode Regards, Bruno From nitin at vtiger.com Thu Jul 23 09:12:28 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Thu, 23 Jul 2009 06:12:28 -0700 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6854FC.8090708@arceva.fr> References: <4A6854FC.8090708@arceva.fr> Message-ID: Hi Bruno, The Buttons you are talking about are not hardcoded, you can change the button label from /include/language/en_us.lang.php file. Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL Change these strings as they are handling save and cancel button through the vtigercrm. Regards, Nitin Goyal Vtiger Team On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore wrote: > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > 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/20090723/6eb84910/attachment.html From pbucolo at vodafone.it Thu Jul 23 09:32:39 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 15:32:39 +0200 Subject: [Vtigercrm-developers] R: vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: OK. Now it works. Regards, - Pierluigi - _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Vikas Jain Inviato: gioved? 23 luglio 2009 14.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43,Issue 5 Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) ---------------------------------------------------------------------- Message: 1 Date: Thu, 23 Jul 2009 12:26:41 +0930 From: Andrew Galdes Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <4A67D169.9000208 at internode.on.net> Content-Type: text/plain; charset="gb2312" Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V ] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/c2b2cf7f/attachment-0001.htm ------------------------------ Message: 2 Date: Thu, 23 Jul 2009 08:37:42 +0530 From: Prasad Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/ed365db5/attachment-0001.htm ------------------------------ Message: 3 Date: Thu, 23 Jul 2009 10:44:45 +0200 From: "Pierluigi Bucolo" Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/Side-By-Side.jpeg ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 43, Issue 5 *************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/59e3f9eb/attachment.html From ml at arceva.fr Thu Jul 23 09:47:06 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 15:47:06 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: References: <4A6854FC.8090708@arceva.fr> Message-ID: <4A6869DA.5060604@arceva.fr> The inclued language file was already translate. In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around line 29: If I replace it by : The buttons labels were transate Regards, Bruno French-vtiger Manager Nitin Goyal a ?crit : > Hi Bruno, > > The Buttons you are talking about are not hardcoded, you can change > the button label from /include/language/en_us.lang.php file. > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > Change these strings as they are handling save and cancel button > through the vtigercrm. > > > Regards, > Nitin Goyal > Vtiger Team > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > wrote: > > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From fp at crm-now.de Thu Jul 23 10:04:47 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Thu, 23 Jul 2009 16:04:47 +0200 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: References: Message-ID: <005f01ca0b9e$9c19b830$d44d2890$@de> I tried to place a contribution at the vtiger Extension site for the v5.0.1. No luck the latest version offered at the Vtiger Versions picklist is v.5.0.1 RC. Could anybody fix that? Regards, Frank From asha at vtiger.com Thu Jul 23 12:28:31 2009 From: asha at vtiger.com (Asha) Date: Thu, 23 Jul 2009 21:58:31 +0530 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6869DA.5060604@arceva.fr> References: <4A6854FC.8090708@arceva.fr> <4A6869DA.5060604@arceva.fr> Message-ID: Hi Bruno, Thanks for identifying the issue. We shall soon address this. We have noted down the issue on our trac system ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6191 ) On 7/23/09, Fusioncore wrote: > > The inclued language file was already translate. > In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around > line 29: > > style="height:28px;" width=60%> > class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > If I replace it by : > > style="height:28px;" width=60%> > value="{$APP.LBL_SAVE_BUTTON_LABEL}" class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > value="{$APP.LBL_CANCEL_BUTTON_LABEL}" class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > The buttons labels were transate > > Regards, > Bruno > French-vtiger Manager > > > > Nitin Goyal a ?crit : > > > Hi Bruno, > > > > The Buttons you are talking about are not hardcoded, you can change > > the button label from /include/language/en_us.lang.php file. > > > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > > > Change these strings as they are handling save and cancel button > > through the vtigercrm. > > > > > > Regards, > > Nitin Goyal > > Vtiger Team > > > > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > > > wrote: > > > > Hi all, > > I found a small bug on the home page block > > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > > the save > > and cancel button label are hardcode > > > > Regards, > > Bruno > > _______________________________________________ > > 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/6026aac5/attachment.html From svk at vtiger.com Thu Jul 23 13:21:09 2009 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 23 Jul 2009 10:21:09 -0700 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: <005f01ca0b9e$9c19b830$d44d2890$@de> References: <005f01ca0b9e$9c19b830$d44d2890$@de> Message-ID: <370368f40907231021r74c0af4cg539896c141c9d5db@mail.gmail.com> Frank, Version 5.1 is available now as a choice. thanks, -Sreenivas On Thu, Jul 23, 2009 at 7:04 AM, Frank Piepiorra wrote: > I tried to place a contribution at the vtiger Extension site for the > v5.0.1. > No luck the latest version offered at the Vtiger Versions picklist is > v.5.0.1 RC. Could anybody fix that? > > Regards, > Frank > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 733-3229 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/70ec43f0/attachment.html From manilal at ejyothi.com Fri Jul 24 02:10:40 2009 From: manilal at ejyothi.com (Manilal K M) Date: Fri, 24 Jul 2009 11:40:40 +0530 Subject: [Vtigercrm-developers] User privileges error Message-ID: <20090724114040.161555wp33un50g0@app.ascellatech.com> Hello all, I tried to post this to vtiger forums, but it's not responding, hence posting this to mailing list as it is very much critical for me. I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am using LDAP authentication and authentication is working fine. But when I created a new user I got the following error message: [code] Parse error: syntax error, unexpected ';' in /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 [/code] Here is the contents of the above file: [code] '','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); ?> [/code] It seems the user is not being added to the database. I have also tried to use the SQL authentication, but no luck so far. Can somebody provide some hints? regards -- Manilal K M eJyothi Services http://www.ejyothi.com From eugene.babiy at gmail.com Fri Jul 24 07:36:01 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Fri, 24 Jul 2009 14:36:01 +0300 Subject: [Vtigercrm-developers] Sending Document from system by e-mail Message-ID: <4A699CA1.3020303@gmail.com> Hi. Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. His business is Engineering Development and he often need to send documents to clients and also to have possibility to store records and data in CRM. Is there a possibility to make easier sending of documents from inside of system on e-mail? Best regards, Eugene Babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/c5b83f19/attachment.vcf From asha at vtiger.com Fri Jul 24 08:29:08 2009 From: asha at vtiger.com (Asha) Date: Fri, 24 Jul 2009 17:59:08 +0530 Subject: [Vtigercrm-developers] Sending Document from system by e-mail In-Reply-To: <4A699CA1.3020303@gmail.com> References: <4A699CA1.3020303@gmail.com> Message-ID: Hi Eugene Babiy, As far as understand your requirement, following is what you can do: 1. Create Contacts for each of the clients. 2. Associate the required document to the contact. 3. Go to the detail view of the document and use 'send mail with attachment' link on the right side. 4. Compose mail box with attachment will open up. Select the contact name and send the email. 5. The email will be automatically attached to the Contact. Let me know if you are looking for something else. On 7/24/09, Eugene Babiy wrote: > > Hi. > > Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. > His business is Engineering Development and he often need to send > documents to clients and also to have possibility to store records and > data in CRM. > > Is there a possibility to make easier sending of documents from inside > of system on e-mail? > > Best regards, Eugene Babiy > > _______________________________________________ > 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/20090724/a0f04a43/attachment.html From alanslists at gmail.com Fri Jul 24 11:09:34 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 16:09:34 +0100 Subject: [Vtigercrm-developers] Asterisk Integration Message-ID: Can someone explain what this chunk of code is for in function function transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? $arr = explode(":", $to); if(is_array($arr)){ $typeCalled = $arr[0]; $to = trim($arr[1]); } This is being called via the Ajax stuff for initiating outbound calls. Our telephone numbers for contacts/leads etc are usually in the form of either: $AREA $NUMBER or they have an international prefix: +$INT (0)$AREA $NUMBER explode() always results in an Array. As we do *not* have a colon in our phone numbers this chunk of code mangles them and afterwards $to is empty. I don't think it should be called for an outgoing call. Alan From pinaki at vtiger.com Fri Jul 24 12:58:22 2009 From: pinaki at vtiger.com (Pinaki Das) Date: Fri, 24 Jul 2009 22:28:22 +0530 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: References: Message-ID: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Hi Alan, This issue has been fixed in the GA release of vtiger. Can you please check and update us? Regards Pinaki vtiger Team On Fri, Jul 24, 2009 at 8:39 PM, Alan Lord (News) wrote: > Can someone explain what this chunk of code is for in function function > transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? > > > $arr = explode(":", $to); > if(is_array($arr)){ > $typeCalled = $arr[0]; > $to = trim($arr[1]); > } > > > This is being called via the Ajax stuff for initiating outbound calls. > > Our telephone numbers for contacts/leads etc are usually in the form of > either: > > $AREA $NUMBER > > or they have an international prefix: > > +$INT (0)$AREA $NUMBER > > > explode() always results in an Array. > > As we do *not* have a colon in our phone numbers this chunk of code > mangles them and afterwards $to is empty. > > I don't think it should be called for an outgoing call. > > Alan > > > _______________________________________________ > 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/20090724/696e471a/attachment.html From alanslists at gmail.com Fri Jul 24 13:40:58 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 18:40:58 +0100 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> References: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Message-ID: On 24/07/09 17:58, Pinaki Das wrote: > Hi Alan, > > This issue has been fixed in the GA release of vtiger. Can you please > check and update us? OK, I used the upgrade (vtigercrm-5.0.x-to-5.1.0-patch.zip) from 5.10RC to 5.10 and it doesn't seem to have updated this file. Looking at the new package I can see what you have done to fix it. I've been working on some changes to the Asterisk Integration code. When I have something more concrete to show I will. Thanks for the quick response. Alan From prasad at vtiger.com Fri Jul 24 14:52:11 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 25 Jul 2009 00:22:11 +0530 Subject: [Vtigercrm-developers] vtiger CRM Forum Traffic Surge Message-ID: <39d18b250907241152g230801d8hb409797f9775ffd3@mail.gmail.com> Dear members, Due to surge in traffic and discussion at http://forums.vtiger.com, you might find it to be slow sometimes. Our IT team is working on improving the server resources soon, please bear with us in the meantime. Sorry for the inconvenience, but don't miss your comments or feedback to us Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/80dd266e/attachment.html From eugene.babiy at gmail.com Sat Jul 25 06:24:05 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Sat, 25 Jul 2009 13:24:05 +0300 Subject: [Vtigercrm-developers] Translation Problems Message-ID: <4A6ADD45.5010206@gmail.com> Hi. I'm translating vTiger 5.1.0 to Russian and experiencing some problems. 1. On creating Document page labels 'Folder Name' and 'Document No' are still displaying in English although they are translated in document's module language file. 2. Actions list is not displaying at all (Detail view of Document). Any ideas? P.S. The same was in 5.1.0RC -- Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/7f99e0a5/attachment.vcf From StevenS at techtron.co.za Sun Jul 26 08:21:22 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 14:21:22 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon Message-ID: I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/864de6c1/attachment.html From StevenS at techtron.co.za Sun Jul 26 09:58:02 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 15:58:02 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: Never mind just a broken mirror on sourceforge, used another mirror worked fine. From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Steven Sher Sent: 26 July 2009 02:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] problem downloading customer portal addon I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/92ada472/attachment.html From prasad at vtiger.com Sun Jul 26 14:10:25 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:40:25 +0530 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: <39d18b250907261110k5c9417d3m258a01fb5b2a25ee@mail.gmail.com> Thanks for the update, I have posted the same comment on the blogs now. http://www.vtiger.com/blogs/2009/07/22/vtiger-crm-510-is-released-major-milestone/#comment-120363 Regards, Prasad vtiger Team On 7/26/09, Steven Sher wrote: > > Never mind just a broken mirror on sourceforge, used another mirror > worked fine. > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Steven > Sher > *Sent:* 26 July 2009 02:21 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] problem downloading customer portal > addon > > > > I cant seem to download the customer portal addon for vtigercrm5.1 the link > seems to be invalid? > > > > > > > > > > > > > > _______________________________________________ > 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/20090726/0eaa6329/attachment.html From prasad at vtiger.com Sun Jul 26 14:23:44 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:53:44 +0530 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: <4A6ADD45.5010206@gmail.com> References: <4A6ADD45.5010206@gmail.com> Message-ID: <39d18b250907261123w7f59ea4bv920118fea36c4dbb@mail.gmail.com> Hi Eugene, Your language translation pack should include module translation for (Services, ServiceContracts, Recycle Bin...) Refer to some of the translated version at: http://www.vtiger.com//index.php?option=com_jreviews&task=list&jr_vtigerversions=Version+5.1&Itemid=185 Regards, Prasad vtiger Team On 7/25/09, Eugene Babiy wrote: > > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > > -- > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > _______________________________________________ > 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/20090726/9a3d7dec/attachment.html From fp at crm-now.de Sun Jul 26 15:28:57 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Sun, 26 Jul 2009 21:28:57 +0200 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: References: Message-ID: <006401ca0e27$52e0d460$f8a27d20$@de> Eugene, for a patch see http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 Regards, Frank > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > -- > Best regards, Eugene Babiy From ml at arceva.fr Sun Jul 26 19:03:26 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 01:03:26 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module Message-ID: <4A6CE0BE.5030204@arceva.fr> Hi All, I have some problems with the French language pack We have translate *all *strings of the Documents Modules and when we use the french language, all of the column Action at the right don't appear when we look a download file. I apply this patch http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 and nothing change In english the 3 button work perfectly The language pack is available at : http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip Thanks for your help Bruno From dfar2008 at gmail.com Sun Jul 26 21:19:41 2009 From: dfar2008 at gmail.com (ding jianting) Date: Mon, 27 Jul 2009 09:19:41 +0800 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: <20090724114040.161555wp33un50g0@app.ascellatech.com> References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: First backup user_privileges_215.php file . Then delete user_privileges_215.php and edit the user with userid 215. On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > Hello all, > I tried to post this to vtiger forums, but it's not responding, > hence posting this to mailing list as it is very much critical for me. > > I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am > using LDAP authentication and authentication is working fine. But when > I created a new user I got the following error message: > > [code] > Parse error: syntax error, unexpected ';' in > /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 > [/code] > > Here is the contents of the above file: > > > [code] > //This is the access privilege file > $is_admin=false; > $current_user_roles=''; > $current_user_parent_role_seq=''; > $current_user_profiles=array(); > $profileGlobalPermission=; > $profileTabsPermission=; > $profileActionPermission=array(); > $current_user_groups=array(); > $subordinate_roles=array(); > $parent_roles=array(); > $subordinate_roles_users=array(); > > $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, > > Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); > ?> > [/code] > > It seems the user is not being added to the database. I have also > tried to use the SQL authentication, but no luck so far. Can somebody > provide some hints? > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090727/823c4888/attachment.html From manilal at ejyothi.com Mon Jul 27 01:12:58 2009 From: manilal at ejyothi.com (Manilal K M) Date: Mon, 27 Jul 2009 10:42:58 +0530 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: <20090727104258.17734ne4i3dw18ys@app.ascellatech.com> I missed one fact: 1. The user is not created in the database and hence I can't edit it. Quoting ding jianting : > First backup user_privileges_215.php file . > Then delete user_privileges_215.php and edit the user with userid 215. > > On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > >> Hello all, >> I tried to post this to vtiger forums, but it's not responding, >> hence posting this to mailing list as it is very much critical for me. >> >> I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am >> using LDAP authentication and authentication is working fine. But when >> I created a new user I got the following error message: >> >> [code] >> Parse error: syntax error, unexpected ';' in >> /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 >> [/code] >> >> Here is the contents of the above file: >> >> >> [code] >> > //This is the access privilege file >> $is_admin=false; >> $current_user_roles=''; >> $current_user_parent_role_seq=''; >> $current_user_profiles=array(); >> $profileGlobalPermission=; >> $profileTabsPermission=; >> $profileActionPermission=array(); >> $current_user_groups=array(); >> $subordinate_roles=array(); >> $parent_roles=array(); >> $subordinate_roles_users=array(); >> >> $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, >> >> Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); >> ?> >> [/code] >> >> It seems the user is not being added to the database. I have also >> tried to use the SQL authentication, but no luck so far. Can somebody >> provide some hints? >> >> regards >> >> -- >> Manilal K M >> eJyothi Services >> http://www.ejyothi.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > -- Manilal K M eJyothi Services http://www.ejyothi.com From varma at vtiger.com Mon Jul 27 05:04:36 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 14:34:36 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM IST). Sorry for the inconvenience. We shall update you as soon as they are up and running again. -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1a8a4c43/attachment.html From djeandot at gmail.com Mon Jul 27 05:43:54 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 11:43:54 +0200 Subject: [Vtigercrm-developers] Keep the id numerotation in vtiger 5.1.0 Message-ID: Hello, How can I keep the numerotation that I have in vtiger 5.0.4 (for example tickets 1, 2, 1500...) ? Because the numerotation in vtiger 5.1.0, the numerotation is bizarre (CON1...). Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/85854aa9/attachment.html From eugene.babiy at gmail.com Mon Jul 27 05:42:07 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Mon, 27 Jul 2009 12:42:07 +0300 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6CE0BE.5030204@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> Message-ID: <4A6D766F.1000005@gmail.com> Hi Bruno. I've tested German Language Pack for 5.1.0 and it also has a problems with displaying of Actions list. I've found that the problem is only in the label "File Name". When I leave it untranslated in Langpack, everything else displays Ok, but when it's translated, Actions list is not showing. So you can just leave that label untranslated until some patch will appear. Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy Fusioncore ?????: > Hi All, > > I have some problems with the French language pack > We have translate *all *strings of the Documents Modules and when we use > the french language, all of the column Action at the right don't appear > when we look a download file. > I apply this patch > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > and nothing change > In english the 3 button work perfectly > The language pack is available at : > http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > > Thanks for your help > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/b6802013/attachment.vcf From StevenS at techtron.co.za Mon Jul 27 05:51:14 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Mon, 27 Jul 2009 11:51:14 +0200 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? Message-ID: I am looking for anybody who does support/development work for vTiger in South Africa, preferably Cape Town. Thanks Steven -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/791e68fe/attachment.html From varma at vtiger.com Mon Jul 27 05:51:38 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 15:21:38 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) are up and running now. Please check it and let us know if you have any problem access them. On Mon, Jul 27, 2009 at 2:34 PM, Varma wrote: > Hi All, > > Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( > blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, > 2009 ( 2:45PM IST to 3:15 PM IST). > > Sorry for the inconvenience. We shall update you as soon as they are up and > running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1b81f768/attachment.html From galdes at internode.on.net Mon Jul 27 05:57:23 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Mon, 27 Jul 2009 19:27:23 +0930 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? In-Reply-To: References: Message-ID: <4A6D7A03.3030700@internode.on.net> Hi Steven, We are hosting and supporting vtiger but we are in Australia. Let me know if you have trouble and we might be able to help you out. Cheers, -Andrew G Steven Sher wrote: > > I am looking for anybody who does support/development work for vTiger > in South Africa, preferably Cape Town. > > > > Thanks > > Steven > > > -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/3ed980d4/attachment.html From ml at arceva.fr Mon Jul 27 06:38:22 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 12:38:22 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D766F.1000005@gmail.com> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> Message-ID: <4A6D839E.4040702@arceva.fr> Hi Eugene, Your solution doesn't work with success with the french pack If anyone have an other idea , Thanks, Bruno Eugene Babiy a ?crit : > Hi Bruno. > > I've tested German Language Pack for 5.1.0 and it also has a problems > with displaying of Actions list. I've found that the problem is only in > the label "File Name". When I leave it untranslated in Langpack, > everything else displays Ok, but when it's translated, Actions list is > not showing. > > So you can just leave that label untranslated until some patch will appear. > > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > > Fusioncore ?????: > >> Hi All, >> >> I have some problems with the French language pack >> We have translate *all *strings of the Documents Modules and when we use >> the french language, all of the column Action at the right don't appear >> when we look a download file. >> I apply this patch >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 >> and nothing change >> In english the 3 button work perfectly >> The language pack is available at : >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip >> >> Thanks for your help >> >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com From nitin at vtiger.com Mon Jul 27 08:14:44 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Mon, 27 Jul 2009 05:14:44 -0700 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D839E.4040702@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: Hi, You can try the fix suggested in the comments of the following ticket, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 try this, it will fix the issue. Regards, Nitin Goyal Vtiger Team On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore wrote: > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a problems > > with displaying of Actions list. I've found that the problem is only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions list is > > not showing. > > > > So you can just leave that label untranslated until some patch will > appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and when we use > >> the french language, all of the column Action at the right don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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/20090727/34482353/attachment.html From ml at arceva.fr Mon Jul 27 08:53:54 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 14:53:54 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: <4A6DA362.8040000@arceva.fr> Thanks, It work Bruno Nitin Goyal a ?crit : > Hi, > > You can try the fix suggested in the comments of the following ticket, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 > > try this, it will fix the issue. > > Regards, > Nitin Goyal > Vtiger Team > > > On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore > wrote: > > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a > problems > > with displaying of Actions list. I've found that the problem is > only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions > list is > > not showing. > > > > So you can just leave that label untranslated until some patch > will appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and > when we use > >> the french language, all of the column Action at the right > don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From djeandot at gmail.com Mon Jul 27 09:34:04 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 15:34:04 +0200 Subject: [Vtigercrm-developers] Modify the "Send Mail" functionnality Message-ID: Hello, I try to modify the functionnality of the button "Send Mail", but I don't have success. I just want send mail to the main adress and don't have the choice between the mail or yahoo adress. How can I do to make that up ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1c7510c6/attachment.html From asha at vtiger.com Mon Jul 27 11:09:40 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 20:39:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help Message-ID: Hi All, People have been reporting us a major issue with migration, where the script that changes the MyISAM tables to InnoDB tables is not working. We are trying to reproduce this issue in our test labs and have not succeeded yet. Whole problem is around the query 'SHOW TABLE STATUS FROM '. Would be great if anyone can provide us a helping hand in analyzing or resolving the issue. Possibly if anyone can reproduce this issue on their servers and can give us the access to the server, that would help a lot. Hoping to get a resolution for this issue soon so that people can migrate to vtiger 5.1.0 smoothly. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/366a9fb2/attachment.html From djeandot at gmail.com Mon Jul 27 11:23:49 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 17:23:49 +0200 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi, What are we supposed to have like error ? Regards, 2009/7/27 Asha > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM > '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on their > servers and can give us the access to the server, that would help a lot. > > Hoping to get a resolution for this issue soon so that people can migrate > to vtiger 5.1.0 smoothly. > > -- > Regards, > Asha > 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/20090727/639e43f4/attachment.html From asha at vtiger.com Mon Jul 27 12:28:30 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 21:58:30 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi All, The migration error would look something like below: ---------------------------------------------- Notice: Undefined index: ajax in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 15 Notice: Undefined index: web161-vtiger_localhost:3306_HealthApproved in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 29 Notice: Undefined index: updateTableEngine in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 31 Fatal error: Call to a member function NumRows() on a non-object in /home/sites/yourdomian/public_html/crm/include/utils/DBHealthCheck.php on line 58 ---------------------------------------------- On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/6980aa80/attachment.html From alanslists at gmail.com Mon Jul 27 12:34:27 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Mon, 27 Jul 2009 17:34:27 +0100 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: On 27/07/09 16:09, Asha wrote: > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on > their servers and can give us the access to the server, that would help > a lot. > > Hoping to get a resolution for this issue soon so that people can > migrate to vtiger 5.1.0 smoothly. I had some issues with the upgrade but not to do with the InnoDB table conversion. The bog problem was that the database upgrade routine did not check the version info in the vtiger_version table and when I stupidly backed up a 5.0.4 db but told the install script it was a 5.1.0 RC it went through happily and completed. But the install was completely borked. Took me a while to work out what I was doing wrong... But the InnoDB change has worked fine for me several times over. PHP version: PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 MySQL version: Ver 14.12 Distrib 5.0.51a, for debian-linux-gnu (i486) using readline 5.2 HTH Alan From prasad at vtiger.com Mon Jul 27 12:42:59 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 27 Jul 2009 22:12:59 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Hi, If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' returns NULL value result for InnoDB tables. How to reproduce the issue? You will end up with the described result if you have the following MySQL configuration. [mysqld] default-storage-engine=MyISAM skip-innodb Please note, for vtiger CRM to work properly you will need to have InnoDB support enabled in MySQL. How to avoid the issue? [mysqld] default-storage-engine=INNODB #skip-innodb Regards, Prasad vtiger Team On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/d129fa52/attachment.html From ml at arceva.fr Mon Jul 27 20:03:51 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:03:51 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page Message-ID: <4A6E4067.8020304@arceva.fr> Hi Team, I found another hardcode strings or missing modules. The gmail bookmarklet is hardcode on the Bookmarklet.tpl file Where I can add the strings ? I test in /modules/Emails/language an /include/language without success An other issue who can be critical in non english speeking country is the feedback link who point on a page of vtiger.com site Regards, Bruno French-vtiger Manager From ml at arceva.fr Mon Jul 27 20:18:54 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:18:54 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page In-Reply-To: <4A6E4067.8020304@arceva.fr> References: <4A6E4067.8020304@arceva.fr> Message-ID: <4A6E43EE.7040601@arceva.fr> Fusioncore a ?crit : > Hi Team, > > I found another hardcode strings or missing modules. The gmail > bookmarklet is hardcode on the Bookmarklet.tpl file > Where I can add the strings ? I test in /modules/Emails/language an > /include/language without success > > An other issue who can be critical in non english speeking country is > the feedback link who point on a page of vtiger.com site > > Regards, > Bruno > French-vtiger Manager > I add some string: On the home page widget : the edit, refresh, hide and close button alternate label and when we clic on the edit button, the two button save and close are hardcode (file /Smarty/templates/Home/MainHomeBlock.tpl around line 20) From djeandot at gmail.com Wed Jul 29 04:46:27 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 10:46:27 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview Message-ID: Hi, I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a filter with the ticket ID in the first column as you can see here : http://img151.imageshack.us/img151/6218/filterh.jpg I saved it but the tickets ID is not on the listview : http://img148.imageshack.us/img148/133/listview.jpg How can I fix that ? Regards, -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/3ba37324/attachment.html From galdes at internode.on.net Wed Jul 29 05:28:30 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Wed, 29 Jul 2009 18:58:30 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos Message-ID: <4A70163E.8020005@internode.on.net> Hello all, We've developed a training video pack for vTiger CRM. I'd like some feedback on the supposed demand for such a training tool. Before we spend too much time on the final product development and marketing of the video pack, i'd like to know if you, your clients or peers would benefit from such a tool. Feel free to post off list as this might infringe on list policy. -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From sandeep at vtiger.com Wed Jul 29 07:02:22 2009 From: sandeep at vtiger.com (Sandeep P) Date: Wed, 29 Jul 2009 16:32:22 +0530 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: References: Message-ID: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Hi Denis, Kindly make the following change on your source in order to resolve the issue you have mentioned. In file *modules/CustomView/CustomView.php* at *line no 965* in function getCvColumnListSQL add the code provided below else if($list[1] == 'crmid'){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } after the below mentioned lines if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } Check if the above changes help you in solving the issue. On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > Hi, > > I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a > filter with the ticket ID in the first column as you can see here : > http://img151.imageshack.us/img151/6218/filterh.jpg > > I saved it but the tickets ID is not on the listview : > http://img148.imageshack.us/img148/133/listview.jpg > > How can I fix that ? > > Regards, > > > -- > Jean Denis > DotRiver pr?sente EluRiver, une approche unique pour la bureautique des > ?lus de France. > http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html > > Pas ? pas, agissons au quotidien pour pr?server notre environnement. > N'imprimez que si n?cessaire, > r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les > solutions DotRiver. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/aa505b8d/attachment.html From asha at vtiger.com Wed Jul 29 07:01:40 2009 From: asha at vtiger.com (Asha) Date: Wed, 29 Jul 2009 16:31:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> References: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Message-ID: Hi All, Thanks for your support. We have finally analyzed the issue and found the quick fix for it. Please follow the trac ticket below for more details: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6205 On 7/27/09, Prasad wrote: > > Hi, > > If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' > returns NULL value result for InnoDB tables. > > How to reproduce the issue? > You will end up with the described result if you have the following MySQL > configuration. > [mysqld] > default-storage-engine=MyISAM > skip-innodb > > Please note, for vtiger CRM to work properly you will need to have InnoDB > support enabled in MySQL. > > How to avoid the issue? > [mysqld] > default-storage-engine=INNODB > #skip-innodb > > Regards, > Prasad > vtiger Team > > On 7/27/09, den jean wrote: >> >> Hi, >> What are we supposed to have like error ? >> Regards, >> >> 2009/7/27 Asha >> >>> Hi All, >>> >>> People have been reporting us a major issue with migration, where the >>> script that changes the MyISAM tables to InnoDB tables is not working. >>> >>> We are trying to reproduce this issue in our test labs and have not >>> succeeded yet. >>> >>> Whole problem is around the query 'SHOW TABLE STATUS FROM >>> '. >>> >>> Would be great if anyone can provide us a helping hand in analyzing or >>> resolving the issue. Possibly if anyone can reproduce this issue on their >>> servers and can give us the access to the server, that would help a lot. >>> >>> Hoping to get a resolution for this issue soon so that people can migrate >>> to vtiger 5.1.0 smoothly. >>> >>> -- >>> Regards, >>> Asha >>> vtiger Team >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/e05ab00a/attachment.html From djeandot at gmail.com Wed Jul 29 07:52:39 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 13:52:39 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> References: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Message-ID: Thank you so much. It works well. Regards, 2009/7/29 Sandeep P > Hi Denis, > > Kindly make the following change on your source in order to resolve the > issue you have mentioned. > > In file *modules/CustomView/CustomView.php* at *line no 965* > in function getCvColumnListSQL add the code provided below > > else if($list[1] == 'crmid'){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > after the below mentioned lines > > if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > Check if the above changes help you in solving the issue. > > > On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > >> Hi, >> >> I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created >> a filter with the ticket ID in the first column as you can see here : >> http://img151.imageshack.us/img151/6218/filterh.jpg >> >> I saved it but the tickets ID is not on the listview : >> http://img148.imageshack.us/img148/133/listview.jpg >> >> How can I fix that ? >> >> Regards, >> >> >> -- >> Jean Denis >> DotRiver pr?sente EluRiver, une approche unique pour la bureautique des >> ?lus de France. >> http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html >> >> Pas ? pas, agissons au quotidien pour pr?server notre environnement. >> N'imprimez que si n?cessaire, >> r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant >> les solutions DotRiver. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Sandeep > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/53da1b5b/attachment.html From j4c0b1 at gmail.com Wed Jul 29 09:45:29 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Wed, 29 Jul 2009 10:45:29 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70163E.8020005@internode.on.net> References: <4A70163E.8020005@internode.on.net> Message-ID: Can you send a link that we can see to post a feedback ? I think its very usefull for new vtiger users. 2009/7/29 Andrew Galdes > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/b4e8841d/attachment.html From prasad at vtiger.com Wed Jul 29 10:34:13 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:04:13 +0530 Subject: [Vtigercrm-developers] Mobile Extension Module for vtiger CRM 5.1.0 Message-ID: <39d18b250907290734i52f22dabl5085f3ce0d0c36aa@mail.gmail.com> Dear members, The first version of Mobile (web client) is now available for vtiger CRM 5.1.0 Refer the blog post: http://www.vtiger.com/blogs/2009/07/29/mobile-extension-module-for-vtiger-crm-510/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/8167bb03/attachment.html From prasad at vtiger.com Wed Jul 29 11:22:07 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:52:07 +0530 Subject: [Vtigercrm-developers] Do you like using vtiger CRM? Write a review for us. Message-ID: <39d18b250907290822u62d44399h28797229102b3b4b@mail.gmail.com> Dear members, Take your few minutes and write a review for us at https://sourceforge.net/projects/vtigercrm/ Hoping to see more 'Thumbs up' on the reviews. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/2e5a5a49/attachment.html From galdes at internode.on.net Wed Jul 29 19:43:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 30 Jul 2009 09:13:33 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> Message-ID: <4A70DEA5.9040609@internode.on.net> Thanks all who replied, http://www.impresser.com.au/vtigercrm-video/ You can see a demo at the above URL. The above link is nothing fancy but a directory listing at this stage. The video is 6.87MB in WMV format. It's the chapter on Contact management. I'd like to have a few others uploaded as they are ready. Sorry for the WMV format but for testing it is simplest. Note that the video set was recorded (screen and sound only) during real training so the language used is very natural - possibly not what you'd expect from a formal training set. Also, it's intended to have these for sale when completed. Your input till then is appreciated. -Andrew G Cicero Jacobi Filho wrote: > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > > > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090730/5f3b8b52/attachment.html From ml at arceva.fr Thu Jul 30 11:54:13 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 17:54:13 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: <4A71C225.8070006@arceva.fr> Hi, The vtiger website and vtiger forum are always extremly slow and produce time out The forum first page appear after around 2min and a search after 4-5 min Varma a ?crit : > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) are up and running now. > > Please check it and let us know if you have any problem access them. > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > wrote: > > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) will be down for > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > IST). > > Sorry for the inconvenience. We shall update you as soon as they > are up and running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > > > > > -- > Thanks & Regards, > Varma. > VtigerTeam. > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From ml at arceva.fr Thu Jul 30 12:33:46 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 18:33:46 +0200 Subject: [Vtigercrm-developers] user creation Message-ID: <4A71CB6A.1010300@arceva.fr> Hi All, Does anyone now what is the function who save a new user on the database ? I search all the day and I just found the function who send the email to the new user (in /modules/users/Save.php around line 185) Thanks for your help Bruno From prasad at vtiger.com Thu Jul 30 12:46:39 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 30 Jul 2009 22:16:39 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A71C225.8070006@arceva.fr> References: <4A71C225.8070006@arceva.fr> Message-ID: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Hi, Sorry for the inconvenience. The last maintenance did not give us much benefit, Our IT team is planning to boost hardware to our servers and working out on a suitable timing to get it done. We will keep you posted before next maintenance and get the speed back. Regards, Prasad On 7/30/09, Fusioncore wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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/20090730/28888849/attachment.html From asha at vtiger.com Thu Jul 30 14:46:54 2009 From: asha at vtiger.com (Asha) Date: Fri, 31 Jul 2009 00:16:54 +0530 Subject: [Vtigercrm-developers] user creation In-Reply-To: <4A71CB6A.1010300@arceva.fr> References: <4A71CB6A.1010300@arceva.fr> Message-ID: Hi Bruno, save function of modules/Users/Users.php is triggered on save of a User. This function in turn triggers saveentity -> insertIntoEntityTable -> which will actually insert the data to required tables (The tables to which the values needs to be inserted is picked from $tab_name variable defined in modules/Users/Users.php) On 7/30/09, Fusioncore wrote: > > Hi All, > > Does anyone now what is the function who save a new user on the database ? > I search all the day and I just found the function who send the email to > the new user (in /modules/users/Save.php around line 185) > > Thanks for your help > > Bruno > _______________________________________________ > 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/20090731/3725fdc6/attachment.html From carloz at gnumerica.org Fri Jul 31 03:11:18 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Fri, 31 Jul 2009 09:11:18 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Message-ID: <4A729916.5060507@gnumerica.org> Hi, I just posted a brief announcement on the italian subforum regarding this (yesterday a number of duplicated posts appeared there, since people are not aware of what's happening and end up "re-submitting" the same article). Keep us updated, Carlo ps: if you are thinking about moving to the (very scalable ;-) Amazon AWS and need some experienced professionals, drop a line :-D Prasad ha scritto: > Hi, > > Sorry for the inconvenience. > > The last maintenance did not give us much benefit, Our IT team is > planning to boost hardware to our servers and > working out on a suitable timing to get it done. > > We will keep you posted before next maintenance and get the speed back. > > Regards, > Prasad > > On 7/30/09, *Fusioncore* > wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > >> wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 From prasad at vtiger.com Fri Jul 31 03:14:32 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 31 Jul 2009 12:44:32 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A729916.5060507@gnumerica.org> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> <4A729916.5060507@gnumerica.org> Message-ID: <39d18b250907310014q94d6a00t739c27ca26ff86c8@mail.gmail.com> Carlo, Thank you for the support. Regards, Prasad On 7/31/09, Carlo Beschi wrote: > > Hi, > > I just posted a brief announcement on the italian subforum regarding > this (yesterday a number of duplicated posts appeared there, since > people are not aware of what's happening and end up "re-submitting" the > same article). > > Keep us updated, > > Carlo > > ps: if you are thinking about moving to the (very scalable ;-) Amazon > AWS and need some experienced professionals, drop a line :-D > > > > Prasad ha scritto: > > > Hi, > > > > Sorry for the inconvenience. > > > > The last maintenance did not give us much benefit, Our IT team is > > planning to boost hardware to our servers and > > working out on a suitable timing to get it done. > > > > We will keep you posted before next maintenance and get the speed back. > > > > Regards, > > Prasad > > > > > On 7/30/09, *Fusioncore* > wrote: > > > > Hi, > > The vtiger website and vtiger forum are always extremly slow and > produce > > time out > > The forum first page appear after around 2min and a search after 4-5 > min > > > > Varma a ?crit : > > > Hi All, > > > > > > Vtiger website (vtiger.com > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > ) are up and running now. > > > > > > > > Please check it and let us know if you have any problem access > them. > > > > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > > > > > >> wrote: > > > > > > Hi All, > > > > > > > > Vtiger website (vtiger.com > > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > > ) will be down for > > > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 > PM > > > IST). > > > > > > Sorry for the inconvenience. We shall update you as soon as > they > > > are up and running again. > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > > > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > _______________________________________________ > 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/20090731/2ab00b1d/attachment.html From fp at crm-now.de Fri Jul 31 10:19:50 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Fri, 31 Jul 2009 16:19:50 +0200 Subject: [Vtigercrm-developers] accessing the forum impossible In-Reply-To: References: Message-ID: <010a01ca11e9$f78ee630$e6acb290$@de> At least for me it is impossible to login into the vtiger forum today in order to respond to some postings. This is very unfortunate. From ml at arceva.fr Fri Jul 31 12:14:52 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:14:52 +0200 Subject: [Vtigercrm-developers] debug Message-ID: <4A73187C.4090200@arceva.fr> Hi all I search to active debug on 5.1.0 but the method used on the 504 didn't work Do you have an idea ? Thanks, Bruno From joe at tsolucio.com Fri Jul 31 12:28:30 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:28:30 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A73187C.4090200@arceva.fr> References: <4A73187C.4090200@arceva.fr> Message-ID: <4A731BAE.2040808@tsolucio.com> We now have a global performance config file, you have to activate it there first: config.performance.php Joe TSolucio Fusioncore escribi?: > Hi all > I search to active debug on 5.1.0 but the method used on the 504 didn't work > Do you have an idea ? > Thanks, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From ml at arceva.fr Fri Jul 31 12:36:47 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:36:47 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731BAE.2040808@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> Message-ID: <4A731D9F.9010703@arceva.fr> Thanks Joe but, I activate debug in this file but I don't have any result. I search the new function who provide the same result than : //$this->database->debug = true; log4php.rootLogger=DEBUG,A1 Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > We now have a global performance config file, you have to activate it > there first: > > config.performance.php > > Joe > TSolucio > > Fusioncore escribi?: > >> Hi all >> I search to active debug on 5.1.0 but the method used on the 504 didn't work >> Do you have an idea ? >> Thanks, >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From joe at tsolucio.com Fri Jul 31 12:50:03 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:50:03 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731D9F.9010703@arceva.fr> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> Message-ID: <4A7320BB.1050708@tsolucio.com> You have to activate debug in this new file: $this->database->debug = true; and THEN, configure log4php.properties as we did before Joe TSolucio Fusioncore escribi?: > Thanks Joe but, > I activate debug in this file but I don't have any result. > I search the new function who provide the same result than : > > //$this->database->debug = true; > log4php.rootLogger=DEBUG,A1 > > Thanks, > Bruno > > French-vtiger Manager > > > > Joe Bordes a ?crit : > >> We now have a global performance config file, you have to activate it >> there first: >> >> config.performance.php >> >> Joe >> TSolucio >> >> Fusioncore escribi?: >> >> >>> Hi all >>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>> Do you have an idea ? >>> Thanks, >>> Bruno >>> _______________________________________________ >>> 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/20090731/b0fca5d2/attachment.html From ml at arceva.fr Fri Jul 31 15:58:09 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 21:58:09 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A7320BB.1050708@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> <4A7320BB.1050708@tsolucio.com> Message-ID: <4A734CD1.1080202@arceva.fr> I do it but nothing work correctly I active in the new file and I modify the file LoggerPropertyConfigurator.php and nothing work And I found function setDebug($value) { $this->database->debug = $value; } in the peardatabase file. Where I can change this var : $value ? Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > You have to activate debug in this new file: > > $this->database->debug = true; > > and THEN, configure log4php.properties as we did before > > Joe > TSolucio > > Fusioncore escribi?: >> Thanks Joe but, >> I activate debug in this file but I don't have any result. >> I search the new function who provide the same result than : >> >> //$this->database->debug = true; >> log4php.rootLogger=DEBUG,A1 >> >> Thanks, >> Bruno >> >> French-vtiger Manager >> >> >> >> Joe Bordes a ?crit : >> >>> We now have a global performance config file, you have to activate it >>> there first: >>> >>> config.performance.php >>> >>> Joe >>> TSolucio >>> >>> Fusioncore escribi?: >>> >>> >>>> Hi all >>>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>>> Do you have an idea ? >>>> Thanks, >>>> Bruno >>>> _______________________________________________ >>>> 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 >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From j4c0b1 at gmail.com Fri Jul 31 17:17:20 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Fri, 31 Jul 2009 18:17:20 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70DEA5.9040609@internode.on.net> References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: teh qualitty is very poor. I can not hear or understand what is beeing tlaked at the video and the image is fuzzy with much noise. Do y have something better ? hasta -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi 2009/7/29 Andrew Galdes > Thanks all who replied, > > http://www.impresser.com.au/vtigercrm-video/ > > You can see a demo at the above URL. The above link is nothing fancy but a > directory listing at this stage. The video is 6.87MB in WMV format. It's the > chapter on Contact management. I'd like to have a few others uploaded as > they are ready. Sorry for the WMV format but for testing it is simplest. > > Note that the video set was recorded (screen and sound only) during real > training so the language used is very natural - possibly not what you'd > expect from a formal training set. Also, it's intended to have these for > sale when completed. Your input till then is appreciated. > > -Andrew G > > > Cicero Jacobi Filho wrote: > > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > >> Hello all, >> >> We've developed a training video pack for vTiger CRM. I'd like some >> feedback on the supposed demand for such a training tool. Before we >> spend too much time on the final product development and marketing of >> the video pack, i'd like to know if you, your clients or peers would >> benefit from such a tool. >> >> Feel free to post off list as this might infringe on list policy. >> >> -- >> -Andrew Galdes >> Managing Director >> Impresser Pty Ltd >> >> Ph: 08 8357 2024 >> Mb: 0422 927 598 >> www.impresser.com.au >> >> I.T Services To Science Companies >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > > ------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598www.impresser.com.au > > I.T Services To Science Companies > > > _______________________________________________ > 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/20090731/637ccd98/attachment.html From galdes at internode.on.net Fri Jul 31 20:07:14 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 09:37:14 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A738732.6030404@internode.on.net> Thanks, Can you tell me which media player and OS you're using? At this end (and others have agreed) the codec is less then a perfect choice. We'll recompile with a different codec. The version you saw was with WMV. However, we've already started recompiling with MOV which is giving us better results. -Andrew G Cicero Jacobi Filho wrote: > teh qualitty is very poor. > > I can not hear or understand what is beeing tlaked at the video and > the image is fuzzy with much noise. > > Do y have something better ? > > hasta ce Companies From lee at leev.net Wed Jul 1 00:23:02 2009 From: lee at leev.net (Lee Valentine) Date: Wed, 1 Jul 2009 14:23:02 +1000 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi Ding, That was just applied to 5.1rc2. However I did the query originally in 5.0.4. Thanks, Lee 2009/7/1 ding jianting : > Hi,Lee > What is version of your vtigerCRM? > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: >> >> Hey Guys, >> >> We were having performance issues with the crm taking ages to load so >> I had all the queries being executed printed to the screen with the >> duration each query was taking. I found: >> >> select distinct(setype) from vtiger_crmentity where crmid in (select >> parent_id from vtiger_troubletickets) >> 106.894966125 seconds. >> >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in >> function getSalesRelatedName) >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in >> (select ". $adb->sql_escape_string($fieldname)." from ". >> $adb->sql_escape_string($tablename).")"; >> >> I replaced it with the following: >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN >> ".$adb->sql_escape_string($tablename)." t ON >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; >> >> And received the result: >> select distinct(setype) from vtiger_crmentity c INNER JOIN >> vtiger_troubletickets t ON t.parent_id = c.crmid >> 0.0270490646362 seconds. >> >> This has given our crm a MAJOR performance increase. >> >> Thanks, >> Lee >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > ----------------------------------------------------------------------- > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From asha at vtiger.com Wed Jul 1 03:07:48 2009 From: asha at vtiger.com (Asha) Date: Wed, 1 Jul 2009 12:37:48 +0530 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi All, This issue is reported on trac ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6108) and we have recently integrated the changes. On 7/1/09, Lee Valentine wrote: > > Hi Ding, > > That was just applied to 5.1rc2. However I did the query originally in > 5.0.4. > > Thanks, > Lee > > > 2009/7/1 ding jianting : > > > Hi,Lee > > What is version of your vtigerCRM? > > > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: > >> > >> Hey Guys, > >> > >> We were having performance issues with the crm taking ages to load so > >> I had all the queries being executed printed to the screen with the > >> duration each query was taking. I found: > >> > >> select distinct(setype) from vtiger_crmentity where crmid in (select > >> parent_id from vtiger_troubletickets) > >> 106.894966125 seconds. > >> > >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in > >> function getSalesRelatedName) > >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in > >> (select ". $adb->sql_escape_string($fieldname)." from ". > >> $adb->sql_escape_string($tablename).")"; > >> > >> I replaced it with the following: > >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN > >> ".$adb->sql_escape_string($tablename)." t ON > >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; > >> > >> And received the result: > >> select distinct(setype) from vtiger_crmentity c INNER JOIN > >> vtiger_troubletickets t ON t.parent_id = c.crmid > >> 0.0270490646362 seconds. > >> > >> This has given our crm a MAJOR performance increase. > >> > >> Thanks, > >> Lee > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > > > > _______________________________________________ > > 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/20090701/71ed0548/attachment-0001.html From asha at vtiger.com Fri Jul 3 12:02:25 2009 From: asha at vtiger.com (Asha) Date: Fri, 3 Jul 2009 21:32:25 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 released Message-ID: Hi All, We are glad to announce the availability of 5.1.0 RC today. This release covers several new features, enhancements and bug fixes. Download information is available at this link, and view the RC Release Notes here. Online Demo: http://en.vtiger.com/wip We have put up some demo tutorials for installation and migration that are available here . *Please evaluate it and share your feedback.* Report any issues you notice at http://trac.vtiger.com *with version set to 5.1.0 RC*. Make sure to provide complete details of the issue. PS: Did you get a chance to Vote for vtiger CRM ( Sourceforge CCA09 ) -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090703/9cdde483/attachment-0001.html From christophe-bouchet at laposte.net Mon Jul 6 09:44:50 2009 From: christophe-bouchet at laposte.net (Christophe BOUCHET) Date: Mon, 06 Jul 2009 15:44:50 +0200 Subject: [Vtigercrm-developers] Cosmetics in vtiger RC 5.1.0 Message-ID: <1246887890.3235.26.camel@christophe-laptop> Hi, When creating an account, lead, contact, lack a space between the tabs (file /Smarty/templates/CreateView.tpl missing between lines 108 and 109 ' '), and CSS can not be applied to the block 'Description' file /Smarty/templates/EditViewUI.tpl line 116 missing class="dvtCellInfo") Thank you Best regards Christophe BOUCHET From djeandot at gmail.com Fri Jul 10 04:50:46 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 10:50:46 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC Message-ID: Hello, I try to migrate my CRM into the latest version for testing but I get a problem during the process of migration. When I specify the name of database and after the "next" step, I get this : *Fatal error*: Call to a member function NumRows() on a non-object in * /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try to migrate this 5.0.4 to 5.1 RC, I get an error. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/98dbebcb/attachment-0001.html From stefan.lorenz at burdadirect.de Fri Jul 10 06:56:48 2009 From: stefan.lorenz at burdadirect.de (DJLorry) Date: Fri, 10 Jul 2009 03:56:48 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Message-ID: <24408556.post@talk.nabble.com> Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From asha at vtiger.com Fri Jul 10 07:21:59 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:51:59 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: <24408556.post@talk.nabble.com> References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry wrote: > > > Hello, > how can I add a second account or person field in these modules ? > The problem can't be solved by just adding a custom field and changing the > uitype. (Which works when no account field already exits, though) > The uitype 50 changes the custom field to contain the button for the > popup-window for account-selection. > The problem is that a thereby selected account is stored in the modul's > default account field whereas the custom field stays blank. I have added a > query to show the account if I put an accountid in the customfield's table > in mysql. So the remainig problem is how to get vtiger to store the > selected > account's Id in the custom field and not in the account_id field. Where is > the connection between popup window,save button and the insertion into the > database ? How can I get vtiger not to treat both the custom and the > already > existing field as the same when storing the account-id ? The same problem > occurs with a custom person field if one is already part of a module by > default. > > I hope someone is able to help. > > Regards > Stefan > > > > -- > View this message in context: > http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html > Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/bc8c2f9c/attachment-0001.html From asha at vtiger.com Fri Jul 10 07:23:18 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:53:18 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, This would happen if the connection to your database fails with the database information you have provided. Can you brief out the exact steps followed to migrate from 5.0.4 to 5.1.0? On 7/10/09, den jean wrote: > > Hello, > > I try to migrate my CRM into the latest version for testing but I get a > problem during the process of migration. > > When I specify the name of database and after the "next" step, I get this : > > > *Fatal error*: Call to a member function NumRows() on a non-object in * > /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* > > I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try > to migrate this 5.0.4 to 5.1 RC, I get an error. > > Regards, > > _______________________________________________ > 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/20090710/a1db76f6/attachment-0001.html From djeandot at gmail.com Fri Jul 10 08:27:04 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 14:27:04 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Thanks you for your answer. So I start to click on "Migrate" and I'm on the "Installation Check" with all the values to YES and I choose all the optional modules then I get that : Previous Installation Path : /var/www/vtiger504/ Previous Installation Version : 5.0.4 Admin Username : I give my admin name (but it's not the same as phpmyadmin) Admin Password : ****** Database Name for Migraiton : I give the database of the previous installation. And then I click on "Next", I get the error. Regards, 2009/7/10 Asha > Hi, > > This would happen if the connection to your database fails with the > database information you have provided. Can you brief out the exact steps > followed to migrate from 5.0.4 to 5.1.0? > > On 7/10/09, den jean wrote: > >> Hello, >> >> I try to migrate my CRM into the latest version for testing but I get a >> problem during the process of migration. >> >> When I specify the name of database and after the "next" step, I get this >> : >> >> >> *Fatal error*: Call to a member function NumRows() on a non-object in * >> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >> >> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >> try to migrate this 5.0.4 to 5.1 RC, I get an error. >> >> Regards, >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > 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/20090710/4a64aee2/attachment-0001.html From Stefan.Lorenz at burdadirect.de Fri Jul 10 08:48:59 2009 From: Stefan.Lorenz at burdadirect.de (Lorenz Stefan) Date: Fri, 10 Jul 2009 14:48:59 +0200 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Thanks for your reply. I had a quick look at the documentation of vtlib but it remains rather unclear to me how to use it with already existing modules such as quotes etc. Would you give some hints, please ? Reagrds Stefan ________________________________ Von: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Im Auftrag von Asha Gesendet: Freitag, 10. Juli 2009 13:22 An: vtigercrm-developers at lists.vtigercrm.com Betreff: Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry > wrote: Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/e9aba47e/attachment-0001.html From asha at vtiger.com Fri Jul 10 14:34:52 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:04:52 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Can you check if all the database related information in config.inc.php file of /var/www/vtiger504/ installation is correct (including the database name you given for migration) On 7/10/09, den jean wrote: > > Thanks you for your answer. > > So I start to click on "Migrate" and I'm on the "Installation Check" with > all the values to YES and I choose all the optional modules then I get that > : > > Previous Installation Path : /var/www/vtiger504/ > Previous Installation Version : 5.0.4 > Admin Username : I give my admin name (but it's not the same as phpmyadmin) > Admin Password : ****** > Database Name for Migraiton : I give the database of the previous > installation. > > And then I click on "Next", I get the error. > > Regards, > > 2009/7/10 Asha > >> Hi, >> >> This would happen if the connection to your database fails with the >> database information you have provided. Can you brief out the exact steps >> followed to migrate from 5.0.4 to 5.1.0? >> >> On 7/10/09, den jean wrote: >> >>> Hello, >>> >>> I try to migrate my CRM into the latest version for testing but I get a >>> problem during the process of migration. >>> >>> When I specify the name of database and after the "next" step, I get this >>> : >>> >>> >>> *Fatal error*: Call to a member function NumRows() on a non-object in * >>> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >>> >>> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >>> try to migrate this 5.0.4 to 5.1 RC, I get an error. >>> >>> Regards, >>> >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090711/93402e96/attachment-0001.html From asha at vtiger.com Fri Jul 10 14:36:25 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:06:25 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, You can get an instance of any of the existing modules and add field for it. The field uitype that I would suggest you is 10. On 7/10/09, Lorenz Stefan wrote: > > Thanks for your reply. I had a quick look at the documentation of vtlib > but it remains rather unclear to me how to use it with already existing > modules such as quotes etc. Would you give some hints, please ? > Reagrds > Stefan > > ------------------------------ > *Von:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *Im Auftrag von *Asha > *Gesendet:* Freitag, 10. Juli 2009 13:22 > *An:* vtigercrm-developers at lists.vtigercrm.com > *Betreff:* Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom > second account field to invoice, sales order, quote > > Hi Stefan, > > I suggest you to try out vtlib. Use uitype 10 of vtlib to create such > custom fields. Hope that meets your requirement which will not clash with > the existing referencing field. > > On 7/10/09, DJLorry wrote: >> >> >> Hello, >> how can I add a second account or person field in these modules ? >> The problem can't be solved by just adding a custom field and changing the >> uitype. (Which works when no account field already exits, though) >> The uitype 50 changes the custom field to contain the button for the >> popup-window for account-selection. >> The problem is that a thereby selected account is stored in the modul's >> default account field whereas the custom field stays blank. I have added a >> query to show the account if I put an accountid in the customfield's table >> in mysql. So the remainig problem is how to get vtiger to store the >> selected >> account's Id in the custom field and not in the account_id field. Where is >> the connection between popup window,save button and the insertion into the >> database ? How can I get vtiger not to treat both the custom and the >> already >> existing field as the same when storing the account-id ? The same problem >> occurs with a custom person field if one is already part of a module by >> default. >> >> I hope someone is able to help. >> >> Regards >> Stefan >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > vtiger Team > > _______________________________________________ > 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/20090711/8169f0ef/attachment-0001.html From djeandot at gmail.com Mon Jul 13 04:21:55 2009 From: djeandot at gmail.com (den jean) Date: Mon, 13 Jul 2009 10:21:55 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, I ckeck the config.inc.php and I think it's correct. I just wondering if the "Database Name for Migraiton" should be empty or this the previous database ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090713/1c1a72e7/attachment-0001.html From asha at vtiger.com Mon Jul 13 14:19:35 2009 From: asha at vtiger.com (Asha) Date: Mon, 13 Jul 2009 23:49:35 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Either your new database should have the data copied from previous database (OR) new database can be empty and you can copy the data from previous database in the next step of the migration wizard (which we do not recommend). In your case, looks like the user credentials (mysql username/password from previous installation config file) is not correct to connect to the new database name specified. Please check if that user has the privileges on the new database. On 7/13/09, den jean wrote: > > Hi, > > I ckeck the config.inc.php and I think it's correct. > I just wondering if the "Database Name for Migraiton" should be empty or > this the previous database ? > > Regards, > > _______________________________________________ > 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/20090713/c635a315/attachment-0001.html From ml at arceva.fr Mon Jul 13 19:44:59 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 14 Jul 2009 01:44:59 +0200 Subject: [Vtigercrm-developers] translate firefox extension Message-ID: <4A5BC6FB.1040201@arceva.fr> Hi all, I actually translate the firefox plugin but I have a big problem with accent Does anyone know how to insert accent in the xpi files (vtigertoolbar.xul for example ?) I have test with ? ou é, the first create a screen bug and the last close the extension Thanks, Bruno From carloz at gnumerica.org Tue Jul 14 10:43:07 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Tue, 14 Jul 2009 16:43:07 +0200 Subject: [Vtigercrm-developers] translate firefox extension In-Reply-To: <4A5BC6FB.1040201@arceva.fr> References: <4A5BC6FB.1040201@arceva.fr> Message-ID: <4A5C997B.9080806@gnumerica.org> Hi Bruno, I did some googling on this, and here's my findings: http://www.rietta.com/firefox/Tutorial/locale.html https://developer.mozilla.org/en/International_characters_in_XUL_JavaScript http://forums.mozillazine.org/viewtopic.php?f=19&t=337032&start=0&st=0&sk=t&sd=a https://developer.mozilla.org/En/XUL Please keep me updated about your localization effort. I'm the coordinator of the italian community translation team (see http://vtiger-italia.net/ and http://vtiger-italia.net/mailman/listinfo/traduttori_vtiger-italia.net ) and we are definitely interested in the issue. Ciao carloz Fusioncore ha scritto: > Hi all, > I actually translate the firefox plugin but I have a big problem with accent > Does anyone know how to insert accent in the xpi files > (vtigertoolbar.xul for example ?) I have test with ? ou é, the > first create a screen bug and the last close the extension > > Thanks, > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From djeandot at gmail.com Wed Jul 15 04:04:19 2009 From: djeandot at gmail.com (den jean) Date: Wed, 15 Jul 2009 10:04:19 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: I create a user for the database with the same login and pwd as the admin user on the CRM, but the problem is still here. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090715/dec67711/attachment-0001.html From prasad at vtiger.com Sun Jul 19 10:11:45 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 19:41:45 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing Message-ID: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090719/63e5d5f8/attachment-0001.html From brett.hooker at roarz.com Sun Jul 19 10:51:07 2009 From: brett.hooker at roarz.com (Brett Hooker) Date: Mon, 20 Jul 2009 00:51:07 +1000 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Message-ID: <4A6332DB.4090809@roarz.com> Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug > fixes into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090720/a7c578bb/attachment-0001.html From prasad at vtiger.com Sun Jul 19 11:24:22 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 20:54:22 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <4A6332DB.4090809@roarz.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> <4A6332DB.4090809@roarz.com> Message-ID: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: > > Prasad, > > Just clarifying, do you want testing done on the RC code line, or the > latest code in SVN? > > > Thanks, > Brett > > Prasad wrote: > > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug fixes > into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/93fa1713/attachment-0001.html From s.shaw at amalganet.com Sun Jul 19 12:47:55 2009 From: s.shaw at amalganet.com (AML) Date: Sun, 19 Jul 2009 17:47:55 +0100 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting In-Reply-To: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Message-ID: <200907191648.n6JGmKbh022948@vtigerforge.com> I have an upgrade to test, from 5.0.4 Is it possible to download the zip file as my SVN knowledge is not great. Ken _____ From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: 19 July 2009 16:24 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad 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/20090719/f67018ab/attachment-0001.html From asha at vtiger.com Wed Jul 22 09:47:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:17:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone Message-ID: Hi All, We are glad to announce the release of vtiger 5.1.0 today! This release addresses around 150+ features/enhancements, 700 bug fixes besides performance improvements. We are hopeful that you will like the new release. Following are some of the important features added: - Webservices API - Workflow - Vtlib library - Services support - Layout Editor - Duplicate Merging - Mail Scanner - Mass Edit - Multi-Currency Support - Recurring Invoice Thank you for all your patience and support in making this a big release. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Release Notes is available here. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Note: vtiger CRM 5.0.4 Office Plugin will continue to work with vtiger CRM 5.1.0 Online Demo: http://en.vtiger.com Documentation: http://wiki.vtiger.com We welcome your feedback. Please report any issues on Tracor on vtiger Forums . -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/4460e149/attachment-0001.html From manilal at ejyothi.com Wed Jul 22 10:00:47 2009 From: manilal at ejyothi.com (Manilal K M) Date: Wed, 22 Jul 2009 19:30:47 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Quoting Asha : > Hi All, > > We are glad to announce the release of vtiger 5.1.0 today! This release > addresses around 150+ features/enhancements, 700 bug fixes besides > performance improvements. We are hopeful that you will like the new release. > > The download link in the vtiger.com home page still leads to 5.0.4. You should follow the download links in the email. regards -- Manilal K M eJyothi Services http://www.ejyothi.com From asha at vtiger.com Wed Jul 22 10:24:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:54:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> References: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Message-ID: Hi Manilal, Thanks for pointing it out. We have updated the links. Please check it out. On 7/22/09, Manilal K M wrote: > > > Quoting Asha : > > > Hi All, > > > > We are glad to announce the release of vtiger 5.1.0 today! This release > > addresses around 150+ features/enhancements, 700 bug fixes besides > > performance improvements. We are hopeful that you will like the new > release. > > > > > > > > The download link in the vtiger.com home page still leads to 5.0.4. > You should follow the download links in the email. > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090722/f2cae4e2/attachment-0001.html From galdes at internode.on.net Wed Jul 22 20:11:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 09:41:33 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <4A67AAB5.1030608@internode.on.net> Hello all, I've upgraded from 5.01 to 5.10 using the migration instructions at http://wiki.vtiger.com/index.php/vtiger510:Migration It seemed to progress through as intended but when i log in (as an Admin user) i see no information on the Home Page but there is a top menu. I select Contacts and i get the following error: *Fatal error*: Call to a member function FetchRow() on a non-object in */home//public_html/vtigercrm/include/database/PearDatabase.php* on line *645 *The same for Accounts. I click on Settings and the same thing happens as did with Home Page - the page load ok but no information within it. Any ideas? What info might help you? This is running on a cPanel. vtiger was installed via source. Cheers, -Andrew Galdes * * -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/d4f2c0d7/attachment-0001.html From dfar2008 at gmail.com Wed Jul 22 21:16:58 2009 From: dfar2008 at gmail.com (ding jianting) Date: Thu, 23 Jul 2009 09:16:58 +0800 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <4A67AAB5.1030608@internode.on.net> References: <4A67AAB5.1030608@internode.on.net> Message-ID: Hi,Andrew Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes wrote: > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions at > http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an Admin > user) i see no information on the Home Page but there is a top menu. I > select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a non-object in * > /home//public_html/vtigercrm/include/database/PearDatabase.php*on line > *645 > > *The same for Accounts. I click on Settings and the same thing happens as > did with Home Page - the page load ok but no information within it. > > Any ideas? What info might help you? This is running on a cPanel. vtiger > was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- ________________________________________ ????CRM ?? ???????????????631????? ???021-64876448 ??:021-64876441 ???(0)13701696656 Email:dfar2008 at gmail.com ----------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/22ac5120/attachment-0001.html From prasad at vtiger.com Wed Jul 22 21:40:33 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 07:10:33 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down Message-ID: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/a975b7a4/attachment-0001.html From galdes at internode.on.net Wed Jul 22 22:56:41 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 12:26:41 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: <4A67AAB5.1030608@internode.on.net> Message-ID: <4A67D169.9000208@internode.on.net> Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c2b2cf7f/attachment-0001.html From prasad at vtiger.com Wed Jul 22 23:07:42 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 08:37:42 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down In-Reply-To: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/ed365db5/attachment-0001.html From pbucolo at vodafone.it Thu Jul 23 04:44:45 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 10:44:45 +0200 Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown In-Reply-To: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> Message-ID: Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0001.jpe From vikas at vtiger.com Thu Jul 23 08:08:28 2009 From: vikas at vtiger.com (Vikas Jain) Date: Thu, 23 Jul 2009 17:38:28 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: > > 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) > 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) > 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 23 Jul 2009 12:26:41 +0930 > From: Andrew Galdes > Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A > Major > Milestone > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <4A67D169.9000208 at internode.on.net> > Content-Type: text/plain; charset="gb2312" > > Thanks for the help. Let me know if you want more of that log file. Note > that the date is incorrect on in the following: > > Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] > Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] > Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into > vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values > (?,?,?,?,?) > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, > Approved] > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > parameters : [1,AUD,AU,$,1,Active,-11] > > -Andrew Galdes > > > > Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the > module(Utilities) language file for the selected language(en_us) or the > default language(en_us) > > > ding jianting wrote: > > Hi,Andrew > > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > > wrote: > > > > Hello all, > > > > I've upgraded from 5.01 to 5.10 using the migration instructions > > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > > > It seemed to progress through as intended but when i log in (as an > > Admin user) i see no information on the Home Page but there is a > > top menu. I select Contacts and i get the following error: > > > > *Fatal error*: Call to a member function FetchRow() on a > > non-object in > > > */home//public_html/vtigercrm/include/database/PearDatabase.php* > > on line *645 > > > > *The same for Accounts. I click on Settings and the same thing > > happens as did with Home Page - the page load ok but no > > information within it. > > > > Any ideas? What info might help you? This is running on a cPanel. > > vtiger was installed via source. > > > > Cheers, > > -Andrew Galdes > > > > * > > * > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > > > > ----------------------------------------------------------------------- > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Thu, 23 Jul 2009 08:37:42 +0530 > From: Prasad > Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: > trac.vtiger.com is down > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > > > Dear members, > > > > Our issue tracker server disk space is pilled up with log and needs a > > cleanup. > > > > Administrator team is working to get it back back soon. Sorry for the > > inconvenience caused. > > > > Regards, > > Prasad > > vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Thu, 23 Jul 2009 10:44:45 +0200 > From: "Pierluigi Bucolo" > Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: > trac.vtiger.com isdown > To: > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Side by side view of Diff, using trac doesn?t work with FFX 3.5. > > It?s work with IE. > > > > The error is in attach. > > > > Regards, > > - Pierluigi > > > > _____ > > Da: vtigercrm-developers-bounces at lists.vtigercrm.com > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di > Prasad > Inviato: gioved? 23 luglio 2009 05.08 > A: vtigercrm-developers at lists.vtigercrm.com > Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com > isdown > > > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.htm > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: Side-By-Side.JPG > Type: image/jpeg > Size: 16568 bytes > Desc: not available > Url : > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side.jpeg > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 43, Issue 5 > *************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/0683591b/attachment-0001.html From ml at arceva.fr Thu Jul 23 08:18:04 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 14:18:04 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks Message-ID: <4A6854FC.8090708@arceva.fr> Hi all, I found a small bug on the home page block In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save and cancel button label are hardcode Regards, Bruno From nitin at vtiger.com Thu Jul 23 09:12:28 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Thu, 23 Jul 2009 06:12:28 -0700 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6854FC.8090708@arceva.fr> References: <4A6854FC.8090708@arceva.fr> Message-ID: Hi Bruno, The Buttons you are talking about are not hardcoded, you can change the button label from /include/language/en_us.lang.php file. Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL Change these strings as they are handling save and cancel button through the vtigercrm. Regards, Nitin Goyal Vtiger Team On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore wrote: > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > 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/20090723/6eb84910/attachment-0001.html From pbucolo at vodafone.it Thu Jul 23 09:32:39 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 15:32:39 +0200 Subject: [Vtigercrm-developers] R: vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: OK. Now it works. Regards, - Pierluigi - _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Vikas Jain Inviato: gioved? 23 luglio 2009 14.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43,Issue 5 Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) ---------------------------------------------------------------------- Message: 1 Date: Thu, 23 Jul 2009 12:26:41 +0930 From: Andrew Galdes Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <4A67D169.9000208 at internode.on.net> Content-Type: text/plain; charset="gb2312" Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V ] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/c2b2cf7f/attachment-0001.htm ------------------------------ Message: 2 Date: Thu, 23 Jul 2009 08:37:42 +0530 From: Prasad Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/ed365db5/attachment-0001.htm ------------------------------ Message: 3 Date: Thu, 23 Jul 2009 10:44:45 +0200 From: "Pierluigi Bucolo" Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/Side-By-Side.jpeg ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 43, Issue 5 *************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/59e3f9eb/attachment-0001.html From ml at arceva.fr Thu Jul 23 09:47:06 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 15:47:06 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: References: <4A6854FC.8090708@arceva.fr> Message-ID: <4A6869DA.5060604@arceva.fr> The inclued language file was already translate. In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around line 29: If I replace it by : The buttons labels were transate Regards, Bruno French-vtiger Manager Nitin Goyal a ?crit : > Hi Bruno, > > The Buttons you are talking about are not hardcoded, you can change > the button label from /include/language/en_us.lang.php file. > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > Change these strings as they are handling save and cancel button > through the vtigercrm. > > > Regards, > Nitin Goyal > Vtiger Team > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > wrote: > > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From fp at crm-now.de Thu Jul 23 10:04:47 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Thu, 23 Jul 2009 16:04:47 +0200 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: References: Message-ID: <005f01ca0b9e$9c19b830$d44d2890$@de> I tried to place a contribution at the vtiger Extension site for the v5.0.1. No luck the latest version offered at the Vtiger Versions picklist is v.5.0.1 RC. Could anybody fix that? Regards, Frank From asha at vtiger.com Thu Jul 23 12:28:31 2009 From: asha at vtiger.com (Asha) Date: Thu, 23 Jul 2009 21:58:31 +0530 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6869DA.5060604@arceva.fr> References: <4A6854FC.8090708@arceva.fr> <4A6869DA.5060604@arceva.fr> Message-ID: Hi Bruno, Thanks for identifying the issue. We shall soon address this. We have noted down the issue on our trac system ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6191 ) On 7/23/09, Fusioncore wrote: > > The inclued language file was already translate. > In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around > line 29: > > style="height:28px;" width=60%> > class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > If I replace it by : > > style="height:28px;" width=60%> > value="{$APP.LBL_SAVE_BUTTON_LABEL}" class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > value="{$APP.LBL_CANCEL_BUTTON_LABEL}" class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > The buttons labels were transate > > Regards, > Bruno > French-vtiger Manager > > > > Nitin Goyal a ?crit : > > > Hi Bruno, > > > > The Buttons you are talking about are not hardcoded, you can change > > the button label from /include/language/en_us.lang.php file. > > > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > > > Change these strings as they are handling save and cancel button > > through the vtigercrm. > > > > > > Regards, > > Nitin Goyal > > Vtiger Team > > > > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > > > wrote: > > > > Hi all, > > I found a small bug on the home page block > > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > > the save > > and cancel button label are hardcode > > > > Regards, > > Bruno > > _______________________________________________ > > 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/6026aac5/attachment-0001.html From svk at vtiger.com Thu Jul 23 13:21:09 2009 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 23 Jul 2009 10:21:09 -0700 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: <005f01ca0b9e$9c19b830$d44d2890$@de> References: <005f01ca0b9e$9c19b830$d44d2890$@de> Message-ID: <370368f40907231021r74c0af4cg539896c141c9d5db@mail.gmail.com> Frank, Version 5.1 is available now as a choice. thanks, -Sreenivas On Thu, Jul 23, 2009 at 7:04 AM, Frank Piepiorra wrote: > I tried to place a contribution at the vtiger Extension site for the > v5.0.1. > No luck the latest version offered at the Vtiger Versions picklist is > v.5.0.1 RC. Could anybody fix that? > > Regards, > Frank > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 733-3229 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/70ec43f0/attachment-0001.html From manilal at ejyothi.com Fri Jul 24 02:10:40 2009 From: manilal at ejyothi.com (Manilal K M) Date: Fri, 24 Jul 2009 11:40:40 +0530 Subject: [Vtigercrm-developers] User privileges error Message-ID: <20090724114040.161555wp33un50g0@app.ascellatech.com> Hello all, I tried to post this to vtiger forums, but it's not responding, hence posting this to mailing list as it is very much critical for me. I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am using LDAP authentication and authentication is working fine. But when I created a new user I got the following error message: [code] Parse error: syntax error, unexpected ';' in /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 [/code] Here is the contents of the above file: [code] '','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); ?> [/code] It seems the user is not being added to the database. I have also tried to use the SQL authentication, but no luck so far. Can somebody provide some hints? regards -- Manilal K M eJyothi Services http://www.ejyothi.com From eugene.babiy at gmail.com Fri Jul 24 07:36:01 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Fri, 24 Jul 2009 14:36:01 +0300 Subject: [Vtigercrm-developers] Sending Document from system by e-mail Message-ID: <4A699CA1.3020303@gmail.com> Hi. Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. His business is Engineering Development and he often need to send documents to clients and also to have possibility to store records and data in CRM. Is there a possibility to make easier sending of documents from inside of system on e-mail? Best regards, Eugene Babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/c5b83f19/attachment-0001.vcf From asha at vtiger.com Fri Jul 24 08:29:08 2009 From: asha at vtiger.com (Asha) Date: Fri, 24 Jul 2009 17:59:08 +0530 Subject: [Vtigercrm-developers] Sending Document from system by e-mail In-Reply-To: <4A699CA1.3020303@gmail.com> References: <4A699CA1.3020303@gmail.com> Message-ID: Hi Eugene Babiy, As far as understand your requirement, following is what you can do: 1. Create Contacts for each of the clients. 2. Associate the required document to the contact. 3. Go to the detail view of the document and use 'send mail with attachment' link on the right side. 4. Compose mail box with attachment will open up. Select the contact name and send the email. 5. The email will be automatically attached to the Contact. Let me know if you are looking for something else. On 7/24/09, Eugene Babiy wrote: > > Hi. > > Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. > His business is Engineering Development and he often need to send > documents to clients and also to have possibility to store records and > data in CRM. > > Is there a possibility to make easier sending of documents from inside > of system on e-mail? > > Best regards, Eugene Babiy > > _______________________________________________ > 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/20090724/a0f04a43/attachment-0001.html From alanslists at gmail.com Fri Jul 24 11:09:34 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 16:09:34 +0100 Subject: [Vtigercrm-developers] Asterisk Integration Message-ID: Can someone explain what this chunk of code is for in function function transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? $arr = explode(":", $to); if(is_array($arr)){ $typeCalled = $arr[0]; $to = trim($arr[1]); } This is being called via the Ajax stuff for initiating outbound calls. Our telephone numbers for contacts/leads etc are usually in the form of either: $AREA $NUMBER or they have an international prefix: +$INT (0)$AREA $NUMBER explode() always results in an Array. As we do *not* have a colon in our phone numbers this chunk of code mangles them and afterwards $to is empty. I don't think it should be called for an outgoing call. Alan From pinaki at vtiger.com Fri Jul 24 12:58:22 2009 From: pinaki at vtiger.com (Pinaki Das) Date: Fri, 24 Jul 2009 22:28:22 +0530 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: References: Message-ID: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Hi Alan, This issue has been fixed in the GA release of vtiger. Can you please check and update us? Regards Pinaki vtiger Team On Fri, Jul 24, 2009 at 8:39 PM, Alan Lord (News) wrote: > Can someone explain what this chunk of code is for in function function > transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? > > > $arr = explode(":", $to); > if(is_array($arr)){ > $typeCalled = $arr[0]; > $to = trim($arr[1]); > } > > > This is being called via the Ajax stuff for initiating outbound calls. > > Our telephone numbers for contacts/leads etc are usually in the form of > either: > > $AREA $NUMBER > > or they have an international prefix: > > +$INT (0)$AREA $NUMBER > > > explode() always results in an Array. > > As we do *not* have a colon in our phone numbers this chunk of code > mangles them and afterwards $to is empty. > > I don't think it should be called for an outgoing call. > > Alan > > > _______________________________________________ > 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/20090724/696e471a/attachment-0001.html From alanslists at gmail.com Fri Jul 24 13:40:58 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 18:40:58 +0100 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> References: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Message-ID: On 24/07/09 17:58, Pinaki Das wrote: > Hi Alan, > > This issue has been fixed in the GA release of vtiger. Can you please > check and update us? OK, I used the upgrade (vtigercrm-5.0.x-to-5.1.0-patch.zip) from 5.10RC to 5.10 and it doesn't seem to have updated this file. Looking at the new package I can see what you have done to fix it. I've been working on some changes to the Asterisk Integration code. When I have something more concrete to show I will. Thanks for the quick response. Alan From prasad at vtiger.com Fri Jul 24 14:52:11 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 25 Jul 2009 00:22:11 +0530 Subject: [Vtigercrm-developers] vtiger CRM Forum Traffic Surge Message-ID: <39d18b250907241152g230801d8hb409797f9775ffd3@mail.gmail.com> Dear members, Due to surge in traffic and discussion at http://forums.vtiger.com, you might find it to be slow sometimes. Our IT team is working on improving the server resources soon, please bear with us in the meantime. Sorry for the inconvenience, but don't miss your comments or feedback to us Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/80dd266e/attachment-0001.html From eugene.babiy at gmail.com Sat Jul 25 06:24:05 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Sat, 25 Jul 2009 13:24:05 +0300 Subject: [Vtigercrm-developers] Translation Problems Message-ID: <4A6ADD45.5010206@gmail.com> Hi. I'm translating vTiger 5.1.0 to Russian and experiencing some problems. 1. On creating Document page labels 'Folder Name' and 'Document No' are still displaying in English although they are translated in document's module language file. 2. Actions list is not displaying at all (Detail view of Document). Any ideas? P.S. The same was in 5.1.0RC -- Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/7f99e0a5/attachment-0001.vcf From StevenS at techtron.co.za Sun Jul 26 08:21:22 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 14:21:22 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon Message-ID: I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/864de6c1/attachment-0001.html From StevenS at techtron.co.za Sun Jul 26 09:58:02 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 15:58:02 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: Never mind just a broken mirror on sourceforge, used another mirror worked fine. From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Steven Sher Sent: 26 July 2009 02:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] problem downloading customer portal addon I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/92ada472/attachment-0001.html From prasad at vtiger.com Sun Jul 26 14:10:25 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:40:25 +0530 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: <39d18b250907261110k5c9417d3m258a01fb5b2a25ee@mail.gmail.com> Thanks for the update, I have posted the same comment on the blogs now. http://www.vtiger.com/blogs/2009/07/22/vtiger-crm-510-is-released-major-milestone/#comment-120363 Regards, Prasad vtiger Team On 7/26/09, Steven Sher wrote: > > Never mind just a broken mirror on sourceforge, used another mirror > worked fine. > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Steven > Sher > *Sent:* 26 July 2009 02:21 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] problem downloading customer portal > addon > > > > I cant seem to download the customer portal addon for vtigercrm5.1 the link > seems to be invalid? > > > > > > > > > > > > > > _______________________________________________ > 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/20090726/0eaa6329/attachment-0001.html From prasad at vtiger.com Sun Jul 26 14:23:44 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:53:44 +0530 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: <4A6ADD45.5010206@gmail.com> References: <4A6ADD45.5010206@gmail.com> Message-ID: <39d18b250907261123w7f59ea4bv920118fea36c4dbb@mail.gmail.com> Hi Eugene, Your language translation pack should include module translation for (Services, ServiceContracts, Recycle Bin...) Refer to some of the translated version at: http://www.vtiger.com//index.php?option=com_jreviews&task=list&jr_vtigerversions=Version+5.1&Itemid=185 Regards, Prasad vtiger Team On 7/25/09, Eugene Babiy wrote: > > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > > -- > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > _______________________________________________ > 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/20090726/9a3d7dec/attachment-0001.html From fp at crm-now.de Sun Jul 26 15:28:57 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Sun, 26 Jul 2009 21:28:57 +0200 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: References: Message-ID: <006401ca0e27$52e0d460$f8a27d20$@de> Eugene, for a patch see http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 Regards, Frank > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > -- > Best regards, Eugene Babiy From ml at arceva.fr Sun Jul 26 19:03:26 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 01:03:26 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module Message-ID: <4A6CE0BE.5030204@arceva.fr> Hi All, I have some problems with the French language pack We have translate *all *strings of the Documents Modules and when we use the french language, all of the column Action at the right don't appear when we look a download file. I apply this patch http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 and nothing change In english the 3 button work perfectly The language pack is available at : http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip Thanks for your help Bruno From dfar2008 at gmail.com Sun Jul 26 21:19:41 2009 From: dfar2008 at gmail.com (ding jianting) Date: Mon, 27 Jul 2009 09:19:41 +0800 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: <20090724114040.161555wp33un50g0@app.ascellatech.com> References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: First backup user_privileges_215.php file . Then delete user_privileges_215.php and edit the user with userid 215. On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > Hello all, > I tried to post this to vtiger forums, but it's not responding, > hence posting this to mailing list as it is very much critical for me. > > I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am > using LDAP authentication and authentication is working fine. But when > I created a new user I got the following error message: > > [code] > Parse error: syntax error, unexpected ';' in > /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 > [/code] > > Here is the contents of the above file: > > > [code] > //This is the access privilege file > $is_admin=false; > $current_user_roles=''; > $current_user_parent_role_seq=''; > $current_user_profiles=array(); > $profileGlobalPermission=; > $profileTabsPermission=; > $profileActionPermission=array(); > $current_user_groups=array(); > $subordinate_roles=array(); > $parent_roles=array(); > $subordinate_roles_users=array(); > > $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, > > Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); > ?> > [/code] > > It seems the user is not being added to the database. I have also > tried to use the SQL authentication, but no luck so far. Can somebody > provide some hints? > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090727/823c4888/attachment-0001.html From manilal at ejyothi.com Mon Jul 27 01:12:58 2009 From: manilal at ejyothi.com (Manilal K M) Date: Mon, 27 Jul 2009 10:42:58 +0530 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: <20090727104258.17734ne4i3dw18ys@app.ascellatech.com> I missed one fact: 1. The user is not created in the database and hence I can't edit it. Quoting ding jianting : > First backup user_privileges_215.php file . > Then delete user_privileges_215.php and edit the user with userid 215. > > On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > >> Hello all, >> I tried to post this to vtiger forums, but it's not responding, >> hence posting this to mailing list as it is very much critical for me. >> >> I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am >> using LDAP authentication and authentication is working fine. But when >> I created a new user I got the following error message: >> >> [code] >> Parse error: syntax error, unexpected ';' in >> /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 >> [/code] >> >> Here is the contents of the above file: >> >> >> [code] >> > //This is the access privilege file >> $is_admin=false; >> $current_user_roles=''; >> $current_user_parent_role_seq=''; >> $current_user_profiles=array(); >> $profileGlobalPermission=; >> $profileTabsPermission=; >> $profileActionPermission=array(); >> $current_user_groups=array(); >> $subordinate_roles=array(); >> $parent_roles=array(); >> $subordinate_roles_users=array(); >> >> $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, >> >> Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); >> ?> >> [/code] >> >> It seems the user is not being added to the database. I have also >> tried to use the SQL authentication, but no luck so far. Can somebody >> provide some hints? >> >> regards >> >> -- >> Manilal K M >> eJyothi Services >> http://www.ejyothi.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > -- Manilal K M eJyothi Services http://www.ejyothi.com From varma at vtiger.com Mon Jul 27 05:04:36 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 14:34:36 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM IST). Sorry for the inconvenience. We shall update you as soon as they are up and running again. -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1a8a4c43/attachment-0001.html From djeandot at gmail.com Mon Jul 27 05:43:54 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 11:43:54 +0200 Subject: [Vtigercrm-developers] Keep the id numerotation in vtiger 5.1.0 Message-ID: Hello, How can I keep the numerotation that I have in vtiger 5.0.4 (for example tickets 1, 2, 1500...) ? Because the numerotation in vtiger 5.1.0, the numerotation is bizarre (CON1...). Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/85854aa9/attachment-0001.html From eugene.babiy at gmail.com Mon Jul 27 05:42:07 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Mon, 27 Jul 2009 12:42:07 +0300 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6CE0BE.5030204@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> Message-ID: <4A6D766F.1000005@gmail.com> Hi Bruno. I've tested German Language Pack for 5.1.0 and it also has a problems with displaying of Actions list. I've found that the problem is only in the label "File Name". When I leave it untranslated in Langpack, everything else displays Ok, but when it's translated, Actions list is not showing. So you can just leave that label untranslated until some patch will appear. Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy Fusioncore ?????: > Hi All, > > I have some problems with the French language pack > We have translate *all *strings of the Documents Modules and when we use > the french language, all of the column Action at the right don't appear > when we look a download file. > I apply this patch > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > and nothing change > In english the 3 button work perfectly > The language pack is available at : > http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > > Thanks for your help > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/b6802013/attachment-0001.vcf From StevenS at techtron.co.za Mon Jul 27 05:51:14 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Mon, 27 Jul 2009 11:51:14 +0200 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? Message-ID: I am looking for anybody who does support/development work for vTiger in South Africa, preferably Cape Town. Thanks Steven -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/791e68fe/attachment-0001.html From varma at vtiger.com Mon Jul 27 05:51:38 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 15:21:38 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) are up and running now. Please check it and let us know if you have any problem access them. On Mon, Jul 27, 2009 at 2:34 PM, Varma wrote: > Hi All, > > Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( > blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, > 2009 ( 2:45PM IST to 3:15 PM IST). > > Sorry for the inconvenience. We shall update you as soon as they are up and > running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1b81f768/attachment-0001.html From galdes at internode.on.net Mon Jul 27 05:57:23 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Mon, 27 Jul 2009 19:27:23 +0930 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? In-Reply-To: References: Message-ID: <4A6D7A03.3030700@internode.on.net> Hi Steven, We are hosting and supporting vtiger but we are in Australia. Let me know if you have trouble and we might be able to help you out. Cheers, -Andrew G Steven Sher wrote: > > I am looking for anybody who does support/development work for vTiger > in South Africa, preferably Cape Town. > > > > Thanks > > Steven > > > -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/3ed980d4/attachment-0001.html From ml at arceva.fr Mon Jul 27 06:38:22 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 12:38:22 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D766F.1000005@gmail.com> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> Message-ID: <4A6D839E.4040702@arceva.fr> Hi Eugene, Your solution doesn't work with success with the french pack If anyone have an other idea , Thanks, Bruno Eugene Babiy a ?crit : > Hi Bruno. > > I've tested German Language Pack for 5.1.0 and it also has a problems > with displaying of Actions list. I've found that the problem is only in > the label "File Name". When I leave it untranslated in Langpack, > everything else displays Ok, but when it's translated, Actions list is > not showing. > > So you can just leave that label untranslated until some patch will appear. > > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > > Fusioncore ?????: > >> Hi All, >> >> I have some problems with the French language pack >> We have translate *all *strings of the Documents Modules and when we use >> the french language, all of the column Action at the right don't appear >> when we look a download file. >> I apply this patch >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 >> and nothing change >> In english the 3 button work perfectly >> The language pack is available at : >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip >> >> Thanks for your help >> >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com From nitin at vtiger.com Mon Jul 27 08:14:44 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Mon, 27 Jul 2009 05:14:44 -0700 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D839E.4040702@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: Hi, You can try the fix suggested in the comments of the following ticket, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 try this, it will fix the issue. Regards, Nitin Goyal Vtiger Team On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore wrote: > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a problems > > with displaying of Actions list. I've found that the problem is only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions list is > > not showing. > > > > So you can just leave that label untranslated until some patch will > appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and when we use > >> the french language, all of the column Action at the right don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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/20090727/34482353/attachment-0001.html From ml at arceva.fr Mon Jul 27 08:53:54 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 14:53:54 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: <4A6DA362.8040000@arceva.fr> Thanks, It work Bruno Nitin Goyal a ?crit : > Hi, > > You can try the fix suggested in the comments of the following ticket, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 > > try this, it will fix the issue. > > Regards, > Nitin Goyal > Vtiger Team > > > On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore > wrote: > > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a > problems > > with displaying of Actions list. I've found that the problem is > only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions > list is > > not showing. > > > > So you can just leave that label untranslated until some patch > will appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and > when we use > >> the french language, all of the column Action at the right > don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From djeandot at gmail.com Mon Jul 27 09:34:04 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 15:34:04 +0200 Subject: [Vtigercrm-developers] Modify the "Send Mail" functionnality Message-ID: Hello, I try to modify the functionnality of the button "Send Mail", but I don't have success. I just want send mail to the main adress and don't have the choice between the mail or yahoo adress. How can I do to make that up ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1c7510c6/attachment-0001.html From asha at vtiger.com Mon Jul 27 11:09:40 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 20:39:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help Message-ID: Hi All, People have been reporting us a major issue with migration, where the script that changes the MyISAM tables to InnoDB tables is not working. We are trying to reproduce this issue in our test labs and have not succeeded yet. Whole problem is around the query 'SHOW TABLE STATUS FROM '. Would be great if anyone can provide us a helping hand in analyzing or resolving the issue. Possibly if anyone can reproduce this issue on their servers and can give us the access to the server, that would help a lot. Hoping to get a resolution for this issue soon so that people can migrate to vtiger 5.1.0 smoothly. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/366a9fb2/attachment-0001.html From djeandot at gmail.com Mon Jul 27 11:23:49 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 17:23:49 +0200 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi, What are we supposed to have like error ? Regards, 2009/7/27 Asha > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM > '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on their > servers and can give us the access to the server, that would help a lot. > > Hoping to get a resolution for this issue soon so that people can migrate > to vtiger 5.1.0 smoothly. > > -- > Regards, > Asha > 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/20090727/639e43f4/attachment-0001.html From asha at vtiger.com Mon Jul 27 12:28:30 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 21:58:30 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi All, The migration error would look something like below: ---------------------------------------------- Notice: Undefined index: ajax in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 15 Notice: Undefined index: web161-vtiger_localhost:3306_HealthApproved in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 29 Notice: Undefined index: updateTableEngine in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 31 Fatal error: Call to a member function NumRows() on a non-object in /home/sites/yourdomian/public_html/crm/include/utils/DBHealthCheck.php on line 58 ---------------------------------------------- On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/6980aa80/attachment-0001.html From alanslists at gmail.com Mon Jul 27 12:34:27 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Mon, 27 Jul 2009 17:34:27 +0100 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: On 27/07/09 16:09, Asha wrote: > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on > their servers and can give us the access to the server, that would help > a lot. > > Hoping to get a resolution for this issue soon so that people can > migrate to vtiger 5.1.0 smoothly. I had some issues with the upgrade but not to do with the InnoDB table conversion. The bog problem was that the database upgrade routine did not check the version info in the vtiger_version table and when I stupidly backed up a 5.0.4 db but told the install script it was a 5.1.0 RC it went through happily and completed. But the install was completely borked. Took me a while to work out what I was doing wrong... But the InnoDB change has worked fine for me several times over. PHP version: PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 MySQL version: Ver 14.12 Distrib 5.0.51a, for debian-linux-gnu (i486) using readline 5.2 HTH Alan From prasad at vtiger.com Mon Jul 27 12:42:59 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 27 Jul 2009 22:12:59 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Hi, If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' returns NULL value result for InnoDB tables. How to reproduce the issue? You will end up with the described result if you have the following MySQL configuration. [mysqld] default-storage-engine=MyISAM skip-innodb Please note, for vtiger CRM to work properly you will need to have InnoDB support enabled in MySQL. How to avoid the issue? [mysqld] default-storage-engine=INNODB #skip-innodb Regards, Prasad vtiger Team On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/d129fa52/attachment-0001.html From ml at arceva.fr Mon Jul 27 20:03:51 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:03:51 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page Message-ID: <4A6E4067.8020304@arceva.fr> Hi Team, I found another hardcode strings or missing modules. The gmail bookmarklet is hardcode on the Bookmarklet.tpl file Where I can add the strings ? I test in /modules/Emails/language an /include/language without success An other issue who can be critical in non english speeking country is the feedback link who point on a page of vtiger.com site Regards, Bruno French-vtiger Manager From ml at arceva.fr Mon Jul 27 20:18:54 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:18:54 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page In-Reply-To: <4A6E4067.8020304@arceva.fr> References: <4A6E4067.8020304@arceva.fr> Message-ID: <4A6E43EE.7040601@arceva.fr> Fusioncore a ?crit : > Hi Team, > > I found another hardcode strings or missing modules. The gmail > bookmarklet is hardcode on the Bookmarklet.tpl file > Where I can add the strings ? I test in /modules/Emails/language an > /include/language without success > > An other issue who can be critical in non english speeking country is > the feedback link who point on a page of vtiger.com site > > Regards, > Bruno > French-vtiger Manager > I add some string: On the home page widget : the edit, refresh, hide and close button alternate label and when we clic on the edit button, the two button save and close are hardcode (file /Smarty/templates/Home/MainHomeBlock.tpl around line 20) From djeandot at gmail.com Wed Jul 29 04:46:27 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 10:46:27 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview Message-ID: Hi, I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a filter with the ticket ID in the first column as you can see here : http://img151.imageshack.us/img151/6218/filterh.jpg I saved it but the tickets ID is not on the listview : http://img148.imageshack.us/img148/133/listview.jpg How can I fix that ? Regards, -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/3ba37324/attachment-0001.html From galdes at internode.on.net Wed Jul 29 05:28:30 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Wed, 29 Jul 2009 18:58:30 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos Message-ID: <4A70163E.8020005@internode.on.net> Hello all, We've developed a training video pack for vTiger CRM. I'd like some feedback on the supposed demand for such a training tool. Before we spend too much time on the final product development and marketing of the video pack, i'd like to know if you, your clients or peers would benefit from such a tool. Feel free to post off list as this might infringe on list policy. -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From sandeep at vtiger.com Wed Jul 29 07:02:22 2009 From: sandeep at vtiger.com (Sandeep P) Date: Wed, 29 Jul 2009 16:32:22 +0530 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: References: Message-ID: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Hi Denis, Kindly make the following change on your source in order to resolve the issue you have mentioned. In file *modules/CustomView/CustomView.php* at *line no 965* in function getCvColumnListSQL add the code provided below else if($list[1] == 'crmid'){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } after the below mentioned lines if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } Check if the above changes help you in solving the issue. On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > Hi, > > I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a > filter with the ticket ID in the first column as you can see here : > http://img151.imageshack.us/img151/6218/filterh.jpg > > I saved it but the tickets ID is not on the listview : > http://img148.imageshack.us/img148/133/listview.jpg > > How can I fix that ? > > Regards, > > > -- > Jean Denis > DotRiver pr?sente EluRiver, une approche unique pour la bureautique des > ?lus de France. > http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html > > Pas ? pas, agissons au quotidien pour pr?server notre environnement. > N'imprimez que si n?cessaire, > r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les > solutions DotRiver. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/aa505b8d/attachment-0001.html From asha at vtiger.com Wed Jul 29 07:01:40 2009 From: asha at vtiger.com (Asha) Date: Wed, 29 Jul 2009 16:31:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> References: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Message-ID: Hi All, Thanks for your support. We have finally analyzed the issue and found the quick fix for it. Please follow the trac ticket below for more details: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6205 On 7/27/09, Prasad wrote: > > Hi, > > If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' > returns NULL value result for InnoDB tables. > > How to reproduce the issue? > You will end up with the described result if you have the following MySQL > configuration. > [mysqld] > default-storage-engine=MyISAM > skip-innodb > > Please note, for vtiger CRM to work properly you will need to have InnoDB > support enabled in MySQL. > > How to avoid the issue? > [mysqld] > default-storage-engine=INNODB > #skip-innodb > > Regards, > Prasad > vtiger Team > > On 7/27/09, den jean wrote: >> >> Hi, >> What are we supposed to have like error ? >> Regards, >> >> 2009/7/27 Asha >> >>> Hi All, >>> >>> People have been reporting us a major issue with migration, where the >>> script that changes the MyISAM tables to InnoDB tables is not working. >>> >>> We are trying to reproduce this issue in our test labs and have not >>> succeeded yet. >>> >>> Whole problem is around the query 'SHOW TABLE STATUS FROM >>> '. >>> >>> Would be great if anyone can provide us a helping hand in analyzing or >>> resolving the issue. Possibly if anyone can reproduce this issue on their >>> servers and can give us the access to the server, that would help a lot. >>> >>> Hoping to get a resolution for this issue soon so that people can migrate >>> to vtiger 5.1.0 smoothly. >>> >>> -- >>> Regards, >>> Asha >>> vtiger Team >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/e05ab00a/attachment-0001.html From djeandot at gmail.com Wed Jul 29 07:52:39 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 13:52:39 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> References: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Message-ID: Thank you so much. It works well. Regards, 2009/7/29 Sandeep P > Hi Denis, > > Kindly make the following change on your source in order to resolve the > issue you have mentioned. > > In file *modules/CustomView/CustomView.php* at *line no 965* > in function getCvColumnListSQL add the code provided below > > else if($list[1] == 'crmid'){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > after the below mentioned lines > > if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > Check if the above changes help you in solving the issue. > > > On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > >> Hi, >> >> I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created >> a filter with the ticket ID in the first column as you can see here : >> http://img151.imageshack.us/img151/6218/filterh.jpg >> >> I saved it but the tickets ID is not on the listview : >> http://img148.imageshack.us/img148/133/listview.jpg >> >> How can I fix that ? >> >> Regards, >> >> >> -- >> Jean Denis >> DotRiver pr?sente EluRiver, une approche unique pour la bureautique des >> ?lus de France. >> http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html >> >> Pas ? pas, agissons au quotidien pour pr?server notre environnement. >> N'imprimez que si n?cessaire, >> r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant >> les solutions DotRiver. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Sandeep > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/53da1b5b/attachment-0001.html From j4c0b1 at gmail.com Wed Jul 29 09:45:29 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Wed, 29 Jul 2009 10:45:29 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70163E.8020005@internode.on.net> References: <4A70163E.8020005@internode.on.net> Message-ID: Can you send a link that we can see to post a feedback ? I think its very usefull for new vtiger users. 2009/7/29 Andrew Galdes > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/b4e8841d/attachment-0001.html From prasad at vtiger.com Wed Jul 29 10:34:13 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:04:13 +0530 Subject: [Vtigercrm-developers] Mobile Extension Module for vtiger CRM 5.1.0 Message-ID: <39d18b250907290734i52f22dabl5085f3ce0d0c36aa@mail.gmail.com> Dear members, The first version of Mobile (web client) is now available for vtiger CRM 5.1.0 Refer the blog post: http://www.vtiger.com/blogs/2009/07/29/mobile-extension-module-for-vtiger-crm-510/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/8167bb03/attachment-0001.html From prasad at vtiger.com Wed Jul 29 11:22:07 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:52:07 +0530 Subject: [Vtigercrm-developers] Do you like using vtiger CRM? Write a review for us. Message-ID: <39d18b250907290822u62d44399h28797229102b3b4b@mail.gmail.com> Dear members, Take your few minutes and write a review for us at https://sourceforge.net/projects/vtigercrm/ Hoping to see more 'Thumbs up' on the reviews. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/2e5a5a49/attachment-0001.html From galdes at internode.on.net Wed Jul 29 19:43:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 30 Jul 2009 09:13:33 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> Message-ID: <4A70DEA5.9040609@internode.on.net> Thanks all who replied, http://www.impresser.com.au/vtigercrm-video/ You can see a demo at the above URL. The above link is nothing fancy but a directory listing at this stage. The video is 6.87MB in WMV format. It's the chapter on Contact management. I'd like to have a few others uploaded as they are ready. Sorry for the WMV format but for testing it is simplest. Note that the video set was recorded (screen and sound only) during real training so the language used is very natural - possibly not what you'd expect from a formal training set. Also, it's intended to have these for sale when completed. Your input till then is appreciated. -Andrew G Cicero Jacobi Filho wrote: > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > > > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090730/5f3b8b52/attachment-0001.html From ml at arceva.fr Thu Jul 30 11:54:13 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 17:54:13 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: <4A71C225.8070006@arceva.fr> Hi, The vtiger website and vtiger forum are always extremly slow and produce time out The forum first page appear after around 2min and a search after 4-5 min Varma a ?crit : > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) are up and running now. > > Please check it and let us know if you have any problem access them. > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > wrote: > > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) will be down for > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > IST). > > Sorry for the inconvenience. We shall update you as soon as they > are up and running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > > > > > -- > Thanks & Regards, > Varma. > VtigerTeam. > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From ml at arceva.fr Thu Jul 30 12:33:46 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 18:33:46 +0200 Subject: [Vtigercrm-developers] user creation Message-ID: <4A71CB6A.1010300@arceva.fr> Hi All, Does anyone now what is the function who save a new user on the database ? I search all the day and I just found the function who send the email to the new user (in /modules/users/Save.php around line 185) Thanks for your help Bruno From prasad at vtiger.com Thu Jul 30 12:46:39 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 30 Jul 2009 22:16:39 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A71C225.8070006@arceva.fr> References: <4A71C225.8070006@arceva.fr> Message-ID: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Hi, Sorry for the inconvenience. The last maintenance did not give us much benefit, Our IT team is planning to boost hardware to our servers and working out on a suitable timing to get it done. We will keep you posted before next maintenance and get the speed back. Regards, Prasad On 7/30/09, Fusioncore wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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/20090730/28888849/attachment-0001.html From asha at vtiger.com Thu Jul 30 14:46:54 2009 From: asha at vtiger.com (Asha) Date: Fri, 31 Jul 2009 00:16:54 +0530 Subject: [Vtigercrm-developers] user creation In-Reply-To: <4A71CB6A.1010300@arceva.fr> References: <4A71CB6A.1010300@arceva.fr> Message-ID: Hi Bruno, save function of modules/Users/Users.php is triggered on save of a User. This function in turn triggers saveentity -> insertIntoEntityTable -> which will actually insert the data to required tables (The tables to which the values needs to be inserted is picked from $tab_name variable defined in modules/Users/Users.php) On 7/30/09, Fusioncore wrote: > > Hi All, > > Does anyone now what is the function who save a new user on the database ? > I search all the day and I just found the function who send the email to > the new user (in /modules/users/Save.php around line 185) > > Thanks for your help > > Bruno > _______________________________________________ > 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/20090731/3725fdc6/attachment-0001.html From carloz at gnumerica.org Fri Jul 31 03:11:18 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Fri, 31 Jul 2009 09:11:18 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Message-ID: <4A729916.5060507@gnumerica.org> Hi, I just posted a brief announcement on the italian subforum regarding this (yesterday a number of duplicated posts appeared there, since people are not aware of what's happening and end up "re-submitting" the same article). Keep us updated, Carlo ps: if you are thinking about moving to the (very scalable ;-) Amazon AWS and need some experienced professionals, drop a line :-D Prasad ha scritto: > Hi, > > Sorry for the inconvenience. > > The last maintenance did not give us much benefit, Our IT team is > planning to boost hardware to our servers and > working out on a suitable timing to get it done. > > We will keep you posted before next maintenance and get the speed back. > > Regards, > Prasad > > On 7/30/09, *Fusioncore* > wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > >> wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 From prasad at vtiger.com Fri Jul 31 03:14:32 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 31 Jul 2009 12:44:32 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A729916.5060507@gnumerica.org> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> <4A729916.5060507@gnumerica.org> Message-ID: <39d18b250907310014q94d6a00t739c27ca26ff86c8@mail.gmail.com> Carlo, Thank you for the support. Regards, Prasad On 7/31/09, Carlo Beschi wrote: > > Hi, > > I just posted a brief announcement on the italian subforum regarding > this (yesterday a number of duplicated posts appeared there, since > people are not aware of what's happening and end up "re-submitting" the > same article). > > Keep us updated, > > Carlo > > ps: if you are thinking about moving to the (very scalable ;-) Amazon > AWS and need some experienced professionals, drop a line :-D > > > > Prasad ha scritto: > > > Hi, > > > > Sorry for the inconvenience. > > > > The last maintenance did not give us much benefit, Our IT team is > > planning to boost hardware to our servers and > > working out on a suitable timing to get it done. > > > > We will keep you posted before next maintenance and get the speed back. > > > > Regards, > > Prasad > > > > > On 7/30/09, *Fusioncore* > wrote: > > > > Hi, > > The vtiger website and vtiger forum are always extremly slow and > produce > > time out > > The forum first page appear after around 2min and a search after 4-5 > min > > > > Varma a ?crit : > > > Hi All, > > > > > > Vtiger website (vtiger.com > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > ) are up and running now. > > > > > > > > Please check it and let us know if you have any problem access > them. > > > > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > > > > > >> wrote: > > > > > > Hi All, > > > > > > > > Vtiger website (vtiger.com > > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > > ) will be down for > > > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 > PM > > > IST). > > > > > > Sorry for the inconvenience. We shall update you as soon as > they > > > are up and running again. > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > > > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > _______________________________________________ > 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/20090731/2ab00b1d/attachment-0001.html From fp at crm-now.de Fri Jul 31 10:19:50 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Fri, 31 Jul 2009 16:19:50 +0200 Subject: [Vtigercrm-developers] accessing the forum impossible In-Reply-To: References: Message-ID: <010a01ca11e9$f78ee630$e6acb290$@de> At least for me it is impossible to login into the vtiger forum today in order to respond to some postings. This is very unfortunate. From ml at arceva.fr Fri Jul 31 12:14:52 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:14:52 +0200 Subject: [Vtigercrm-developers] debug Message-ID: <4A73187C.4090200@arceva.fr> Hi all I search to active debug on 5.1.0 but the method used on the 504 didn't work Do you have an idea ? Thanks, Bruno From joe at tsolucio.com Fri Jul 31 12:28:30 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:28:30 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A73187C.4090200@arceva.fr> References: <4A73187C.4090200@arceva.fr> Message-ID: <4A731BAE.2040808@tsolucio.com> We now have a global performance config file, you have to activate it there first: config.performance.php Joe TSolucio Fusioncore escribi?: > Hi all > I search to active debug on 5.1.0 but the method used on the 504 didn't work > Do you have an idea ? > Thanks, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From ml at arceva.fr Fri Jul 31 12:36:47 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:36:47 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731BAE.2040808@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> Message-ID: <4A731D9F.9010703@arceva.fr> Thanks Joe but, I activate debug in this file but I don't have any result. I search the new function who provide the same result than : //$this->database->debug = true; log4php.rootLogger=DEBUG,A1 Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > We now have a global performance config file, you have to activate it > there first: > > config.performance.php > > Joe > TSolucio > > Fusioncore escribi?: > >> Hi all >> I search to active debug on 5.1.0 but the method used on the 504 didn't work >> Do you have an idea ? >> Thanks, >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From joe at tsolucio.com Fri Jul 31 12:50:03 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:50:03 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731D9F.9010703@arceva.fr> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> Message-ID: <4A7320BB.1050708@tsolucio.com> You have to activate debug in this new file: $this->database->debug = true; and THEN, configure log4php.properties as we did before Joe TSolucio Fusioncore escribi?: > Thanks Joe but, > I activate debug in this file but I don't have any result. > I search the new function who provide the same result than : > > //$this->database->debug = true; > log4php.rootLogger=DEBUG,A1 > > Thanks, > Bruno > > French-vtiger Manager > > > > Joe Bordes a ?crit : > >> We now have a global performance config file, you have to activate it >> there first: >> >> config.performance.php >> >> Joe >> TSolucio >> >> Fusioncore escribi?: >> >> >>> Hi all >>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>> Do you have an idea ? >>> Thanks, >>> Bruno >>> _______________________________________________ >>> 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/20090731/b0fca5d2/attachment-0001.html From ml at arceva.fr Fri Jul 31 15:58:09 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 21:58:09 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A7320BB.1050708@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> <4A7320BB.1050708@tsolucio.com> Message-ID: <4A734CD1.1080202@arceva.fr> I do it but nothing work correctly I active in the new file and I modify the file LoggerPropertyConfigurator.php and nothing work And I found function setDebug($value) { $this->database->debug = $value; } in the peardatabase file. Where I can change this var : $value ? Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > You have to activate debug in this new file: > > $this->database->debug = true; > > and THEN, configure log4php.properties as we did before > > Joe > TSolucio > > Fusioncore escribi?: >> Thanks Joe but, >> I activate debug in this file but I don't have any result. >> I search the new function who provide the same result than : >> >> //$this->database->debug = true; >> log4php.rootLogger=DEBUG,A1 >> >> Thanks, >> Bruno >> >> French-vtiger Manager >> >> >> >> Joe Bordes a ?crit : >> >>> We now have a global performance config file, you have to activate it >>> there first: >>> >>> config.performance.php >>> >>> Joe >>> TSolucio >>> >>> Fusioncore escribi?: >>> >>> >>>> Hi all >>>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>>> Do you have an idea ? >>>> Thanks, >>>> Bruno >>>> _______________________________________________ >>>> 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 >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From j4c0b1 at gmail.com Fri Jul 31 17:17:20 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Fri, 31 Jul 2009 18:17:20 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70DEA5.9040609@internode.on.net> References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: teh qualitty is very poor. I can not hear or understand what is beeing tlaked at the video and the image is fuzzy with much noise. Do y have something better ? hasta -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi 2009/7/29 Andrew Galdes > Thanks all who replied, > > http://www.impresser.com.au/vtigercrm-video/ > > You can see a demo at the above URL. The above link is nothing fancy but a > directory listing at this stage. The video is 6.87MB in WMV format. It's the > chapter on Contact management. I'd like to have a few others uploaded as > they are ready. Sorry for the WMV format but for testing it is simplest. > > Note that the video set was recorded (screen and sound only) during real > training so the language used is very natural - possibly not what you'd > expect from a formal training set. Also, it's intended to have these for > sale when completed. Your input till then is appreciated. > > -Andrew G > > > Cicero Jacobi Filho wrote: > > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > >> Hello all, >> >> We've developed a training video pack for vTiger CRM. I'd like some >> feedback on the supposed demand for such a training tool. Before we >> spend too much time on the final product development and marketing of >> the video pack, i'd like to know if you, your clients or peers would >> benefit from such a tool. >> >> Feel free to post off list as this might infringe on list policy. >> >> -- >> -Andrew Galdes >> Managing Director >> Impresser Pty Ltd >> >> Ph: 08 8357 2024 >> Mb: 0422 927 598 >> www.impresser.com.au >> >> I.T Services To Science Companies >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > > ------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598www.impresser.com.au > > I.T Services To Science Companies > > > _______________________________________________ > 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/20090731/637ccd98/attachment-0001.html From galdes at internode.on.net Fri Jul 31 20:07:14 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 09:37:14 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A738732.6030404@internode.on.net> Thanks, Can you tell me which media player and OS you're using? At this end (and others have agreed) the codec is less then a perfect choice. We'll recompile with a different codec. The version you saw was with WMV. However, we've already started recompiling with MOV which is giving us better results. -Andrew G Cicero Jacobi Filho wrote: > teh qualitty is very poor. > > I can not hear or understand what is beeing tlaked at the video and > the image is fuzzy with much noise. > > Do y have something better ? > > hasta ce Companies From lee at leev.net Wed Jul 1 00:23:02 2009 From: lee at leev.net (Lee Valentine) Date: Wed, 1 Jul 2009 14:23:02 +1000 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi Ding, That was just applied to 5.1rc2. However I did the query originally in 5.0.4. Thanks, Lee 2009/7/1 ding jianting : > Hi,Lee > What is version of your vtigerCRM? > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: >> >> Hey Guys, >> >> We were having performance issues with the crm taking ages to load so >> I had all the queries being executed printed to the screen with the >> duration each query was taking. I found: >> >> select distinct(setype) from vtiger_crmentity where crmid in (select >> parent_id from vtiger_troubletickets) >> 106.894966125 seconds. >> >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in >> function getSalesRelatedName) >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in >> (select ". $adb->sql_escape_string($fieldname)." from ". >> $adb->sql_escape_string($tablename).")"; >> >> I replaced it with the following: >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN >> ".$adb->sql_escape_string($tablename)." t ON >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; >> >> And received the result: >> select distinct(setype) from vtiger_crmentity c INNER JOIN >> vtiger_troubletickets t ON t.parent_id = c.crmid >> 0.0270490646362 seconds. >> >> This has given our crm a MAJOR performance increase. >> >> Thanks, >> Lee >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > ----------------------------------------------------------------------- > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From asha at vtiger.com Wed Jul 1 03:07:48 2009 From: asha at vtiger.com (Asha) Date: Wed, 1 Jul 2009 12:37:48 +0530 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi All, This issue is reported on trac ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6108) and we have recently integrated the changes. On 7/1/09, Lee Valentine wrote: > > Hi Ding, > > That was just applied to 5.1rc2. However I did the query originally in > 5.0.4. > > Thanks, > Lee > > > 2009/7/1 ding jianting : > > > Hi,Lee > > What is version of your vtigerCRM? > > > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: > >> > >> Hey Guys, > >> > >> We were having performance issues with the crm taking ages to load so > >> I had all the queries being executed printed to the screen with the > >> duration each query was taking. I found: > >> > >> select distinct(setype) from vtiger_crmentity where crmid in (select > >> parent_id from vtiger_troubletickets) > >> 106.894966125 seconds. > >> > >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in > >> function getSalesRelatedName) > >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in > >> (select ". $adb->sql_escape_string($fieldname)." from ". > >> $adb->sql_escape_string($tablename).")"; > >> > >> I replaced it with the following: > >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN > >> ".$adb->sql_escape_string($tablename)." t ON > >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; > >> > >> And received the result: > >> select distinct(setype) from vtiger_crmentity c INNER JOIN > >> vtiger_troubletickets t ON t.parent_id = c.crmid > >> 0.0270490646362 seconds. > >> > >> This has given our crm a MAJOR performance increase. > >> > >> Thanks, > >> Lee > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > > > > _______________________________________________ > > 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/20090701/71ed0548/attachment-0002.html From asha at vtiger.com Fri Jul 3 12:02:25 2009 From: asha at vtiger.com (Asha) Date: Fri, 3 Jul 2009 21:32:25 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 released Message-ID: Hi All, We are glad to announce the availability of 5.1.0 RC today. This release covers several new features, enhancements and bug fixes. Download information is available at this link, and view the RC Release Notes here. Online Demo: http://en.vtiger.com/wip We have put up some demo tutorials for installation and migration that are available here . *Please evaluate it and share your feedback.* Report any issues you notice at http://trac.vtiger.com *with version set to 5.1.0 RC*. Make sure to provide complete details of the issue. PS: Did you get a chance to Vote for vtiger CRM ( Sourceforge CCA09 ) -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090703/9cdde483/attachment-0002.html From christophe-bouchet at laposte.net Mon Jul 6 09:44:50 2009 From: christophe-bouchet at laposte.net (Christophe BOUCHET) Date: Mon, 06 Jul 2009 15:44:50 +0200 Subject: [Vtigercrm-developers] Cosmetics in vtiger RC 5.1.0 Message-ID: <1246887890.3235.26.camel@christophe-laptop> Hi, When creating an account, lead, contact, lack a space between the tabs (file /Smarty/templates/CreateView.tpl missing between lines 108 and 109 ' '), and CSS can not be applied to the block 'Description' file /Smarty/templates/EditViewUI.tpl line 116 missing class="dvtCellInfo") Thank you Best regards Christophe BOUCHET From djeandot at gmail.com Fri Jul 10 04:50:46 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 10:50:46 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC Message-ID: Hello, I try to migrate my CRM into the latest version for testing but I get a problem during the process of migration. When I specify the name of database and after the "next" step, I get this : *Fatal error*: Call to a member function NumRows() on a non-object in * /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try to migrate this 5.0.4 to 5.1 RC, I get an error. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/98dbebcb/attachment-0002.html From stefan.lorenz at burdadirect.de Fri Jul 10 06:56:48 2009 From: stefan.lorenz at burdadirect.de (DJLorry) Date: Fri, 10 Jul 2009 03:56:48 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Message-ID: <24408556.post@talk.nabble.com> Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From asha at vtiger.com Fri Jul 10 07:21:59 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:51:59 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: <24408556.post@talk.nabble.com> References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry wrote: > > > Hello, > how can I add a second account or person field in these modules ? > The problem can't be solved by just adding a custom field and changing the > uitype. (Which works when no account field already exits, though) > The uitype 50 changes the custom field to contain the button for the > popup-window for account-selection. > The problem is that a thereby selected account is stored in the modul's > default account field whereas the custom field stays blank. I have added a > query to show the account if I put an accountid in the customfield's table > in mysql. So the remainig problem is how to get vtiger to store the > selected > account's Id in the custom field and not in the account_id field. Where is > the connection between popup window,save button and the insertion into the > database ? How can I get vtiger not to treat both the custom and the > already > existing field as the same when storing the account-id ? The same problem > occurs with a custom person field if one is already part of a module by > default. > > I hope someone is able to help. > > Regards > Stefan > > > > -- > View this message in context: > http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html > Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/bc8c2f9c/attachment-0002.html From asha at vtiger.com Fri Jul 10 07:23:18 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:53:18 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, This would happen if the connection to your database fails with the database information you have provided. Can you brief out the exact steps followed to migrate from 5.0.4 to 5.1.0? On 7/10/09, den jean wrote: > > Hello, > > I try to migrate my CRM into the latest version for testing but I get a > problem during the process of migration. > > When I specify the name of database and after the "next" step, I get this : > > > *Fatal error*: Call to a member function NumRows() on a non-object in * > /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* > > I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try > to migrate this 5.0.4 to 5.1 RC, I get an error. > > Regards, > > _______________________________________________ > 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/20090710/a1db76f6/attachment-0002.html From djeandot at gmail.com Fri Jul 10 08:27:04 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 14:27:04 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Thanks you for your answer. So I start to click on "Migrate" and I'm on the "Installation Check" with all the values to YES and I choose all the optional modules then I get that : Previous Installation Path : /var/www/vtiger504/ Previous Installation Version : 5.0.4 Admin Username : I give my admin name (but it's not the same as phpmyadmin) Admin Password : ****** Database Name for Migraiton : I give the database of the previous installation. And then I click on "Next", I get the error. Regards, 2009/7/10 Asha > Hi, > > This would happen if the connection to your database fails with the > database information you have provided. Can you brief out the exact steps > followed to migrate from 5.0.4 to 5.1.0? > > On 7/10/09, den jean wrote: > >> Hello, >> >> I try to migrate my CRM into the latest version for testing but I get a >> problem during the process of migration. >> >> When I specify the name of database and after the "next" step, I get this >> : >> >> >> *Fatal error*: Call to a member function NumRows() on a non-object in * >> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >> >> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >> try to migrate this 5.0.4 to 5.1 RC, I get an error. >> >> Regards, >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > 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/20090710/4a64aee2/attachment-0002.html From Stefan.Lorenz at burdadirect.de Fri Jul 10 08:48:59 2009 From: Stefan.Lorenz at burdadirect.de (Lorenz Stefan) Date: Fri, 10 Jul 2009 14:48:59 +0200 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Thanks for your reply. I had a quick look at the documentation of vtlib but it remains rather unclear to me how to use it with already existing modules such as quotes etc. Would you give some hints, please ? Reagrds Stefan ________________________________ Von: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Im Auftrag von Asha Gesendet: Freitag, 10. Juli 2009 13:22 An: vtigercrm-developers at lists.vtigercrm.com Betreff: Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry > wrote: Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/e9aba47e/attachment-0002.html From asha at vtiger.com Fri Jul 10 14:34:52 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:04:52 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Can you check if all the database related information in config.inc.php file of /var/www/vtiger504/ installation is correct (including the database name you given for migration) On 7/10/09, den jean wrote: > > Thanks you for your answer. > > So I start to click on "Migrate" and I'm on the "Installation Check" with > all the values to YES and I choose all the optional modules then I get that > : > > Previous Installation Path : /var/www/vtiger504/ > Previous Installation Version : 5.0.4 > Admin Username : I give my admin name (but it's not the same as phpmyadmin) > Admin Password : ****** > Database Name for Migraiton : I give the database of the previous > installation. > > And then I click on "Next", I get the error. > > Regards, > > 2009/7/10 Asha > >> Hi, >> >> This would happen if the connection to your database fails with the >> database information you have provided. Can you brief out the exact steps >> followed to migrate from 5.0.4 to 5.1.0? >> >> On 7/10/09, den jean wrote: >> >>> Hello, >>> >>> I try to migrate my CRM into the latest version for testing but I get a >>> problem during the process of migration. >>> >>> When I specify the name of database and after the "next" step, I get this >>> : >>> >>> >>> *Fatal error*: Call to a member function NumRows() on a non-object in * >>> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >>> >>> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >>> try to migrate this 5.0.4 to 5.1 RC, I get an error. >>> >>> Regards, >>> >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090711/93402e96/attachment-0002.html From asha at vtiger.com Fri Jul 10 14:36:25 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:06:25 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, You can get an instance of any of the existing modules and add field for it. The field uitype that I would suggest you is 10. On 7/10/09, Lorenz Stefan wrote: > > Thanks for your reply. I had a quick look at the documentation of vtlib > but it remains rather unclear to me how to use it with already existing > modules such as quotes etc. Would you give some hints, please ? > Reagrds > Stefan > > ------------------------------ > *Von:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *Im Auftrag von *Asha > *Gesendet:* Freitag, 10. Juli 2009 13:22 > *An:* vtigercrm-developers at lists.vtigercrm.com > *Betreff:* Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom > second account field to invoice, sales order, quote > > Hi Stefan, > > I suggest you to try out vtlib. Use uitype 10 of vtlib to create such > custom fields. Hope that meets your requirement which will not clash with > the existing referencing field. > > On 7/10/09, DJLorry wrote: >> >> >> Hello, >> how can I add a second account or person field in these modules ? >> The problem can't be solved by just adding a custom field and changing the >> uitype. (Which works when no account field already exits, though) >> The uitype 50 changes the custom field to contain the button for the >> popup-window for account-selection. >> The problem is that a thereby selected account is stored in the modul's >> default account field whereas the custom field stays blank. I have added a >> query to show the account if I put an accountid in the customfield's table >> in mysql. So the remainig problem is how to get vtiger to store the >> selected >> account's Id in the custom field and not in the account_id field. Where is >> the connection between popup window,save button and the insertion into the >> database ? How can I get vtiger not to treat both the custom and the >> already >> existing field as the same when storing the account-id ? The same problem >> occurs with a custom person field if one is already part of a module by >> default. >> >> I hope someone is able to help. >> >> Regards >> Stefan >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > vtiger Team > > _______________________________________________ > 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/20090711/8169f0ef/attachment-0002.html From djeandot at gmail.com Mon Jul 13 04:21:55 2009 From: djeandot at gmail.com (den jean) Date: Mon, 13 Jul 2009 10:21:55 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, I ckeck the config.inc.php and I think it's correct. I just wondering if the "Database Name for Migraiton" should be empty or this the previous database ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090713/1c1a72e7/attachment-0002.html From asha at vtiger.com Mon Jul 13 14:19:35 2009 From: asha at vtiger.com (Asha) Date: Mon, 13 Jul 2009 23:49:35 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Either your new database should have the data copied from previous database (OR) new database can be empty and you can copy the data from previous database in the next step of the migration wizard (which we do not recommend). In your case, looks like the user credentials (mysql username/password from previous installation config file) is not correct to connect to the new database name specified. Please check if that user has the privileges on the new database. On 7/13/09, den jean wrote: > > Hi, > > I ckeck the config.inc.php and I think it's correct. > I just wondering if the "Database Name for Migraiton" should be empty or > this the previous database ? > > Regards, > > _______________________________________________ > 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/20090713/c635a315/attachment-0002.html From ml at arceva.fr Mon Jul 13 19:44:59 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 14 Jul 2009 01:44:59 +0200 Subject: [Vtigercrm-developers] translate firefox extension Message-ID: <4A5BC6FB.1040201@arceva.fr> Hi all, I actually translate the firefox plugin but I have a big problem with accent Does anyone know how to insert accent in the xpi files (vtigertoolbar.xul for example ?) I have test with ? ou é, the first create a screen bug and the last close the extension Thanks, Bruno From carloz at gnumerica.org Tue Jul 14 10:43:07 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Tue, 14 Jul 2009 16:43:07 +0200 Subject: [Vtigercrm-developers] translate firefox extension In-Reply-To: <4A5BC6FB.1040201@arceva.fr> References: <4A5BC6FB.1040201@arceva.fr> Message-ID: <4A5C997B.9080806@gnumerica.org> Hi Bruno, I did some googling on this, and here's my findings: http://www.rietta.com/firefox/Tutorial/locale.html https://developer.mozilla.org/en/International_characters_in_XUL_JavaScript http://forums.mozillazine.org/viewtopic.php?f=19&t=337032&start=0&st=0&sk=t&sd=a https://developer.mozilla.org/En/XUL Please keep me updated about your localization effort. I'm the coordinator of the italian community translation team (see http://vtiger-italia.net/ and http://vtiger-italia.net/mailman/listinfo/traduttori_vtiger-italia.net ) and we are definitely interested in the issue. Ciao carloz Fusioncore ha scritto: > Hi all, > I actually translate the firefox plugin but I have a big problem with accent > Does anyone know how to insert accent in the xpi files > (vtigertoolbar.xul for example ?) I have test with ? ou é, the > first create a screen bug and the last close the extension > > Thanks, > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From djeandot at gmail.com Wed Jul 15 04:04:19 2009 From: djeandot at gmail.com (den jean) Date: Wed, 15 Jul 2009 10:04:19 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: I create a user for the database with the same login and pwd as the admin user on the CRM, but the problem is still here. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090715/dec67711/attachment-0002.html From prasad at vtiger.com Sun Jul 19 10:11:45 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 19:41:45 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing Message-ID: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090719/63e5d5f8/attachment-0002.html From brett.hooker at roarz.com Sun Jul 19 10:51:07 2009 From: brett.hooker at roarz.com (Brett Hooker) Date: Mon, 20 Jul 2009 00:51:07 +1000 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Message-ID: <4A6332DB.4090809@roarz.com> Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug > fixes into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090720/a7c578bb/attachment-0002.html From prasad at vtiger.com Sun Jul 19 11:24:22 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 20:54:22 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <4A6332DB.4090809@roarz.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> <4A6332DB.4090809@roarz.com> Message-ID: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: > > Prasad, > > Just clarifying, do you want testing done on the RC code line, or the > latest code in SVN? > > > Thanks, > Brett > > Prasad wrote: > > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug fixes > into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/93fa1713/attachment-0002.html From s.shaw at amalganet.com Sun Jul 19 12:47:55 2009 From: s.shaw at amalganet.com (AML) Date: Sun, 19 Jul 2009 17:47:55 +0100 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting In-Reply-To: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Message-ID: <200907191648.n6JGmKbh022948@vtigerforge.com> I have an upgrade to test, from 5.0.4 Is it possible to download the zip file as my SVN knowledge is not great. Ken _____ From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: 19 July 2009 16:24 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad 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/20090719/f67018ab/attachment-0002.html From asha at vtiger.com Wed Jul 22 09:47:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:17:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone Message-ID: Hi All, We are glad to announce the release of vtiger 5.1.0 today! This release addresses around 150+ features/enhancements, 700 bug fixes besides performance improvements. We are hopeful that you will like the new release. Following are some of the important features added: - Webservices API - Workflow - Vtlib library - Services support - Layout Editor - Duplicate Merging - Mail Scanner - Mass Edit - Multi-Currency Support - Recurring Invoice Thank you for all your patience and support in making this a big release. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Release Notes is available here. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Note: vtiger CRM 5.0.4 Office Plugin will continue to work with vtiger CRM 5.1.0 Online Demo: http://en.vtiger.com Documentation: http://wiki.vtiger.com We welcome your feedback. Please report any issues on Tracor on vtiger Forums . -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/4460e149/attachment-0002.html From manilal at ejyothi.com Wed Jul 22 10:00:47 2009 From: manilal at ejyothi.com (Manilal K M) Date: Wed, 22 Jul 2009 19:30:47 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Quoting Asha : > Hi All, > > We are glad to announce the release of vtiger 5.1.0 today! This release > addresses around 150+ features/enhancements, 700 bug fixes besides > performance improvements. We are hopeful that you will like the new release. > > The download link in the vtiger.com home page still leads to 5.0.4. You should follow the download links in the email. regards -- Manilal K M eJyothi Services http://www.ejyothi.com From asha at vtiger.com Wed Jul 22 10:24:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:54:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> References: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Message-ID: Hi Manilal, Thanks for pointing it out. We have updated the links. Please check it out. On 7/22/09, Manilal K M wrote: > > > Quoting Asha : > > > Hi All, > > > > We are glad to announce the release of vtiger 5.1.0 today! This release > > addresses around 150+ features/enhancements, 700 bug fixes besides > > performance improvements. We are hopeful that you will like the new > release. > > > > > > > > The download link in the vtiger.com home page still leads to 5.0.4. > You should follow the download links in the email. > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090722/f2cae4e2/attachment-0002.html From galdes at internode.on.net Wed Jul 22 20:11:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 09:41:33 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <4A67AAB5.1030608@internode.on.net> Hello all, I've upgraded from 5.01 to 5.10 using the migration instructions at http://wiki.vtiger.com/index.php/vtiger510:Migration It seemed to progress through as intended but when i log in (as an Admin user) i see no information on the Home Page but there is a top menu. I select Contacts and i get the following error: *Fatal error*: Call to a member function FetchRow() on a non-object in */home//public_html/vtigercrm/include/database/PearDatabase.php* on line *645 *The same for Accounts. I click on Settings and the same thing happens as did with Home Page - the page load ok but no information within it. Any ideas? What info might help you? This is running on a cPanel. vtiger was installed via source. Cheers, -Andrew Galdes * * -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/d4f2c0d7/attachment-0002.html From dfar2008 at gmail.com Wed Jul 22 21:16:58 2009 From: dfar2008 at gmail.com (ding jianting) Date: Thu, 23 Jul 2009 09:16:58 +0800 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <4A67AAB5.1030608@internode.on.net> References: <4A67AAB5.1030608@internode.on.net> Message-ID: Hi,Andrew Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes wrote: > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions at > http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an Admin > user) i see no information on the Home Page but there is a top menu. I > select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a non-object in * > /home//public_html/vtigercrm/include/database/PearDatabase.php*on line > *645 > > *The same for Accounts. I click on Settings and the same thing happens as > did with Home Page - the page load ok but no information within it. > > Any ideas? What info might help you? This is running on a cPanel. vtiger > was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- ________________________________________ ????CRM ?? ???????????????631????? ???021-64876448 ??:021-64876441 ???(0)13701696656 Email:dfar2008 at gmail.com ----------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/22ac5120/attachment-0002.html From prasad at vtiger.com Wed Jul 22 21:40:33 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 07:10:33 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down Message-ID: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/a975b7a4/attachment-0002.html From galdes at internode.on.net Wed Jul 22 22:56:41 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 12:26:41 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: <4A67AAB5.1030608@internode.on.net> Message-ID: <4A67D169.9000208@internode.on.net> Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c2b2cf7f/attachment-0002.html From prasad at vtiger.com Wed Jul 22 23:07:42 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 08:37:42 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down In-Reply-To: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/ed365db5/attachment-0002.html From pbucolo at vodafone.it Thu Jul 23 04:44:45 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 10:44:45 +0200 Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown In-Reply-To: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> Message-ID: Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0002.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0002.jpe From vikas at vtiger.com Thu Jul 23 08:08:28 2009 From: vikas at vtiger.com (Vikas Jain) Date: Thu, 23 Jul 2009 17:38:28 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: > > 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) > 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) > 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 23 Jul 2009 12:26:41 +0930 > From: Andrew Galdes > Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A > Major > Milestone > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <4A67D169.9000208 at internode.on.net> > Content-Type: text/plain; charset="gb2312" > > Thanks for the help. Let me know if you want more of that log file. Note > that the date is incorrect on in the following: > > Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] > Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] > Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into > vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values > (?,?,?,?,?) > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, > Approved] > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > parameters : [1,AUD,AU,$,1,Active,-11] > > -Andrew Galdes > > > > Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the > module(Utilities) language file for the selected language(en_us) or the > default language(en_us) > > > ding jianting wrote: > > Hi,Andrew > > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > > wrote: > > > > Hello all, > > > > I've upgraded from 5.01 to 5.10 using the migration instructions > > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > > > It seemed to progress through as intended but when i log in (as an > > Admin user) i see no information on the Home Page but there is a > > top menu. I select Contacts and i get the following error: > > > > *Fatal error*: Call to a member function FetchRow() on a > > non-object in > > > */home//public_html/vtigercrm/include/database/PearDatabase.php* > > on line *645 > > > > *The same for Accounts. I click on Settings and the same thing > > happens as did with Home Page - the page load ok but no > > information within it. > > > > Any ideas? What info might help you? This is running on a cPanel. > > vtiger was installed via source. > > > > Cheers, > > -Andrew Galdes > > > > * > > * > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > > > > ----------------------------------------------------------------------- > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Thu, 23 Jul 2009 08:37:42 +0530 > From: Prasad > Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: > trac.vtiger.com is down > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > > > Dear members, > > > > Our issue tracker server disk space is pilled up with log and needs a > > cleanup. > > > > Administrator team is working to get it back back soon. Sorry for the > > inconvenience caused. > > > > Regards, > > Prasad > > vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Thu, 23 Jul 2009 10:44:45 +0200 > From: "Pierluigi Bucolo" > Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: > trac.vtiger.com isdown > To: > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Side by side view of Diff, using trac doesn?t work with FFX 3.5. > > It?s work with IE. > > > > The error is in attach. > > > > Regards, > > - Pierluigi > > > > _____ > > Da: vtigercrm-developers-bounces at lists.vtigercrm.com > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di > Prasad > Inviato: gioved? 23 luglio 2009 05.08 > A: vtigercrm-developers at lists.vtigercrm.com > Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com > isdown > > > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.htm > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: Side-By-Side.JPG > Type: image/jpeg > Size: 16568 bytes > Desc: not available > Url : > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side.jpeg > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 43, Issue 5 > *************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/0683591b/attachment-0002.html From ml at arceva.fr Thu Jul 23 08:18:04 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 14:18:04 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks Message-ID: <4A6854FC.8090708@arceva.fr> Hi all, I found a small bug on the home page block In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save and cancel button label are hardcode Regards, Bruno From nitin at vtiger.com Thu Jul 23 09:12:28 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Thu, 23 Jul 2009 06:12:28 -0700 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6854FC.8090708@arceva.fr> References: <4A6854FC.8090708@arceva.fr> Message-ID: Hi Bruno, The Buttons you are talking about are not hardcoded, you can change the button label from /include/language/en_us.lang.php file. Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL Change these strings as they are handling save and cancel button through the vtigercrm. Regards, Nitin Goyal Vtiger Team On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore wrote: > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > 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/20090723/6eb84910/attachment-0002.html From pbucolo at vodafone.it Thu Jul 23 09:32:39 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 15:32:39 +0200 Subject: [Vtigercrm-developers] R: vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: OK. Now it works. Regards, - Pierluigi - _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Vikas Jain Inviato: gioved? 23 luglio 2009 14.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43,Issue 5 Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) ---------------------------------------------------------------------- Message: 1 Date: Thu, 23 Jul 2009 12:26:41 +0930 From: Andrew Galdes Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <4A67D169.9000208 at internode.on.net> Content-Type: text/plain; charset="gb2312" Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V ] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/c2b2cf7f/attachment-0001.htm ------------------------------ Message: 2 Date: Thu, 23 Jul 2009 08:37:42 +0530 From: Prasad Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/ed365db5/attachment-0001.htm ------------------------------ Message: 3 Date: Thu, 23 Jul 2009 10:44:45 +0200 From: "Pierluigi Bucolo" Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/Side-By-Side.jpeg ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 43, Issue 5 *************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/59e3f9eb/attachment-0002.html From ml at arceva.fr Thu Jul 23 09:47:06 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 15:47:06 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: References: <4A6854FC.8090708@arceva.fr> Message-ID: <4A6869DA.5060604@arceva.fr> The inclued language file was already translate. In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around line 29: If I replace it by : The buttons labels were transate Regards, Bruno French-vtiger Manager Nitin Goyal a ?crit : > Hi Bruno, > > The Buttons you are talking about are not hardcoded, you can change > the button label from /include/language/en_us.lang.php file. > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > Change these strings as they are handling save and cancel button > through the vtigercrm. > > > Regards, > Nitin Goyal > Vtiger Team > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > wrote: > > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From fp at crm-now.de Thu Jul 23 10:04:47 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Thu, 23 Jul 2009 16:04:47 +0200 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: References: Message-ID: <005f01ca0b9e$9c19b830$d44d2890$@de> I tried to place a contribution at the vtiger Extension site for the v5.0.1. No luck the latest version offered at the Vtiger Versions picklist is v.5.0.1 RC. Could anybody fix that? Regards, Frank From asha at vtiger.com Thu Jul 23 12:28:31 2009 From: asha at vtiger.com (Asha) Date: Thu, 23 Jul 2009 21:58:31 +0530 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6869DA.5060604@arceva.fr> References: <4A6854FC.8090708@arceva.fr> <4A6869DA.5060604@arceva.fr> Message-ID: Hi Bruno, Thanks for identifying the issue. We shall soon address this. We have noted down the issue on our trac system ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6191 ) On 7/23/09, Fusioncore wrote: > > The inclued language file was already translate. > In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around > line 29: > > style="height:28px;" width=60%> > class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > If I replace it by : > > style="height:28px;" width=60%> > value="{$APP.LBL_SAVE_BUTTON_LABEL}" class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > value="{$APP.LBL_CANCEL_BUTTON_LABEL}" class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > The buttons labels were transate > > Regards, > Bruno > French-vtiger Manager > > > > Nitin Goyal a ?crit : > > > Hi Bruno, > > > > The Buttons you are talking about are not hardcoded, you can change > > the button label from /include/language/en_us.lang.php file. > > > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > > > Change these strings as they are handling save and cancel button > > through the vtigercrm. > > > > > > Regards, > > Nitin Goyal > > Vtiger Team > > > > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > > > wrote: > > > > Hi all, > > I found a small bug on the home page block > > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > > the save > > and cancel button label are hardcode > > > > Regards, > > Bruno > > _______________________________________________ > > 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/6026aac5/attachment-0002.html From svk at vtiger.com Thu Jul 23 13:21:09 2009 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 23 Jul 2009 10:21:09 -0700 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: <005f01ca0b9e$9c19b830$d44d2890$@de> References: <005f01ca0b9e$9c19b830$d44d2890$@de> Message-ID: <370368f40907231021r74c0af4cg539896c141c9d5db@mail.gmail.com> Frank, Version 5.1 is available now as a choice. thanks, -Sreenivas On Thu, Jul 23, 2009 at 7:04 AM, Frank Piepiorra wrote: > I tried to place a contribution at the vtiger Extension site for the > v5.0.1. > No luck the latest version offered at the Vtiger Versions picklist is > v.5.0.1 RC. Could anybody fix that? > > Regards, > Frank > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 733-3229 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/70ec43f0/attachment-0002.html From manilal at ejyothi.com Fri Jul 24 02:10:40 2009 From: manilal at ejyothi.com (Manilal K M) Date: Fri, 24 Jul 2009 11:40:40 +0530 Subject: [Vtigercrm-developers] User privileges error Message-ID: <20090724114040.161555wp33un50g0@app.ascellatech.com> Hello all, I tried to post this to vtiger forums, but it's not responding, hence posting this to mailing list as it is very much critical for me. I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am using LDAP authentication and authentication is working fine. But when I created a new user I got the following error message: [code] Parse error: syntax error, unexpected ';' in /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 [/code] Here is the contents of the above file: [code] '','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); ?> [/code] It seems the user is not being added to the database. I have also tried to use the SQL authentication, but no luck so far. Can somebody provide some hints? regards -- Manilal K M eJyothi Services http://www.ejyothi.com From eugene.babiy at gmail.com Fri Jul 24 07:36:01 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Fri, 24 Jul 2009 14:36:01 +0300 Subject: [Vtigercrm-developers] Sending Document from system by e-mail Message-ID: <4A699CA1.3020303@gmail.com> Hi. Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. His business is Engineering Development and he often need to send documents to clients and also to have possibility to store records and data in CRM. Is there a possibility to make easier sending of documents from inside of system on e-mail? Best regards, Eugene Babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/c5b83f19/attachment-0002.vcf From asha at vtiger.com Fri Jul 24 08:29:08 2009 From: asha at vtiger.com (Asha) Date: Fri, 24 Jul 2009 17:59:08 +0530 Subject: [Vtigercrm-developers] Sending Document from system by e-mail In-Reply-To: <4A699CA1.3020303@gmail.com> References: <4A699CA1.3020303@gmail.com> Message-ID: Hi Eugene Babiy, As far as understand your requirement, following is what you can do: 1. Create Contacts for each of the clients. 2. Associate the required document to the contact. 3. Go to the detail view of the document and use 'send mail with attachment' link on the right side. 4. Compose mail box with attachment will open up. Select the contact name and send the email. 5. The email will be automatically attached to the Contact. Let me know if you are looking for something else. On 7/24/09, Eugene Babiy wrote: > > Hi. > > Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. > His business is Engineering Development and he often need to send > documents to clients and also to have possibility to store records and > data in CRM. > > Is there a possibility to make easier sending of documents from inside > of system on e-mail? > > Best regards, Eugene Babiy > > _______________________________________________ > 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/20090724/a0f04a43/attachment-0002.html From alanslists at gmail.com Fri Jul 24 11:09:34 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 16:09:34 +0100 Subject: [Vtigercrm-developers] Asterisk Integration Message-ID: Can someone explain what this chunk of code is for in function function transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? $arr = explode(":", $to); if(is_array($arr)){ $typeCalled = $arr[0]; $to = trim($arr[1]); } This is being called via the Ajax stuff for initiating outbound calls. Our telephone numbers for contacts/leads etc are usually in the form of either: $AREA $NUMBER or they have an international prefix: +$INT (0)$AREA $NUMBER explode() always results in an Array. As we do *not* have a colon in our phone numbers this chunk of code mangles them and afterwards $to is empty. I don't think it should be called for an outgoing call. Alan From pinaki at vtiger.com Fri Jul 24 12:58:22 2009 From: pinaki at vtiger.com (Pinaki Das) Date: Fri, 24 Jul 2009 22:28:22 +0530 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: References: Message-ID: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Hi Alan, This issue has been fixed in the GA release of vtiger. Can you please check and update us? Regards Pinaki vtiger Team On Fri, Jul 24, 2009 at 8:39 PM, Alan Lord (News) wrote: > Can someone explain what this chunk of code is for in function function > transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? > > > $arr = explode(":", $to); > if(is_array($arr)){ > $typeCalled = $arr[0]; > $to = trim($arr[1]); > } > > > This is being called via the Ajax stuff for initiating outbound calls. > > Our telephone numbers for contacts/leads etc are usually in the form of > either: > > $AREA $NUMBER > > or they have an international prefix: > > +$INT (0)$AREA $NUMBER > > > explode() always results in an Array. > > As we do *not* have a colon in our phone numbers this chunk of code > mangles them and afterwards $to is empty. > > I don't think it should be called for an outgoing call. > > Alan > > > _______________________________________________ > 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/20090724/696e471a/attachment-0002.html From alanslists at gmail.com Fri Jul 24 13:40:58 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 18:40:58 +0100 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> References: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Message-ID: On 24/07/09 17:58, Pinaki Das wrote: > Hi Alan, > > This issue has been fixed in the GA release of vtiger. Can you please > check and update us? OK, I used the upgrade (vtigercrm-5.0.x-to-5.1.0-patch.zip) from 5.10RC to 5.10 and it doesn't seem to have updated this file. Looking at the new package I can see what you have done to fix it. I've been working on some changes to the Asterisk Integration code. When I have something more concrete to show I will. Thanks for the quick response. Alan From prasad at vtiger.com Fri Jul 24 14:52:11 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 25 Jul 2009 00:22:11 +0530 Subject: [Vtigercrm-developers] vtiger CRM Forum Traffic Surge Message-ID: <39d18b250907241152g230801d8hb409797f9775ffd3@mail.gmail.com> Dear members, Due to surge in traffic and discussion at http://forums.vtiger.com, you might find it to be slow sometimes. Our IT team is working on improving the server resources soon, please bear with us in the meantime. Sorry for the inconvenience, but don't miss your comments or feedback to us Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/80dd266e/attachment-0002.html From eugene.babiy at gmail.com Sat Jul 25 06:24:05 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Sat, 25 Jul 2009 13:24:05 +0300 Subject: [Vtigercrm-developers] Translation Problems Message-ID: <4A6ADD45.5010206@gmail.com> Hi. I'm translating vTiger 5.1.0 to Russian and experiencing some problems. 1. On creating Document page labels 'Folder Name' and 'Document No' are still displaying in English although they are translated in document's module language file. 2. Actions list is not displaying at all (Detail view of Document). Any ideas? P.S. The same was in 5.1.0RC -- Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/7f99e0a5/attachment-0002.vcf From StevenS at techtron.co.za Sun Jul 26 08:21:22 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 14:21:22 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon Message-ID: I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/864de6c1/attachment-0002.html From StevenS at techtron.co.za Sun Jul 26 09:58:02 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 15:58:02 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: Never mind just a broken mirror on sourceforge, used another mirror worked fine. From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Steven Sher Sent: 26 July 2009 02:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] problem downloading customer portal addon I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/92ada472/attachment-0002.html From prasad at vtiger.com Sun Jul 26 14:10:25 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:40:25 +0530 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: <39d18b250907261110k5c9417d3m258a01fb5b2a25ee@mail.gmail.com> Thanks for the update, I have posted the same comment on the blogs now. http://www.vtiger.com/blogs/2009/07/22/vtiger-crm-510-is-released-major-milestone/#comment-120363 Regards, Prasad vtiger Team On 7/26/09, Steven Sher wrote: > > Never mind just a broken mirror on sourceforge, used another mirror > worked fine. > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Steven > Sher > *Sent:* 26 July 2009 02:21 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] problem downloading customer portal > addon > > > > I cant seem to download the customer portal addon for vtigercrm5.1 the link > seems to be invalid? > > > > > > > > > > > > > > _______________________________________________ > 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/20090726/0eaa6329/attachment-0002.html From prasad at vtiger.com Sun Jul 26 14:23:44 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:53:44 +0530 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: <4A6ADD45.5010206@gmail.com> References: <4A6ADD45.5010206@gmail.com> Message-ID: <39d18b250907261123w7f59ea4bv920118fea36c4dbb@mail.gmail.com> Hi Eugene, Your language translation pack should include module translation for (Services, ServiceContracts, Recycle Bin...) Refer to some of the translated version at: http://www.vtiger.com//index.php?option=com_jreviews&task=list&jr_vtigerversions=Version+5.1&Itemid=185 Regards, Prasad vtiger Team On 7/25/09, Eugene Babiy wrote: > > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > > -- > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > _______________________________________________ > 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/20090726/9a3d7dec/attachment-0002.html From fp at crm-now.de Sun Jul 26 15:28:57 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Sun, 26 Jul 2009 21:28:57 +0200 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: References: Message-ID: <006401ca0e27$52e0d460$f8a27d20$@de> Eugene, for a patch see http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 Regards, Frank > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > -- > Best regards, Eugene Babiy From ml at arceva.fr Sun Jul 26 19:03:26 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 01:03:26 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module Message-ID: <4A6CE0BE.5030204@arceva.fr> Hi All, I have some problems with the French language pack We have translate *all *strings of the Documents Modules and when we use the french language, all of the column Action at the right don't appear when we look a download file. I apply this patch http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 and nothing change In english the 3 button work perfectly The language pack is available at : http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip Thanks for your help Bruno From dfar2008 at gmail.com Sun Jul 26 21:19:41 2009 From: dfar2008 at gmail.com (ding jianting) Date: Mon, 27 Jul 2009 09:19:41 +0800 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: <20090724114040.161555wp33un50g0@app.ascellatech.com> References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: First backup user_privileges_215.php file . Then delete user_privileges_215.php and edit the user with userid 215. On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > Hello all, > I tried to post this to vtiger forums, but it's not responding, > hence posting this to mailing list as it is very much critical for me. > > I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am > using LDAP authentication and authentication is working fine. But when > I created a new user I got the following error message: > > [code] > Parse error: syntax error, unexpected ';' in > /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 > [/code] > > Here is the contents of the above file: > > > [code] > //This is the access privilege file > $is_admin=false; > $current_user_roles=''; > $current_user_parent_role_seq=''; > $current_user_profiles=array(); > $profileGlobalPermission=; > $profileTabsPermission=; > $profileActionPermission=array(); > $current_user_groups=array(); > $subordinate_roles=array(); > $parent_roles=array(); > $subordinate_roles_users=array(); > > $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, > > Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); > ?> > [/code] > > It seems the user is not being added to the database. I have also > tried to use the SQL authentication, but no luck so far. Can somebody > provide some hints? > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090727/823c4888/attachment-0002.html From manilal at ejyothi.com Mon Jul 27 01:12:58 2009 From: manilal at ejyothi.com (Manilal K M) Date: Mon, 27 Jul 2009 10:42:58 +0530 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: <20090727104258.17734ne4i3dw18ys@app.ascellatech.com> I missed one fact: 1. The user is not created in the database and hence I can't edit it. Quoting ding jianting : > First backup user_privileges_215.php file . > Then delete user_privileges_215.php and edit the user with userid 215. > > On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > >> Hello all, >> I tried to post this to vtiger forums, but it's not responding, >> hence posting this to mailing list as it is very much critical for me. >> >> I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am >> using LDAP authentication and authentication is working fine. But when >> I created a new user I got the following error message: >> >> [code] >> Parse error: syntax error, unexpected ';' in >> /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 >> [/code] >> >> Here is the contents of the above file: >> >> >> [code] >> > //This is the access privilege file >> $is_admin=false; >> $current_user_roles=''; >> $current_user_parent_role_seq=''; >> $current_user_profiles=array(); >> $profileGlobalPermission=; >> $profileTabsPermission=; >> $profileActionPermission=array(); >> $current_user_groups=array(); >> $subordinate_roles=array(); >> $parent_roles=array(); >> $subordinate_roles_users=array(); >> >> $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, >> >> Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); >> ?> >> [/code] >> >> It seems the user is not being added to the database. I have also >> tried to use the SQL authentication, but no luck so far. Can somebody >> provide some hints? >> >> regards >> >> -- >> Manilal K M >> eJyothi Services >> http://www.ejyothi.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > -- Manilal K M eJyothi Services http://www.ejyothi.com From varma at vtiger.com Mon Jul 27 05:04:36 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 14:34:36 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM IST). Sorry for the inconvenience. We shall update you as soon as they are up and running again. -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1a8a4c43/attachment-0002.html From djeandot at gmail.com Mon Jul 27 05:43:54 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 11:43:54 +0200 Subject: [Vtigercrm-developers] Keep the id numerotation in vtiger 5.1.0 Message-ID: Hello, How can I keep the numerotation that I have in vtiger 5.0.4 (for example tickets 1, 2, 1500...) ? Because the numerotation in vtiger 5.1.0, the numerotation is bizarre (CON1...). Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/85854aa9/attachment-0002.html From eugene.babiy at gmail.com Mon Jul 27 05:42:07 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Mon, 27 Jul 2009 12:42:07 +0300 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6CE0BE.5030204@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> Message-ID: <4A6D766F.1000005@gmail.com> Hi Bruno. I've tested German Language Pack for 5.1.0 and it also has a problems with displaying of Actions list. I've found that the problem is only in the label "File Name". When I leave it untranslated in Langpack, everything else displays Ok, but when it's translated, Actions list is not showing. So you can just leave that label untranslated until some patch will appear. Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy Fusioncore ?????: > Hi All, > > I have some problems with the French language pack > We have translate *all *strings of the Documents Modules and when we use > the french language, all of the column Action at the right don't appear > when we look a download file. > I apply this patch > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > and nothing change > In english the 3 button work perfectly > The language pack is available at : > http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > > Thanks for your help > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/b6802013/attachment-0002.vcf From StevenS at techtron.co.za Mon Jul 27 05:51:14 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Mon, 27 Jul 2009 11:51:14 +0200 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? Message-ID: I am looking for anybody who does support/development work for vTiger in South Africa, preferably Cape Town. Thanks Steven -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/791e68fe/attachment-0002.html From varma at vtiger.com Mon Jul 27 05:51:38 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 15:21:38 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) are up and running now. Please check it and let us know if you have any problem access them. On Mon, Jul 27, 2009 at 2:34 PM, Varma wrote: > Hi All, > > Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( > blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, > 2009 ( 2:45PM IST to 3:15 PM IST). > > Sorry for the inconvenience. We shall update you as soon as they are up and > running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1b81f768/attachment-0002.html From galdes at internode.on.net Mon Jul 27 05:57:23 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Mon, 27 Jul 2009 19:27:23 +0930 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? In-Reply-To: References: Message-ID: <4A6D7A03.3030700@internode.on.net> Hi Steven, We are hosting and supporting vtiger but we are in Australia. Let me know if you have trouble and we might be able to help you out. Cheers, -Andrew G Steven Sher wrote: > > I am looking for anybody who does support/development work for vTiger > in South Africa, preferably Cape Town. > > > > Thanks > > Steven > > > -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/3ed980d4/attachment-0002.html From ml at arceva.fr Mon Jul 27 06:38:22 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 12:38:22 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D766F.1000005@gmail.com> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> Message-ID: <4A6D839E.4040702@arceva.fr> Hi Eugene, Your solution doesn't work with success with the french pack If anyone have an other idea , Thanks, Bruno Eugene Babiy a ?crit : > Hi Bruno. > > I've tested German Language Pack for 5.1.0 and it also has a problems > with displaying of Actions list. I've found that the problem is only in > the label "File Name". When I leave it untranslated in Langpack, > everything else displays Ok, but when it's translated, Actions list is > not showing. > > So you can just leave that label untranslated until some patch will appear. > > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > > Fusioncore ?????: > >> Hi All, >> >> I have some problems with the French language pack >> We have translate *all *strings of the Documents Modules and when we use >> the french language, all of the column Action at the right don't appear >> when we look a download file. >> I apply this patch >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 >> and nothing change >> In english the 3 button work perfectly >> The language pack is available at : >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip >> >> Thanks for your help >> >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com From nitin at vtiger.com Mon Jul 27 08:14:44 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Mon, 27 Jul 2009 05:14:44 -0700 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D839E.4040702@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: Hi, You can try the fix suggested in the comments of the following ticket, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 try this, it will fix the issue. Regards, Nitin Goyal Vtiger Team On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore wrote: > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a problems > > with displaying of Actions list. I've found that the problem is only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions list is > > not showing. > > > > So you can just leave that label untranslated until some patch will > appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and when we use > >> the french language, all of the column Action at the right don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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/20090727/34482353/attachment-0002.html From ml at arceva.fr Mon Jul 27 08:53:54 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 14:53:54 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: <4A6DA362.8040000@arceva.fr> Thanks, It work Bruno Nitin Goyal a ?crit : > Hi, > > You can try the fix suggested in the comments of the following ticket, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 > > try this, it will fix the issue. > > Regards, > Nitin Goyal > Vtiger Team > > > On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore > wrote: > > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a > problems > > with displaying of Actions list. I've found that the problem is > only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions > list is > > not showing. > > > > So you can just leave that label untranslated until some patch > will appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and > when we use > >> the french language, all of the column Action at the right > don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From djeandot at gmail.com Mon Jul 27 09:34:04 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 15:34:04 +0200 Subject: [Vtigercrm-developers] Modify the "Send Mail" functionnality Message-ID: Hello, I try to modify the functionnality of the button "Send Mail", but I don't have success. I just want send mail to the main adress and don't have the choice between the mail or yahoo adress. How can I do to make that up ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1c7510c6/attachment-0002.html From asha at vtiger.com Mon Jul 27 11:09:40 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 20:39:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help Message-ID: Hi All, People have been reporting us a major issue with migration, where the script that changes the MyISAM tables to InnoDB tables is not working. We are trying to reproduce this issue in our test labs and have not succeeded yet. Whole problem is around the query 'SHOW TABLE STATUS FROM '. Would be great if anyone can provide us a helping hand in analyzing or resolving the issue. Possibly if anyone can reproduce this issue on their servers and can give us the access to the server, that would help a lot. Hoping to get a resolution for this issue soon so that people can migrate to vtiger 5.1.0 smoothly. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/366a9fb2/attachment-0002.html From djeandot at gmail.com Mon Jul 27 11:23:49 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 17:23:49 +0200 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi, What are we supposed to have like error ? Regards, 2009/7/27 Asha > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM > '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on their > servers and can give us the access to the server, that would help a lot. > > Hoping to get a resolution for this issue soon so that people can migrate > to vtiger 5.1.0 smoothly. > > -- > Regards, > Asha > 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/20090727/639e43f4/attachment-0002.html From asha at vtiger.com Mon Jul 27 12:28:30 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 21:58:30 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi All, The migration error would look something like below: ---------------------------------------------- Notice: Undefined index: ajax in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 15 Notice: Undefined index: web161-vtiger_localhost:3306_HealthApproved in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 29 Notice: Undefined index: updateTableEngine in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 31 Fatal error: Call to a member function NumRows() on a non-object in /home/sites/yourdomian/public_html/crm/include/utils/DBHealthCheck.php on line 58 ---------------------------------------------- On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/6980aa80/attachment-0002.html From alanslists at gmail.com Mon Jul 27 12:34:27 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Mon, 27 Jul 2009 17:34:27 +0100 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: On 27/07/09 16:09, Asha wrote: > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on > their servers and can give us the access to the server, that would help > a lot. > > Hoping to get a resolution for this issue soon so that people can > migrate to vtiger 5.1.0 smoothly. I had some issues with the upgrade but not to do with the InnoDB table conversion. The bog problem was that the database upgrade routine did not check the version info in the vtiger_version table and when I stupidly backed up a 5.0.4 db but told the install script it was a 5.1.0 RC it went through happily and completed. But the install was completely borked. Took me a while to work out what I was doing wrong... But the InnoDB change has worked fine for me several times over. PHP version: PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 MySQL version: Ver 14.12 Distrib 5.0.51a, for debian-linux-gnu (i486) using readline 5.2 HTH Alan From prasad at vtiger.com Mon Jul 27 12:42:59 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 27 Jul 2009 22:12:59 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Hi, If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' returns NULL value result for InnoDB tables. How to reproduce the issue? You will end up with the described result if you have the following MySQL configuration. [mysqld] default-storage-engine=MyISAM skip-innodb Please note, for vtiger CRM to work properly you will need to have InnoDB support enabled in MySQL. How to avoid the issue? [mysqld] default-storage-engine=INNODB #skip-innodb Regards, Prasad vtiger Team On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/d129fa52/attachment-0002.html From ml at arceva.fr Mon Jul 27 20:03:51 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:03:51 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page Message-ID: <4A6E4067.8020304@arceva.fr> Hi Team, I found another hardcode strings or missing modules. The gmail bookmarklet is hardcode on the Bookmarklet.tpl file Where I can add the strings ? I test in /modules/Emails/language an /include/language without success An other issue who can be critical in non english speeking country is the feedback link who point on a page of vtiger.com site Regards, Bruno French-vtiger Manager From ml at arceva.fr Mon Jul 27 20:18:54 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:18:54 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page In-Reply-To: <4A6E4067.8020304@arceva.fr> References: <4A6E4067.8020304@arceva.fr> Message-ID: <4A6E43EE.7040601@arceva.fr> Fusioncore a ?crit : > Hi Team, > > I found another hardcode strings or missing modules. The gmail > bookmarklet is hardcode on the Bookmarklet.tpl file > Where I can add the strings ? I test in /modules/Emails/language an > /include/language without success > > An other issue who can be critical in non english speeking country is > the feedback link who point on a page of vtiger.com site > > Regards, > Bruno > French-vtiger Manager > I add some string: On the home page widget : the edit, refresh, hide and close button alternate label and when we clic on the edit button, the two button save and close are hardcode (file /Smarty/templates/Home/MainHomeBlock.tpl around line 20) From djeandot at gmail.com Wed Jul 29 04:46:27 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 10:46:27 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview Message-ID: Hi, I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a filter with the ticket ID in the first column as you can see here : http://img151.imageshack.us/img151/6218/filterh.jpg I saved it but the tickets ID is not on the listview : http://img148.imageshack.us/img148/133/listview.jpg How can I fix that ? Regards, -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/3ba37324/attachment-0002.html From galdes at internode.on.net Wed Jul 29 05:28:30 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Wed, 29 Jul 2009 18:58:30 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos Message-ID: <4A70163E.8020005@internode.on.net> Hello all, We've developed a training video pack for vTiger CRM. I'd like some feedback on the supposed demand for such a training tool. Before we spend too much time on the final product development and marketing of the video pack, i'd like to know if you, your clients or peers would benefit from such a tool. Feel free to post off list as this might infringe on list policy. -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From sandeep at vtiger.com Wed Jul 29 07:02:22 2009 From: sandeep at vtiger.com (Sandeep P) Date: Wed, 29 Jul 2009 16:32:22 +0530 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: References: Message-ID: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Hi Denis, Kindly make the following change on your source in order to resolve the issue you have mentioned. In file *modules/CustomView/CustomView.php* at *line no 965* in function getCvColumnListSQL add the code provided below else if($list[1] == 'crmid'){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } after the below mentioned lines if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } Check if the above changes help you in solving the issue. On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > Hi, > > I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a > filter with the ticket ID in the first column as you can see here : > http://img151.imageshack.us/img151/6218/filterh.jpg > > I saved it but the tickets ID is not on the listview : > http://img148.imageshack.us/img148/133/listview.jpg > > How can I fix that ? > > Regards, > > > -- > Jean Denis > DotRiver pr?sente EluRiver, une approche unique pour la bureautique des > ?lus de France. > http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html > > Pas ? pas, agissons au quotidien pour pr?server notre environnement. > N'imprimez que si n?cessaire, > r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les > solutions DotRiver. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/aa505b8d/attachment-0002.html From asha at vtiger.com Wed Jul 29 07:01:40 2009 From: asha at vtiger.com (Asha) Date: Wed, 29 Jul 2009 16:31:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> References: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Message-ID: Hi All, Thanks for your support. We have finally analyzed the issue and found the quick fix for it. Please follow the trac ticket below for more details: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6205 On 7/27/09, Prasad wrote: > > Hi, > > If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' > returns NULL value result for InnoDB tables. > > How to reproduce the issue? > You will end up with the described result if you have the following MySQL > configuration. > [mysqld] > default-storage-engine=MyISAM > skip-innodb > > Please note, for vtiger CRM to work properly you will need to have InnoDB > support enabled in MySQL. > > How to avoid the issue? > [mysqld] > default-storage-engine=INNODB > #skip-innodb > > Regards, > Prasad > vtiger Team > > On 7/27/09, den jean wrote: >> >> Hi, >> What are we supposed to have like error ? >> Regards, >> >> 2009/7/27 Asha >> >>> Hi All, >>> >>> People have been reporting us a major issue with migration, where the >>> script that changes the MyISAM tables to InnoDB tables is not working. >>> >>> We are trying to reproduce this issue in our test labs and have not >>> succeeded yet. >>> >>> Whole problem is around the query 'SHOW TABLE STATUS FROM >>> '. >>> >>> Would be great if anyone can provide us a helping hand in analyzing or >>> resolving the issue. Possibly if anyone can reproduce this issue on their >>> servers and can give us the access to the server, that would help a lot. >>> >>> Hoping to get a resolution for this issue soon so that people can migrate >>> to vtiger 5.1.0 smoothly. >>> >>> -- >>> Regards, >>> Asha >>> vtiger Team >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/e05ab00a/attachment-0002.html From djeandot at gmail.com Wed Jul 29 07:52:39 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 13:52:39 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> References: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Message-ID: Thank you so much. It works well. Regards, 2009/7/29 Sandeep P > Hi Denis, > > Kindly make the following change on your source in order to resolve the > issue you have mentioned. > > In file *modules/CustomView/CustomView.php* at *line no 965* > in function getCvColumnListSQL add the code provided below > > else if($list[1] == 'crmid'){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > after the below mentioned lines > > if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > Check if the above changes help you in solving the issue. > > > On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > >> Hi, >> >> I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created >> a filter with the ticket ID in the first column as you can see here : >> http://img151.imageshack.us/img151/6218/filterh.jpg >> >> I saved it but the tickets ID is not on the listview : >> http://img148.imageshack.us/img148/133/listview.jpg >> >> How can I fix that ? >> >> Regards, >> >> >> -- >> Jean Denis >> DotRiver pr?sente EluRiver, une approche unique pour la bureautique des >> ?lus de France. >> http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html >> >> Pas ? pas, agissons au quotidien pour pr?server notre environnement. >> N'imprimez que si n?cessaire, >> r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant >> les solutions DotRiver. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Sandeep > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/53da1b5b/attachment-0002.html From j4c0b1 at gmail.com Wed Jul 29 09:45:29 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Wed, 29 Jul 2009 10:45:29 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70163E.8020005@internode.on.net> References: <4A70163E.8020005@internode.on.net> Message-ID: Can you send a link that we can see to post a feedback ? I think its very usefull for new vtiger users. 2009/7/29 Andrew Galdes > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/b4e8841d/attachment-0002.html From prasad at vtiger.com Wed Jul 29 10:34:13 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:04:13 +0530 Subject: [Vtigercrm-developers] Mobile Extension Module for vtiger CRM 5.1.0 Message-ID: <39d18b250907290734i52f22dabl5085f3ce0d0c36aa@mail.gmail.com> Dear members, The first version of Mobile (web client) is now available for vtiger CRM 5.1.0 Refer the blog post: http://www.vtiger.com/blogs/2009/07/29/mobile-extension-module-for-vtiger-crm-510/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/8167bb03/attachment-0002.html From prasad at vtiger.com Wed Jul 29 11:22:07 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:52:07 +0530 Subject: [Vtigercrm-developers] Do you like using vtiger CRM? Write a review for us. Message-ID: <39d18b250907290822u62d44399h28797229102b3b4b@mail.gmail.com> Dear members, Take your few minutes and write a review for us at https://sourceforge.net/projects/vtigercrm/ Hoping to see more 'Thumbs up' on the reviews. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/2e5a5a49/attachment-0002.html From galdes at internode.on.net Wed Jul 29 19:43:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 30 Jul 2009 09:13:33 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> Message-ID: <4A70DEA5.9040609@internode.on.net> Thanks all who replied, http://www.impresser.com.au/vtigercrm-video/ You can see a demo at the above URL. The above link is nothing fancy but a directory listing at this stage. The video is 6.87MB in WMV format. It's the chapter on Contact management. I'd like to have a few others uploaded as they are ready. Sorry for the WMV format but for testing it is simplest. Note that the video set was recorded (screen and sound only) during real training so the language used is very natural - possibly not what you'd expect from a formal training set. Also, it's intended to have these for sale when completed. Your input till then is appreciated. -Andrew G Cicero Jacobi Filho wrote: > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > > > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090730/5f3b8b52/attachment-0002.html From ml at arceva.fr Thu Jul 30 11:54:13 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 17:54:13 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: <4A71C225.8070006@arceva.fr> Hi, The vtiger website and vtiger forum are always extremly slow and produce time out The forum first page appear after around 2min and a search after 4-5 min Varma a ?crit : > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) are up and running now. > > Please check it and let us know if you have any problem access them. > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > wrote: > > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) will be down for > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > IST). > > Sorry for the inconvenience. We shall update you as soon as they > are up and running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > > > > > -- > Thanks & Regards, > Varma. > VtigerTeam. > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From ml at arceva.fr Thu Jul 30 12:33:46 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 18:33:46 +0200 Subject: [Vtigercrm-developers] user creation Message-ID: <4A71CB6A.1010300@arceva.fr> Hi All, Does anyone now what is the function who save a new user on the database ? I search all the day and I just found the function who send the email to the new user (in /modules/users/Save.php around line 185) Thanks for your help Bruno From prasad at vtiger.com Thu Jul 30 12:46:39 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 30 Jul 2009 22:16:39 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A71C225.8070006@arceva.fr> References: <4A71C225.8070006@arceva.fr> Message-ID: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Hi, Sorry for the inconvenience. The last maintenance did not give us much benefit, Our IT team is planning to boost hardware to our servers and working out on a suitable timing to get it done. We will keep you posted before next maintenance and get the speed back. Regards, Prasad On 7/30/09, Fusioncore wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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/20090730/28888849/attachment-0002.html From asha at vtiger.com Thu Jul 30 14:46:54 2009 From: asha at vtiger.com (Asha) Date: Fri, 31 Jul 2009 00:16:54 +0530 Subject: [Vtigercrm-developers] user creation In-Reply-To: <4A71CB6A.1010300@arceva.fr> References: <4A71CB6A.1010300@arceva.fr> Message-ID: Hi Bruno, save function of modules/Users/Users.php is triggered on save of a User. This function in turn triggers saveentity -> insertIntoEntityTable -> which will actually insert the data to required tables (The tables to which the values needs to be inserted is picked from $tab_name variable defined in modules/Users/Users.php) On 7/30/09, Fusioncore wrote: > > Hi All, > > Does anyone now what is the function who save a new user on the database ? > I search all the day and I just found the function who send the email to > the new user (in /modules/users/Save.php around line 185) > > Thanks for your help > > Bruno > _______________________________________________ > 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/20090731/3725fdc6/attachment-0002.html From carloz at gnumerica.org Fri Jul 31 03:11:18 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Fri, 31 Jul 2009 09:11:18 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Message-ID: <4A729916.5060507@gnumerica.org> Hi, I just posted a brief announcement on the italian subforum regarding this (yesterday a number of duplicated posts appeared there, since people are not aware of what's happening and end up "re-submitting" the same article). Keep us updated, Carlo ps: if you are thinking about moving to the (very scalable ;-) Amazon AWS and need some experienced professionals, drop a line :-D Prasad ha scritto: > Hi, > > Sorry for the inconvenience. > > The last maintenance did not give us much benefit, Our IT team is > planning to boost hardware to our servers and > working out on a suitable timing to get it done. > > We will keep you posted before next maintenance and get the speed back. > > Regards, > Prasad > > On 7/30/09, *Fusioncore* > wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > >> wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 From prasad at vtiger.com Fri Jul 31 03:14:32 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 31 Jul 2009 12:44:32 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A729916.5060507@gnumerica.org> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> <4A729916.5060507@gnumerica.org> Message-ID: <39d18b250907310014q94d6a00t739c27ca26ff86c8@mail.gmail.com> Carlo, Thank you for the support. Regards, Prasad On 7/31/09, Carlo Beschi wrote: > > Hi, > > I just posted a brief announcement on the italian subforum regarding > this (yesterday a number of duplicated posts appeared there, since > people are not aware of what's happening and end up "re-submitting" the > same article). > > Keep us updated, > > Carlo > > ps: if you are thinking about moving to the (very scalable ;-) Amazon > AWS and need some experienced professionals, drop a line :-D > > > > Prasad ha scritto: > > > Hi, > > > > Sorry for the inconvenience. > > > > The last maintenance did not give us much benefit, Our IT team is > > planning to boost hardware to our servers and > > working out on a suitable timing to get it done. > > > > We will keep you posted before next maintenance and get the speed back. > > > > Regards, > > Prasad > > > > > On 7/30/09, *Fusioncore* > wrote: > > > > Hi, > > The vtiger website and vtiger forum are always extremly slow and > produce > > time out > > The forum first page appear after around 2min and a search after 4-5 > min > > > > Varma a ?crit : > > > Hi All, > > > > > > Vtiger website (vtiger.com > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > ) are up and running now. > > > > > > > > Please check it and let us know if you have any problem access > them. > > > > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > > > > > >> wrote: > > > > > > Hi All, > > > > > > > > Vtiger website (vtiger.com > > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > > ) will be down for > > > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 > PM > > > IST). > > > > > > Sorry for the inconvenience. We shall update you as soon as > they > > > are up and running again. > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > > > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > _______________________________________________ > 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/20090731/2ab00b1d/attachment-0002.html From fp at crm-now.de Fri Jul 31 10:19:50 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Fri, 31 Jul 2009 16:19:50 +0200 Subject: [Vtigercrm-developers] accessing the forum impossible In-Reply-To: References: Message-ID: <010a01ca11e9$f78ee630$e6acb290$@de> At least for me it is impossible to login into the vtiger forum today in order to respond to some postings. This is very unfortunate. From ml at arceva.fr Fri Jul 31 12:14:52 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:14:52 +0200 Subject: [Vtigercrm-developers] debug Message-ID: <4A73187C.4090200@arceva.fr> Hi all I search to active debug on 5.1.0 but the method used on the 504 didn't work Do you have an idea ? Thanks, Bruno From joe at tsolucio.com Fri Jul 31 12:28:30 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:28:30 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A73187C.4090200@arceva.fr> References: <4A73187C.4090200@arceva.fr> Message-ID: <4A731BAE.2040808@tsolucio.com> We now have a global performance config file, you have to activate it there first: config.performance.php Joe TSolucio Fusioncore escribi?: > Hi all > I search to active debug on 5.1.0 but the method used on the 504 didn't work > Do you have an idea ? > Thanks, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From ml at arceva.fr Fri Jul 31 12:36:47 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:36:47 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731BAE.2040808@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> Message-ID: <4A731D9F.9010703@arceva.fr> Thanks Joe but, I activate debug in this file but I don't have any result. I search the new function who provide the same result than : //$this->database->debug = true; log4php.rootLogger=DEBUG,A1 Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > We now have a global performance config file, you have to activate it > there first: > > config.performance.php > > Joe > TSolucio > > Fusioncore escribi?: > >> Hi all >> I search to active debug on 5.1.0 but the method used on the 504 didn't work >> Do you have an idea ? >> Thanks, >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From joe at tsolucio.com Fri Jul 31 12:50:03 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:50:03 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731D9F.9010703@arceva.fr> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> Message-ID: <4A7320BB.1050708@tsolucio.com> You have to activate debug in this new file: $this->database->debug = true; and THEN, configure log4php.properties as we did before Joe TSolucio Fusioncore escribi?: > Thanks Joe but, > I activate debug in this file but I don't have any result. > I search the new function who provide the same result than : > > //$this->database->debug = true; > log4php.rootLogger=DEBUG,A1 > > Thanks, > Bruno > > French-vtiger Manager > > > > Joe Bordes a ?crit : > >> We now have a global performance config file, you have to activate it >> there first: >> >> config.performance.php >> >> Joe >> TSolucio >> >> Fusioncore escribi?: >> >> >>> Hi all >>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>> Do you have an idea ? >>> Thanks, >>> Bruno >>> _______________________________________________ >>> 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/20090731/b0fca5d2/attachment-0002.html From ml at arceva.fr Fri Jul 31 15:58:09 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 21:58:09 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A7320BB.1050708@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> <4A7320BB.1050708@tsolucio.com> Message-ID: <4A734CD1.1080202@arceva.fr> I do it but nothing work correctly I active in the new file and I modify the file LoggerPropertyConfigurator.php and nothing work And I found function setDebug($value) { $this->database->debug = $value; } in the peardatabase file. Where I can change this var : $value ? Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > You have to activate debug in this new file: > > $this->database->debug = true; > > and THEN, configure log4php.properties as we did before > > Joe > TSolucio > > Fusioncore escribi?: >> Thanks Joe but, >> I activate debug in this file but I don't have any result. >> I search the new function who provide the same result than : >> >> //$this->database->debug = true; >> log4php.rootLogger=DEBUG,A1 >> >> Thanks, >> Bruno >> >> French-vtiger Manager >> >> >> >> Joe Bordes a ?crit : >> >>> We now have a global performance config file, you have to activate it >>> there first: >>> >>> config.performance.php >>> >>> Joe >>> TSolucio >>> >>> Fusioncore escribi?: >>> >>> >>>> Hi all >>>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>>> Do you have an idea ? >>>> Thanks, >>>> Bruno >>>> _______________________________________________ >>>> 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 >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From j4c0b1 at gmail.com Fri Jul 31 17:17:20 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Fri, 31 Jul 2009 18:17:20 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70DEA5.9040609@internode.on.net> References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: teh qualitty is very poor. I can not hear or understand what is beeing tlaked at the video and the image is fuzzy with much noise. Do y have something better ? hasta -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi 2009/7/29 Andrew Galdes > Thanks all who replied, > > http://www.impresser.com.au/vtigercrm-video/ > > You can see a demo at the above URL. The above link is nothing fancy but a > directory listing at this stage. The video is 6.87MB in WMV format. It's the > chapter on Contact management. I'd like to have a few others uploaded as > they are ready. Sorry for the WMV format but for testing it is simplest. > > Note that the video set was recorded (screen and sound only) during real > training so the language used is very natural - possibly not what you'd > expect from a formal training set. Also, it's intended to have these for > sale when completed. Your input till then is appreciated. > > -Andrew G > > > Cicero Jacobi Filho wrote: > > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > >> Hello all, >> >> We've developed a training video pack for vTiger CRM. I'd like some >> feedback on the supposed demand for such a training tool. Before we >> spend too much time on the final product development and marketing of >> the video pack, i'd like to know if you, your clients or peers would >> benefit from such a tool. >> >> Feel free to post off list as this might infringe on list policy. >> >> -- >> -Andrew Galdes >> Managing Director >> Impresser Pty Ltd >> >> Ph: 08 8357 2024 >> Mb: 0422 927 598 >> www.impresser.com.au >> >> I.T Services To Science Companies >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > > ------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598www.impresser.com.au > > I.T Services To Science Companies > > > _______________________________________________ > 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/20090731/637ccd98/attachment-0002.html From galdes at internode.on.net Fri Jul 31 20:07:14 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 09:37:14 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A738732.6030404@internode.on.net> Thanks, Can you tell me which media player and OS you're using? At this end (and others have agreed) the codec is less then a perfect choice. We'll recompile with a different codec. The version you saw was with WMV. However, we've already started recompiling with MOV which is giving us better results. -Andrew G Cicero Jacobi Filho wrote: > teh qualitty is very poor. > > I can not hear or understand what is beeing tlaked at the video and > the image is fuzzy with much noise. > > Do y have something better ? > > hasta ce Companies From asha at vtiger.com Wed Jul 1 00:07:48 2009 From: asha at vtiger.com (Asha) Date: Wed, 1 Jul 2009 12:37:48 +0530 Subject: [Vtigercrm-developers] Slow performing query In-Reply-To: References: Message-ID: Hi All, This issue is reported on trac ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6108) and we have recently integrated the changes. On 7/1/09, Lee Valentine wrote: > > Hi Ding, > > That was just applied to 5.1rc2. However I did the query originally in > 5.0.4. > > Thanks, > Lee > > > 2009/7/1 ding jianting : > > > Hi,Lee > > What is version of your vtigerCRM? > > > > On Wed, Jul 1, 2009 at 8:21 AM, Lee Valentine wrote: > >> > >> Hey Guys, > >> > >> We were having performance issues with the crm taking ages to load so > >> I had all the queries being executed printed to the screen with the > >> duration each query was taking. I found: > >> > >> select distinct(setype) from vtiger_crmentity where crmid in (select > >> parent_id from vtiger_troubletickets) > >> 106.894966125 seconds. > >> > >> I tracked this down to modules/CustomView/CustomView.php line 1212 (in > >> function getSalesRelatedName) > >> $sql = "select distinct(setype) from vtiger_crmentity where crmid in > >> (select ". $adb->sql_escape_string($fieldname)." from ". > >> $adb->sql_escape_string($tablename).")"; > >> > >> I replaced it with the following: > >> $sql = "select distinct(setype) from vtiger_crmentity c INNER JOIN > >> ".$adb->sql_escape_string($tablename)." t ON > >> t.".$adb->sql_escape_string($fieldname)." = c.crmid"; > >> > >> And received the result: > >> select distinct(setype) from vtiger_crmentity c INNER JOIN > >> vtiger_troubletickets t ON t.parent_id = c.crmid > >> 0.0270490646362 seconds. > >> > >> This has given our crm a MAJOR performance increase. > >> > >> Thanks, > >> Lee > >> _______________________________________________ > >> Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > > > > _______________________________________________ > > 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/20090701/71ed0548/attachment-0003.html From asha at vtiger.com Fri Jul 3 09:02:25 2009 From: asha at vtiger.com (Asha) Date: Fri, 3 Jul 2009 21:32:25 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 released Message-ID: Hi All, We are glad to announce the availability of 5.1.0 RC today. This release covers several new features, enhancements and bug fixes. Download information is available at this link, and view the RC Release Notes here. Online Demo: http://en.vtiger.com/wip We have put up some demo tutorials for installation and migration that are available here . *Please evaluate it and share your feedback.* Report any issues you notice at http://trac.vtiger.com *with version set to 5.1.0 RC*. Make sure to provide complete details of the issue. PS: Did you get a chance to Vote for vtiger CRM ( Sourceforge CCA09 ) -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090703/9cdde483/attachment-0003.html From christophe-bouchet at laposte.net Mon Jul 6 06:44:50 2009 From: christophe-bouchet at laposte.net (Christophe BOUCHET) Date: Mon, 06 Jul 2009 15:44:50 +0200 Subject: [Vtigercrm-developers] Cosmetics in vtiger RC 5.1.0 Message-ID: <1246887890.3235.26.camel@christophe-laptop> Hi, When creating an account, lead, contact, lack a space between the tabs (file /Smarty/templates/CreateView.tpl missing between lines 108 and 109 ' '), and CSS can not be applied to the block 'Description' file /Smarty/templates/EditViewUI.tpl line 116 missing class="dvtCellInfo") Thank you Best regards Christophe BOUCHET From djeandot at gmail.com Fri Jul 10 01:50:46 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 10:50:46 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC Message-ID: Hello, I try to migrate my CRM into the latest version for testing but I get a problem during the process of migration. When I specify the name of database and after the "next" step, I get this : *Fatal error*: Call to a member function NumRows() on a non-object in * /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try to migrate this 5.0.4 to 5.1 RC, I get an error. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090710/98dbebcb/attachment-0003.html From stefan.lorenz at burdadirect.de Fri Jul 10 03:56:48 2009 From: stefan.lorenz at burdadirect.de (DJLorry) Date: Fri, 10 Jul 2009 03:56:48 -0700 (PDT) Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Message-ID: <24408556.post@talk.nabble.com> Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From asha at vtiger.com Fri Jul 10 04:21:59 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:51:59 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: <24408556.post@talk.nabble.com> References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry wrote: > > > Hello, > how can I add a second account or person field in these modules ? > The problem can't be solved by just adding a custom field and changing the > uitype. (Which works when no account field already exits, though) > The uitype 50 changes the custom field to contain the button for the > popup-window for account-selection. > The problem is that a thereby selected account is stored in the modul's > default account field whereas the custom field stays blank. I have added a > query to show the account if I put an accountid in the customfield's table > in mysql. So the remainig problem is how to get vtiger to store the > selected > account's Id in the custom field and not in the account_id field. Where is > the connection between popup window,save button and the insertion into the > database ? How can I get vtiger not to treat both the custom and the > already > existing field as the same when storing the account-id ? The same problem > occurs with a custom person field if one is already part of a module by > default. > > I hope someone is able to help. > > Regards > Stefan > > > > -- > View this message in context: > http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html > Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/bc8c2f9c/attachment-0003.html From asha at vtiger.com Fri Jul 10 04:23:18 2009 From: asha at vtiger.com (Asha) Date: Fri, 10 Jul 2009 16:53:18 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, This would happen if the connection to your database fails with the database information you have provided. Can you brief out the exact steps followed to migrate from 5.0.4 to 5.1.0? On 7/10/09, den jean wrote: > > Hello, > > I try to migrate my CRM into the latest version for testing but I get a > problem during the process of migration. > > When I specify the name of database and after the "next" step, I get this : > > > *Fatal error*: Call to a member function NumRows() on a non-object in * > /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* > > I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I try > to migrate this 5.0.4 to 5.1 RC, I get an error. > > Regards, > > _______________________________________________ > 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/20090710/a1db76f6/attachment-0003.html From djeandot at gmail.com Fri Jul 10 05:27:04 2009 From: djeandot at gmail.com (den jean) Date: Fri, 10 Jul 2009 14:27:04 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Thanks you for your answer. So I start to click on "Migrate" and I'm on the "Installation Check" with all the values to YES and I choose all the optional modules then I get that : Previous Installation Path : /var/www/vtiger504/ Previous Installation Version : 5.0.4 Admin Username : I give my admin name (but it's not the same as phpmyadmin) Admin Password : ****** Database Name for Migraiton : I give the database of the previous installation. And then I click on "Next", I get the error. Regards, 2009/7/10 Asha > Hi, > > This would happen if the connection to your database fails with the > database information you have provided. Can you brief out the exact steps > followed to migrate from 5.0.4 to 5.1.0? > > On 7/10/09, den jean wrote: > >> Hello, >> >> I try to migrate my CRM into the latest version for testing but I get a >> problem during the process of migration. >> >> When I specify the name of database and after the "next" step, I get this >> : >> >> >> *Fatal error*: Call to a member function NumRows() on a non-object in * >> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >> >> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >> try to migrate this 5.0.4 to 5.1 RC, I get an error. >> >> Regards, >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > 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/20090710/4a64aee2/attachment-0003.html From Stefan.Lorenz at burdadirect.de Fri Jul 10 05:48:59 2009 From: Stefan.Lorenz at burdadirect.de (Lorenz Stefan) Date: Fri, 10 Jul 2009 14:48:59 +0200 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Thanks for your reply. I had a quick look at the documentation of vtlib but it remains rather unclear to me how to use it with already existing modules such as quotes etc. Would you give some hints, please ? Reagrds Stefan ________________________________ Von: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Im Auftrag von Asha Gesendet: Freitag, 10. Juli 2009 13:22 An: vtigercrm-developers at lists.vtigercrm.com Betreff: Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote Hi Stefan, I suggest you to try out vtlib. Use uitype 10 of vtlib to create such custom fields. Hope that meets your requirement which will not clash with the existing referencing field. On 7/10/09, DJLorry > wrote: Hello, how can I add a second account or person field in these modules ? The problem can't be solved by just adding a custom field and changing the uitype. (Which works when no account field already exits, though) The uitype 50 changes the custom field to contain the button for the popup-window for account-selection. The problem is that a thereby selected account is stored in the modul's default account field whereas the custom field stays blank. I have added a query to show the account if I put an accountid in the customfield's table in mysql. So the remainig problem is how to get vtiger to store the selected account's Id in the custom field and not in the account_id field. Where is the connection between popup window,save button and the insertion into the database ? How can I get vtiger not to treat both the custom and the already existing field as the same when storing the account-id ? The same problem occurs with a custom person field if one is already part of a module by default. I hope someone is able to help. Regards Stefan -- View this message in context: http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html Sent from the vtigercrm-developers mailing list archive at Nabble.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/20090710/e9aba47e/attachment-0003.html From asha at vtiger.com Fri Jul 10 11:34:52 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:04:52 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Can you check if all the database related information in config.inc.php file of /var/www/vtiger504/ installation is correct (including the database name you given for migration) On 7/10/09, den jean wrote: > > Thanks you for your answer. > > So I start to click on "Migrate" and I'm on the "Installation Check" with > all the values to YES and I choose all the optional modules then I get that > : > > Previous Installation Path : /var/www/vtiger504/ > Previous Installation Version : 5.0.4 > Admin Username : I give my admin name (but it's not the same as phpmyadmin) > Admin Password : ****** > Database Name for Migraiton : I give the database of the previous > installation. > > And then I click on "Next", I get the error. > > Regards, > > 2009/7/10 Asha > >> Hi, >> >> This would happen if the connection to your database fails with the >> database information you have provided. Can you brief out the exact steps >> followed to migrate from 5.0.4 to 5.1.0? >> >> On 7/10/09, den jean wrote: >> >>> Hello, >>> >>> I try to migrate my CRM into the latest version for testing but I get a >>> problem during the process of migration. >>> >>> When I specify the name of database and after the "next" step, I get this >>> : >>> >>> >>> *Fatal error*: Call to a member function NumRows() on a non-object in * >>> /var/www/vtiger51-test4/include/utils/DBHealthCheck.php* on line *58* >>> >>> I start with a 5.0.3 then I migrate to a 5.0.4 and it's work but when I >>> try to migrate this 5.0.4 to 5.1 RC, I get an error. >>> >>> Regards, >>> >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090711/93402e96/attachment-0003.html From asha at vtiger.com Fri Jul 10 11:36:25 2009 From: asha at vtiger.com (Asha) Date: Sat, 11 Jul 2009 00:06:25 +0530 Subject: [Vtigercrm-developers] [vtigercrm-developers] Adding custom second account field to invoice, sales order, quote In-Reply-To: References: <24408556.post@talk.nabble.com> Message-ID: Hi Stefan, You can get an instance of any of the existing modules and add field for it. The field uitype that I would suggest you is 10. On 7/10/09, Lorenz Stefan wrote: > > Thanks for your reply. I had a quick look at the documentation of vtlib > but it remains rather unclear to me how to use it with already existing > modules such as quotes etc. Would you give some hints, please ? > Reagrds > Stefan > > ------------------------------ > *Von:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *Im Auftrag von *Asha > *Gesendet:* Freitag, 10. Juli 2009 13:22 > *An:* vtigercrm-developers at lists.vtigercrm.com > *Betreff:* Re: [Vtigercrm-developers] [vtigercrm-developers] Adding custom > second account field to invoice, sales order, quote > > Hi Stefan, > > I suggest you to try out vtlib. Use uitype 10 of vtlib to create such > custom fields. Hope that meets your requirement which will not clash with > the existing referencing field. > > On 7/10/09, DJLorry wrote: >> >> >> Hello, >> how can I add a second account or person field in these modules ? >> The problem can't be solved by just adding a custom field and changing the >> uitype. (Which works when no account field already exits, though) >> The uitype 50 changes the custom field to contain the button for the >> popup-window for account-selection. >> The problem is that a thereby selected account is stored in the modul's >> default account field whereas the custom field stays blank. I have added a >> query to show the account if I put an accountid in the customfield's table >> in mysql. So the remainig problem is how to get vtiger to store the >> selected >> account's Id in the custom field and not in the account_id field. Where is >> the connection between popup window,save button and the insertion into the >> database ? How can I get vtiger not to treat both the custom and the >> already >> existing field as the same when storing the account-id ? The same problem >> occurs with a custom person field if one is already part of a module by >> default. >> >> I hope someone is able to help. >> >> Regards >> Stefan >> >> >> >> -- >> View this message in context: >> http://www.nabble.com/Adding-custom-second-account-field-to-invoice%2C-sales-order%2C-quote-tp24408556p24408556.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Asha > vtiger Team > > _______________________________________________ > 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/20090711/8169f0ef/attachment-0003.html From djeandot at gmail.com Mon Jul 13 01:21:55 2009 From: djeandot at gmail.com (den jean) Date: Mon, 13 Jul 2009 10:21:55 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, I ckeck the config.inc.php and I think it's correct. I just wondering if the "Database Name for Migraiton" should be empty or this the previous database ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090713/1c1a72e7/attachment-0003.html From asha at vtiger.com Mon Jul 13 11:19:35 2009 From: asha at vtiger.com (Asha) Date: Mon, 13 Jul 2009 23:49:35 +0530 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: Hi, Either your new database should have the data copied from previous database (OR) new database can be empty and you can copy the data from previous database in the next step of the migration wizard (which we do not recommend). In your case, looks like the user credentials (mysql username/password from previous installation config file) is not correct to connect to the new database name specified. Please check if that user has the privileges on the new database. On 7/13/09, den jean wrote: > > Hi, > > I ckeck the config.inc.php and I think it's correct. > I just wondering if the "Database Name for Migraiton" should be empty or > this the previous database ? > > Regards, > > _______________________________________________ > 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/20090713/c635a315/attachment-0003.html From ml at arceva.fr Mon Jul 13 16:44:59 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 14 Jul 2009 01:44:59 +0200 Subject: [Vtigercrm-developers] translate firefox extension Message-ID: <4A5BC6FB.1040201@arceva.fr> Hi all, I actually translate the firefox plugin but I have a big problem with accent Does anyone know how to insert accent in the xpi files (vtigertoolbar.xul for example ?) I have test with ? ou é, the first create a screen bug and the last close the extension Thanks, Bruno From carloz at gnumerica.org Tue Jul 14 07:43:07 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Tue, 14 Jul 2009 16:43:07 +0200 Subject: [Vtigercrm-developers] translate firefox extension In-Reply-To: <4A5BC6FB.1040201@arceva.fr> References: <4A5BC6FB.1040201@arceva.fr> Message-ID: <4A5C997B.9080806@gnumerica.org> Hi Bruno, I did some googling on this, and here's my findings: http://www.rietta.com/firefox/Tutorial/locale.html https://developer.mozilla.org/en/International_characters_in_XUL_JavaScript http://forums.mozillazine.org/viewtopic.php?f=19&t=337032&start=0&st=0&sk=t&sd=a https://developer.mozilla.org/En/XUL Please keep me updated about your localization effort. I'm the coordinator of the italian community translation team (see http://vtiger-italia.net/ and http://vtiger-italia.net/mailman/listinfo/traduttori_vtiger-italia.net ) and we are definitely interested in the issue. Ciao carloz Fusioncore ha scritto: > Hi all, > I actually translate the firefox plugin but I have a big problem with accent > Does anyone know how to insert accent in the xpi files > (vtigertoolbar.xul for example ?) I have test with ? ou é, the > first create a screen bug and the last close the extension > > Thanks, > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From djeandot at gmail.com Wed Jul 15 01:04:19 2009 From: djeandot at gmail.com (den jean) Date: Wed, 15 Jul 2009 10:04:19 +0200 Subject: [Vtigercrm-developers] Migration 5.0.4 to 5.1 RC In-Reply-To: References: Message-ID: I create a user for the database with the same login and pwd as the admin user on the CRM, but the problem is still here. Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090715/dec67711/attachment-0003.html From prasad at vtiger.com Sun Jul 19 07:11:45 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 19:41:45 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing Message-ID: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090719/63e5d5f8/attachment-0003.html From brett.hooker at roarz.com Sun Jul 19 07:51:07 2009 From: brett.hooker at roarz.com (Brett Hooker) Date: Mon, 20 Jul 2009 00:51:07 +1000 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> Message-ID: <4A6332DB.4090809@roarz.com> Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug > fixes into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090720/a7c578bb/attachment-0003.html From prasad at vtiger.com Sun Jul 19 08:24:22 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 19 Jul 2009 20:54:22 +0530 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 Migration Testing In-Reply-To: <4A6332DB.4090809@roarz.com> References: <39d18b250907190711i693e8bc4v223c00e595f147d4@mail.gmail.com> <4A6332DB.4090809@roarz.com> Message-ID: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: > > Prasad, > > Just clarifying, do you want testing done on the RC code line, or the > latest code in SVN? > > > Thanks, > Brett > > Prasad wrote: > > Dear developers, > > Based on the feedback of 5.1.0RC we have checked in few migration bug fixes > into our repository. > > We request community to carry out migration testing on the product and > report any issues to us. > > Regards, > Prasad > 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/20090719/93fa1713/attachment-0003.html From s.shaw at amalganet.com Sun Jul 19 09:47:55 2009 From: s.shaw at amalganet.com (AML) Date: Sun, 19 Jul 2009 17:47:55 +0100 Subject: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting In-Reply-To: <39d18b250907190824r3bc3cf30va0465a14f0a2e141@mail.gmail.com> Message-ID: <200907191648.n6JGmKbh022948@vtigerforge.com> I have an upgrade to test, from 5.0.4 Is it possible to download the zip file as my SVN knowledge is not great. Ken _____ From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: 19 July 2009 16:24 To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Call for vtiger CRM 5.1.0 MigrationTesting Hi Brett, Thanks for the quick response. I was recommending the testing on the latest code in SVN. http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/5.1 Regards, Prasad On 7/19/09, Brett Hooker wrote: Prasad, Just clarifying, do you want testing done on the RC code line, or the latest code in SVN? Thanks, Brett Prasad wrote: Dear developers, Based on the feedback of 5.1.0RC we have checked in few migration bug fixes into our repository. We request community to carry out migration testing on the product and report any issues to us. Regards, Prasad 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/20090719/f67018ab/attachment-0003.html From asha at vtiger.com Wed Jul 22 06:47:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:17:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone Message-ID: Hi All, We are glad to announce the release of vtiger 5.1.0 today! This release addresses around 150+ features/enhancements, 700 bug fixes besides performance improvements. We are hopeful that you will like the new release. Following are some of the important features added: - Webservices API - Workflow - Vtlib library - Services support - Layout Editor - Duplicate Merging - Mail Scanner - Mass Edit - Multi-Currency Support - Recurring Invoice Thank you for all your patience and support in making this a big release. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Release Notes is available here. Download links are given below: * vtiger CRM 5.1.0 Exe Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (Windows standalone installer) * vtiger CRM 5.1.0 Bin Installer- Bundled with MySQL, Apache, PHP and vtiger CRM Source (*nix standalone installer) * vtiger CRM 5.1.0 Source .tar.gz- vtiger CRM Source (Platform-independent) * vtiger CRM 5.0.x to 5.1.0 Patch * vtiger CRM 5.1.0 Firefox plugin * vtiger CRM 5.1.0 Outlook plugin * vtiger CRM 5.1.0 Thunderbird plugin * vtiger CRM 5.1.0 Customer Portal Note: vtiger CRM 5.0.4 Office Plugin will continue to work with vtiger CRM 5.1.0 Online Demo: http://en.vtiger.com Documentation: http://wiki.vtiger.com We welcome your feedback. Please report any issues on Tracor on vtiger Forums . -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/4460e149/attachment-0003.html From manilal at ejyothi.com Wed Jul 22 07:00:47 2009 From: manilal at ejyothi.com (Manilal K M) Date: Wed, 22 Jul 2009 19:30:47 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Quoting Asha : > Hi All, > > We are glad to announce the release of vtiger 5.1.0 today! This release > addresses around 150+ features/enhancements, 700 bug fixes besides > performance improvements. We are hopeful that you will like the new release. > > The download link in the vtiger.com home page still leads to 5.0.4. You should follow the download links in the email. regards -- Manilal K M eJyothi Services http://www.ejyothi.com From asha at vtiger.com Wed Jul 22 07:24:14 2009 From: asha at vtiger.com (Asha) Date: Wed, 22 Jul 2009 19:54:14 +0530 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> References: <20090722193047.10213m5f3o4igdq8@app.ascellatech.com> Message-ID: Hi Manilal, Thanks for pointing it out. We have updated the links. Please check it out. On 7/22/09, Manilal K M wrote: > > > Quoting Asha : > > > Hi All, > > > > We are glad to announce the release of vtiger 5.1.0 today! This release > > addresses around 150+ features/enhancements, 700 bug fixes besides > > performance improvements. We are hopeful that you will like the new > release. > > > > > > > > The download link in the vtiger.com home page still leads to 5.0.4. > You should follow the download links in the email. > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090722/f2cae4e2/attachment-0003.html From galdes at internode.on.net Wed Jul 22 17:11:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 09:41:33 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: Message-ID: <4A67AAB5.1030608@internode.on.net> Hello all, I've upgraded from 5.01 to 5.10 using the migration instructions at http://wiki.vtiger.com/index.php/vtiger510:Migration It seemed to progress through as intended but when i log in (as an Admin user) i see no information on the Home Page but there is a top menu. I select Contacts and i get the following error: *Fatal error*: Call to a member function FetchRow() on a non-object in */home//public_html/vtigercrm/include/database/PearDatabase.php* on line *645 *The same for Accounts. I click on Settings and the same thing happens as did with Home Page - the page load ok but no information within it. Any ideas? What info might help you? This is running on a cPanel. vtiger was installed via source. Cheers, -Andrew Galdes * * -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/d4f2c0d7/attachment-0003.html From dfar2008 at gmail.com Wed Jul 22 18:16:58 2009 From: dfar2008 at gmail.com (ding jianting) Date: Thu, 23 Jul 2009 09:16:58 +0800 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: <4A67AAB5.1030608@internode.on.net> References: <4A67AAB5.1030608@internode.on.net> Message-ID: Hi,Andrew Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes wrote: > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions at > http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an Admin > user) i see no information on the Home Page but there is a top menu. I > select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a non-object in * > /home//public_html/vtigercrm/include/database/PearDatabase.php*on line > *645 > > *The same for Accounts. I click on Settings and the same thing happens as > did with Home Page - the page load ok but no information within it. > > Any ideas? What info might help you? This is running on a cPanel. vtiger > was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- ________________________________________ ????CRM ?? ???????????????631????? ???021-64876448 ??:021-64876441 ???(0)13701696656 Email:dfar2008 at gmail.com ----------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/22ac5120/attachment-0003.html From prasad at vtiger.com Wed Jul 22 18:40:33 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 07:10:33 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down Message-ID: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/a975b7a4/attachment-0003.html From galdes at internode.on.net Wed Jul 22 19:56:41 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 23 Jul 2009 12:26:41 +0930 Subject: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone In-Reply-To: References: <4A67AAB5.1030608@internode.on.net> Message-ID: <4A67D169.9000208@internode.on.net> Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c2b2cf7f/attachment-0003.html From prasad at vtiger.com Wed Jul 22 20:07:42 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 23 Jul 2009 08:37:42 +0530 Subject: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down In-Reply-To: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/ed365db5/attachment-0003.html From pbucolo at vodafone.it Thu Jul 23 01:44:45 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 10:44:45 +0200 Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown In-Reply-To: <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> References: <39d18b250907221840m26b03ca1h40c18d4f75dc7e68@mail.gmail.com> <39d18b250907222007y409711d5me78e2509ba5a7487@mail.gmail.com> Message-ID: Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0003.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment-0003.jpe From vikas at vtiger.com Thu Jul 23 05:08:28 2009 From: vikas at vtiger.com (Vikas Jain) Date: Thu, 23 Jul 2009 17:38:28 +0530 Subject: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: > > 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) > 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) > 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 23 Jul 2009 12:26:41 +0930 > From: Andrew Galdes > Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A > Major > Milestone > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: <4A67D169.9000208 at internode.on.net> > Content-Type: text/plain; charset="gb2312" > > Thanks for the help. Let me know if you want more of that log file. Note > that the date is incorrect on in the following: > > Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] > Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] > Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V] > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_cvcolumnlist > (cvid,columnindex,columnname) values(?,?,?) > Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query > parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into > vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values > (?,?,?,?,?) > Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query > parameters : > [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, > Approved] > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) > Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query > parameters : [1,AUD,AU,$,1,Active,-11] > > -Andrew Galdes > > > > Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the > module(Utilities) language file for the selected language(en_us) or the > default language(en_us) > > > ding jianting wrote: > > Hi,Andrew > > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > > wrote: > > > > Hello all, > > > > I've upgraded from 5.01 to 5.10 using the migration instructions > > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > > > It seemed to progress through as intended but when i log in (as an > > Admin user) i see no information on the Home Page but there is a > > top menu. I select Contacts and i get the following error: > > > > *Fatal error*: Call to a member function FetchRow() on a > > non-object in > > > */home//public_html/vtigercrm/include/database/PearDatabase.php* > > on line *645 > > > > *The same for Accounts. I click on Settings and the same thing > > happens as did with Home Page - the page load ok but no > > information within it. > > > > Any ideas? What info might help you? This is running on a cPanel. > > vtiger was installed via source. > > > > Cheers, > > -Andrew Galdes > > > > * > > * > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > > > > > > -- > > ________________________________________ > > ????CRM ?? > > ???????????????631????? > > ???021-64876448 ??:021-64876441 > > ???(0)13701696656 Email:dfar2008 at gmail.com > > > > > ----------------------------------------------------------------------- > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/c2b2cf7f/attachment-0001.htm > > ------------------------------ > > Message: 2 > Date: Thu, 23 Jul 2009 08:37:42 +0530 > From: Prasad > Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: > trac.vtiger.com is down > To: vtigercrm-developers at lists.vtigercrm.com > Message-ID: > <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > > > Dear members, > > > > Our issue tracker server disk space is pilled up with log and needs a > > cleanup. > > > > Administrator team is working to get it back back soon. Sorry for the > > inconvenience caused. > > > > Regards, > > Prasad > > vtiger Team > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090722/ed365db5/attachment-0001.htm > > ------------------------------ > > Message: 3 > Date: Thu, 23 Jul 2009 10:44:45 +0200 > From: "Pierluigi Bucolo" > Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: > trac.vtiger.com isdown > To: > Message-ID: > Content-Type: text/plain; charset="iso-8859-1" > > Side by side view of Diff, using trac doesn?t work with FFX 3.5. > > It?s work with IE. > > > > The error is in attach. > > > > Regards, > > - Pierluigi > > > > _____ > > Da: vtigercrm-developers-bounces at lists.vtigercrm.com > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di > Prasad > Inviato: gioved? 23 luglio 2009 05.08 > A: vtigercrm-developers at lists.vtigercrm.com > Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com > isdown > > > > trac.vtiger.com and forge.vtiger.com servers are back to work. Please > update > us if you find any inconsistent behavior. > > Regards, > Prasad > vtiger Team > > On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/attachment.htm > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: Side-By-Side.JPG > Type: image/jpeg > Size: 16568 bytes > Desc: not available > Url : > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/c732e265/Side-By-Side.jpeg > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 43, Issue 5 > *************************************************** > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/0683591b/attachment-0003.html From ml at arceva.fr Thu Jul 23 05:18:04 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 14:18:04 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks Message-ID: <4A6854FC.8090708@arceva.fr> Hi all, I found a small bug on the home page block In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save and cancel button label are hardcode Regards, Bruno From nitin at vtiger.com Thu Jul 23 06:12:28 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Thu, 23 Jul 2009 06:12:28 -0700 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6854FC.8090708@arceva.fr> References: <4A6854FC.8090708@arceva.fr> Message-ID: Hi Bruno, The Buttons you are talking about are not hardcoded, you can change the button label from /include/language/en_us.lang.php file. Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL Change these strings as they are handling save and cancel button through the vtigercrm. Regards, Nitin Goyal Vtiger Team On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore wrote: > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > 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/20090723/6eb84910/attachment-0003.html From pbucolo at vodafone.it Thu Jul 23 06:32:39 2009 From: pbucolo at vodafone.it (Pierluigi Bucolo) Date: Thu, 23 Jul 2009 15:32:39 +0200 Subject: [Vtigercrm-developers] R: vtigercrm-developers Digest, Vol 43, Issue 5 In-Reply-To: References: Message-ID: OK. Now it works. Regards, - Pierluigi - _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Vikas Jain Inviato: gioved? 23 luglio 2009 14.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtigercrm-developers Digest, Vol 43,Issue 5 Hi Pierluigi Bucolo, We have tried side by side view in Firefox 3.5.1 and it works fine . Can you check and update us Regards, Vikas, Vtiger Team Today's Topics: 1. Re: vtiger CRM 5.1.0 Release - A Major Milestone (Andrew Galdes) 2. Re: vtiger Issue Tracker: trac.vtiger.com is down (Prasad) 3. R: vtiger Issue Tracker: trac.vtiger.com isdown (Pierluigi Bucolo) ---------------------------------------------------------------------- Message: 1 Date: Thu, 23 Jul 2009 12:26:41 +0930 From: Andrew Galdes Subject: Re: [Vtigercrm-developers] vtiger CRM 5.1.0 Release - A Major Milestone To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <4A67D169.9000208 at internode.on.net> Content-Type: text/plain; charset="gb2312" Thanks for the help. Let me know if you want more of that log file. Note that the date is incorrect on in the following: Mon Jul 6 12:08:21 2009,021 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,022 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:subject:subject:SalesOrder_Subject:V] Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,023 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,1,vtiger_account:accountname:accountname:SalesOrder_Account_Name:V] Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,025 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,2,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V] Mon Jul 6 12:08:21 2009,026 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,027 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,3,vtiger_crmentity:smownerid:assigned_user_id:SalesOrder_Assigned_To:V] Mon Jul 6 12:08:21 2009,028 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,029 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,4,vtiger_soshipads:ship_street:ship_street:SalesOrder_Shipping_Address:V ] Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvcolumnlist (cvid,columnindex,columnname) values(?,?,?) Mon Jul 6 12:08:21 2009,030 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,5,vtiger_salesorder:carrier:carrier:SalesOrder_Carrier:V] Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_cvadvfilter(cvid,columnindex,columnname,comparator,value) values (?,?,?,?,?) Mon Jul 6 12:08:21 2009,033 [28643] DEBUG INSTALL - Prepared sql query parameters : [37,0,vtiger_salesorder:sostatus:sostatus:SalesOrder_Status:V,e,Created, Approved] Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query being executed : insert into vtiger_currency_info values(?,?,?,?,?,?,?) Mon Jul 6 12:08:21 2009,055 [28643] DEBUG INSTALL - Prepared sql query parameters : [1,AUD,AU,$,1,Active,-11] -Andrew Galdes Tue Jul 7 16:09:09 2009,115 [16685] FATAL index - Unable to load the module(Utilities) language file for the selected language(en_us) or the default language(en_us) ding jianting wrote: > Hi,Andrew > Pls check *vtigercrm/*logs/vtigercrm.log for errors and paste it to here. > > On Thu, Jul 23, 2009 at 8:11 AM, Andrew Galdes > > wrote: > > Hello all, > > I've upgraded from 5.01 to 5.10 using the migration instructions > at http://wiki.vtiger.com/index.php/vtiger510:Migration > > It seemed to progress through as intended but when i log in (as an > Admin user) i see no information on the Home Page but there is a > top menu. I select Contacts and i get the following error: > > *Fatal error*: Call to a member function FetchRow() on a > non-object in > */home//public_html/vtigercrm/include/database/PearDatabase.php* > on line *645 > > *The same for Accounts. I click on Settings and the same thing > happens as did with Home Page - the page load ok but no > information within it. > > Any ideas? What info might help you? This is running on a cPanel. > vtiger was installed via source. > > Cheers, > -Andrew Galdes > > * > * > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > ________________________________________ > ????CRM ?? > ???????????????631????? > ???021-64876448 ??:021-64876441 > ???(0)13701696656 Email:dfar2008 at gmail.com > > > ----------------------------------------------------------------------- > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/c2b2cf7f/attachment-0001.htm ------------------------------ Message: 2 Date: Thu, 23 Jul 2009 08:37:42 +0530 From: Prasad Subject: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com is down To: vtigercrm-developers at lists.vtigercrm.com Message-ID: <39d18b250907222007y409711d5me78e2509ba5a7487 at mail.gmail.com> Content-Type: text/plain; charset="iso-8859-1" trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: > > Dear members, > > Our issue tracker server disk space is pilled up with log and needs a > cleanup. > > Administrator team is working to get it back back soon. Sorry for the > inconvenience caused. > > Regards, > Prasad > vtiger Team > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 22/ed365db5/attachment-0001.htm ------------------------------ Message: 3 Date: Thu, 23 Jul 2009 10:44:45 +0200 From: "Pierluigi Bucolo" Subject: [Vtigercrm-developers] R: vtiger Issue Tracker: trac.vtiger.com isdown To: Message-ID: Content-Type: text/plain; charset="iso-8859-1" Side by side view of Diff, using trac doesn?t work with FFX 3.5. It?s work with IE. The error is in attach. Regards, - Pierluigi _____ Da: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] Per conto di Prasad Inviato: gioved? 23 luglio 2009 05.08 A: vtigercrm-developers at lists.vtigercrm.com Oggetto: Re: [Vtigercrm-developers] vtiger Issue Tracker: trac.vtiger.com isdown trac.vtiger.com and forge.vtiger.com servers are back to work. Please update us if you find any inconsistent behavior. Regards, Prasad vtiger Team On 7/23/09, Prasad wrote: Dear members, Our issue tracker server disk space is pilled up with log and needs a cleanup. Administrator team is working to get it back back soon. Sorry for the inconvenience caused. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Side-By-Side.JPG Type: image/jpeg Size: 16568 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/200907 23/c732e265/Side-By-Side.jpeg ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 43, Issue 5 *************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/59e3f9eb/attachment-0003.html From ml at arceva.fr Thu Jul 23 06:47:06 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 23 Jul 2009 15:47:06 +0200 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: References: <4A6854FC.8090708@arceva.fr> Message-ID: <4A6869DA.5060604@arceva.fr> The inclued language file was already translate. In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around line 29: If I replace it by : The buttons labels were transate Regards, Bruno French-vtiger Manager Nitin Goyal a ?crit : > Hi Bruno, > > The Buttons you are talking about are not hardcoded, you can change > the button label from /include/language/en_us.lang.php file. > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > Change these strings as they are handling save and cancel button > through the vtigercrm. > > > Regards, > Nitin Goyal > Vtiger Team > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > wrote: > > Hi all, > I found a small bug on the home page block > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > the save > and cancel button label are hardcode > > Regards, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From fp at crm-now.de Thu Jul 23 07:04:47 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Thu, 23 Jul 2009 16:04:47 +0200 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: References: Message-ID: <005f01ca0b9e$9c19b830$d44d2890$@de> I tried to place a contribution at the vtiger Extension site for the v5.0.1. No luck the latest version offered at the Vtiger Versions picklist is v.5.0.1 RC. Could anybody fix that? Regards, Frank From asha at vtiger.com Thu Jul 23 09:28:31 2009 From: asha at vtiger.com (Asha) Date: Thu, 23 Jul 2009 21:58:31 +0530 Subject: [Vtigercrm-developers] bug in home page Blocks In-Reply-To: <4A6869DA.5060604@arceva.fr> References: <4A6854FC.8090708@arceva.fr> <4A6869DA.5060604@arceva.fr> Message-ID: Hi Bruno, Thanks for identifying the issue. We shall soon address this. We have noted down the issue on our trac system ( http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6191 ) On 7/23/09, Fusioncore wrote: > > The inclued language file was already translate. > In the file /Smarty/templates/modules/HomeBlock.tpl, we can see around > line 29: > > style="height:28px;" width=60%> > class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > If I replace it by : > > style="height:28px;" width=60%> > value="{$APP.LBL_SAVE_BUTTON_LABEL}" class="crmbutton small save" > onclick="saveEntries('maxentries_{$HOME_STUFFID}')"> > value="{$APP.LBL_CANCEL_BUTTON_LABEL}" class="crmbutton small cancel" > onclick="cancelEntries('editRowmodrss_{$HOME_STUFFID}')"> > > > The buttons labels were transate > > Regards, > Bruno > French-vtiger Manager > > > > Nitin Goyal a ?crit : > > > Hi Bruno, > > > > The Buttons you are talking about are not hardcoded, you can change > > the button label from /include/language/en_us.lang.php file. > > > > Search for the string LBL_SAVE_BUTTON_LABEL and LBL_CANCEL_BUTTON_LABEL > > > > Change these strings as they are handling save and cancel button > > through the vtigercrm. > > > > > > Regards, > > Nitin Goyal > > Vtiger Team > > > > > > On Thu, Jul 23, 2009 at 5:18 AM, Fusioncore > > > wrote: > > > > Hi all, > > I found a small bug on the home page block > > In the file /Smarty/templates/Home/HomeBlock.tpl line 17 and 18 > > the save > > and cancel button label are hardcode > > > > Regards, > > Bruno > > _______________________________________________ > > 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/6026aac5/attachment-0003.html From svk at vtiger.com Thu Jul 23 10:21:09 2009 From: svk at vtiger.com (Sreenivas Kanumuru) Date: Thu, 23 Jul 2009 10:21:09 -0700 Subject: [Vtigercrm-developers] missing entry in version picklist at vtiger Extensions site In-Reply-To: <005f01ca0b9e$9c19b830$d44d2890$@de> References: <005f01ca0b9e$9c19b830$d44d2890$@de> Message-ID: <370368f40907231021r74c0af4cg539896c141c9d5db@mail.gmail.com> Frank, Version 5.1 is available now as a choice. thanks, -Sreenivas On Thu, Jul 23, 2009 at 7:04 AM, Frank Piepiorra wrote: > I tried to place a contribution at the vtiger Extension site for the > v5.0.1. > No luck the latest version offered at the Vtiger Versions picklist is > v.5.0.1 RC. Could anybody fix that? > > Regards, > Frank > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Sreenivas Kanumuru vtiger Team Location: Sunnyvale, California Office: +1 (408) 733-3229 Cell: +1 (408) 836-5810 Skype: skanumuru -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090723/70ec43f0/attachment-0003.html From manilal at ejyothi.com Thu Jul 23 23:10:40 2009 From: manilal at ejyothi.com (Manilal K M) Date: Fri, 24 Jul 2009 11:40:40 +0530 Subject: [Vtigercrm-developers] User privileges error Message-ID: <20090724114040.161555wp33un50g0@app.ascellatech.com> Hello all, I tried to post this to vtiger forums, but it's not responding, hence posting this to mailing list as it is very much critical for me. I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am using LDAP authentication and authentication is working fine. But when I created a new user I got the following error message: [code] Parse error: syntax error, unexpected ';' in /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 [/code] Here is the contents of the above file: [code] '','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); ?> [/code] It seems the user is not being added to the database. I have also tried to use the SQL authentication, but no luck so far. Can somebody provide some hints? regards -- Manilal K M eJyothi Services http://www.ejyothi.com From eugene.babiy at gmail.com Fri Jul 24 04:36:01 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Fri, 24 Jul 2009 14:36:01 +0300 Subject: [Vtigercrm-developers] Sending Document from system by e-mail Message-ID: <4A699CA1.3020303@gmail.com> Hi. Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. His business is Engineering Development and he often need to send documents to clients and also to have possibility to store records and data in CRM. Is there a possibility to make easier sending of documents from inside of system on e-mail? Best regards, Eugene Babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090724/c5b83f19/attachment-0003.vcf From asha at vtiger.com Fri Jul 24 05:29:08 2009 From: asha at vtiger.com (Asha) Date: Fri, 24 Jul 2009 17:59:08 +0530 Subject: [Vtigercrm-developers] Sending Document from system by e-mail In-Reply-To: <4A699CA1.3020303@gmail.com> References: <4A699CA1.3020303@gmail.com> Message-ID: Hi Eugene Babiy, As far as understand your requirement, following is what you can do: 1. Create Contacts for each of the clients. 2. Associate the required document to the contact. 3. Go to the detail view of the document and use 'send mail with attachment' link on the right side. 4. Compose mail box with attachment will open up. Select the contact name and send the email. 5. The email will be automatically attached to the Contact. Let me know if you are looking for something else. On 7/24/09, Eugene Babiy wrote: > > Hi. > > Few weeks I'm helping one guy to implement vTiger 5.1.0 on his company. > His business is Engineering Development and he often need to send > documents to clients and also to have possibility to store records and > data in CRM. > > Is there a possibility to make easier sending of documents from inside > of system on e-mail? > > Best regards, Eugene Babiy > > _______________________________________________ > 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/20090724/a0f04a43/attachment-0003.html From alanslists at gmail.com Fri Jul 24 08:09:34 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 16:09:34 +0100 Subject: [Vtigercrm-developers] Asterisk Integration Message-ID: Can someone explain what this chunk of code is for in function function transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? $arr = explode(":", $to); if(is_array($arr)){ $typeCalled = $arr[0]; $to = trim($arr[1]); } This is being called via the Ajax stuff for initiating outbound calls. Our telephone numbers for contacts/leads etc are usually in the form of either: $AREA $NUMBER or they have an international prefix: +$INT (0)$AREA $NUMBER explode() always results in an Array. As we do *not* have a colon in our phone numbers this chunk of code mangles them and afterwards $to is empty. I don't think it should be called for an outgoing call. Alan From pinaki at vtiger.com Fri Jul 24 09:58:22 2009 From: pinaki at vtiger.com (Pinaki Das) Date: Fri, 24 Jul 2009 22:28:22 +0530 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: References: Message-ID: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Hi Alan, This issue has been fixed in the GA release of vtiger. Can you please check and update us? Regards Pinaki vtiger Team On Fri, Jul 24, 2009 at 8:39 PM, Alan Lord (News) wrote: > Can someone explain what this chunk of code is for in function function > transfer($from,$to) in /modules/PBXManager/utils/AsteriskClass.php? > > > $arr = explode(":", $to); > if(is_array($arr)){ > $typeCalled = $arr[0]; > $to = trim($arr[1]); > } > > > This is being called via the Ajax stuff for initiating outbound calls. > > Our telephone numbers for contacts/leads etc are usually in the form of > either: > > $AREA $NUMBER > > or they have an international prefix: > > +$INT (0)$AREA $NUMBER > > > explode() always results in an Array. > > As we do *not* have a colon in our phone numbers this chunk of code > mangles them and afterwards $to is empty. > > I don't think it should be called for an outgoing call. > > Alan > > > _______________________________________________ > 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/20090724/696e471a/attachment-0003.html From alanslists at gmail.com Fri Jul 24 10:40:58 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Fri, 24 Jul 2009 18:40:58 +0100 Subject: [Vtigercrm-developers] Asterisk Integration In-Reply-To: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> References: <71d372520907240958i68f8994fq72014ccccda53a51@mail.gmail.com> Message-ID: On 24/07/09 17:58, Pinaki Das wrote: > Hi Alan, > > This issue has been fixed in the GA release of vtiger. Can you please > check and update us? OK, I used the upgrade (vtigercrm-5.0.x-to-5.1.0-patch.zip) from 5.10RC to 5.10 and it doesn't seem to have updated this file. Looking at the new package I can see what you have done to fix it. I've been working on some changes to the Asterisk Integration code. When I have something more concrete to show I will. Thanks for the quick response. Alan From prasad at vtiger.com Fri Jul 24 11:52:11 2009 From: prasad at vtiger.com (Prasad) Date: Sat, 25 Jul 2009 00:22:11 +0530 Subject: [Vtigercrm-developers] vtiger CRM Forum Traffic Surge Message-ID: <39d18b250907241152g230801d8hb409797f9775ffd3@mail.gmail.com> Dear members, Due to surge in traffic and discussion at http://forums.vtiger.com, you might find it to be slow sometimes. Our IT team is working on improving the server resources soon, please bear with us in the meantime. Sorry for the inconvenience, but don't miss your comments or feedback to us Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/80dd266e/attachment-0003.html From eugene.babiy at gmail.com Sat Jul 25 03:24:05 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Sat, 25 Jul 2009 13:24:05 +0300 Subject: [Vtigercrm-developers] Translation Problems Message-ID: <4A6ADD45.5010206@gmail.com> Hi. I'm translating vTiger 5.1.0 to Russian and experiencing some problems. 1. On creating Document page labels 'Folder Name' and 'Document No' are still displaying in English although they are translated in document's module language file. 2. Actions list is not displaying at all (Detail view of Document). Any ideas? P.S. The same was in 5.1.0RC -- Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090725/7f99e0a5/attachment-0003.vcf From StevenS at techtron.co.za Sun Jul 26 05:21:22 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 14:21:22 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon Message-ID: I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/864de6c1/attachment-0003.html From StevenS at techtron.co.za Sun Jul 26 06:58:02 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Sun, 26 Jul 2009 15:58:02 +0200 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: Never mind just a broken mirror on sourceforge, used another mirror worked fine. From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Steven Sher Sent: 26 July 2009 02:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] problem downloading customer portal addon I cant seem to download the customer portal addon for vtigercrm5.1 the link seems to be invalid? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090726/92ada472/attachment-0003.html From prasad at vtiger.com Sun Jul 26 11:10:25 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:40:25 +0530 Subject: [Vtigercrm-developers] problem downloading customer portal addon In-Reply-To: References: Message-ID: <39d18b250907261110k5c9417d3m258a01fb5b2a25ee@mail.gmail.com> Thanks for the update, I have posted the same comment on the blogs now. http://www.vtiger.com/blogs/2009/07/22/vtiger-crm-510-is-released-major-milestone/#comment-120363 Regards, Prasad vtiger Team On 7/26/09, Steven Sher wrote: > > Never mind just a broken mirror on sourceforge, used another mirror > worked fine. > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Steven > Sher > *Sent:* 26 July 2009 02:21 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] problem downloading customer portal > addon > > > > I cant seem to download the customer portal addon for vtigercrm5.1 the link > seems to be invalid? > > > > > > > > > > > > > > _______________________________________________ > 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/20090726/0eaa6329/attachment-0003.html From prasad at vtiger.com Sun Jul 26 11:23:44 2009 From: prasad at vtiger.com (Prasad) Date: Sun, 26 Jul 2009 23:53:44 +0530 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: <4A6ADD45.5010206@gmail.com> References: <4A6ADD45.5010206@gmail.com> Message-ID: <39d18b250907261123w7f59ea4bv920118fea36c4dbb@mail.gmail.com> Hi Eugene, Your language translation pack should include module translation for (Services, ServiceContracts, Recycle Bin...) Refer to some of the translated version at: http://www.vtiger.com//index.php?option=com_jreviews&task=list&jr_vtigerversions=Version+5.1&Itemid=185 Regards, Prasad vtiger Team On 7/25/09, Eugene Babiy wrote: > > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > > -- > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > _______________________________________________ > 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/20090726/9a3d7dec/attachment-0003.html From fp at crm-now.de Sun Jul 26 12:28:57 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Sun, 26 Jul 2009 21:28:57 +0200 Subject: [Vtigercrm-developers] Translation Problems In-Reply-To: References: Message-ID: <006401ca0e27$52e0d460$f8a27d20$@de> Eugene, for a patch see http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 Regards, Frank > Hi. > > I'm translating vTiger 5.1.0 to Russian and experiencing some problems. > > 1. On creating Document page labels 'Folder Name' and 'Document No' are > still displaying in English although they are translated in document's > module language file. > > 2. Actions list is not displaying at all (Detail view of Document). > > Any ideas? > > P.S. The same was in 5.1.0RC > > -- > Best regards, Eugene Babiy From ml at arceva.fr Sun Jul 26 16:03:26 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 01:03:26 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module Message-ID: <4A6CE0BE.5030204@arceva.fr> Hi All, I have some problems with the French language pack We have translate *all *strings of the Documents Modules and when we use the french language, all of the column Action at the right don't appear when we look a download file. I apply this patch http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 and nothing change In english the 3 button work perfectly The language pack is available at : http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip Thanks for your help Bruno From dfar2008 at gmail.com Sun Jul 26 18:19:41 2009 From: dfar2008 at gmail.com (ding jianting) Date: Mon, 27 Jul 2009 09:19:41 +0800 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: <20090724114040.161555wp33un50g0@app.ascellatech.com> References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: First backup user_privileges_215.php file . Then delete user_privileges_215.php and edit the user with userid 215. On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > Hello all, > I tried to post this to vtiger forums, but it's not responding, > hence posting this to mailing list as it is very much critical for me. > > I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am > using LDAP authentication and authentication is working fine. But when > I created a new user I got the following error message: > > [code] > Parse error: syntax error, unexpected ';' in > /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 > [/code] > > Here is the contents of the above file: > > > [code] > //This is the access privilege file > $is_admin=false; > $current_user_roles=''; > $current_user_parent_role_seq=''; > $current_user_profiles=array(); > $profileGlobalPermission=; > $profileTabsPermission=; > $profileActionPermission=array(); > $current_user_groups=array(); > $subordinate_roles=array(); > $parent_roles=array(); > $subordinate_roles_users=array(); > > $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, > > Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); > ?> > [/code] > > It seems the user is not being added to the database. I have also > tried to use the SQL authentication, but no luck so far. Can somebody > provide some hints? > > regards > > -- > Manilal K M > eJyothi Services > http://www.ejyothi.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/20090727/823c4888/attachment-0003.html From manilal at ejyothi.com Sun Jul 26 22:12:58 2009 From: manilal at ejyothi.com (Manilal K M) Date: Mon, 27 Jul 2009 10:42:58 +0530 Subject: [Vtigercrm-developers] User privileges error In-Reply-To: References: <20090724114040.161555wp33un50g0@app.ascellatech.com> Message-ID: <20090727104258.17734ne4i3dw18ys@app.ascellatech.com> I missed one fact: 1. The user is not created in the database and hence I can't edit it. Quoting ding jianting : > First backup user_privileges_215.php file . > Then delete user_privileges_215.php and edit the user with userid 215. > > On Fri, Jul 24, 2009 at 2:10 PM, Manilal K M wrote: > >> Hello all, >> I tried to post this to vtiger forums, but it's not responding, >> hence posting this to mailing list as it is very much critical for me. >> >> I have upgraded our production CRM(vtiger-5.0.4) to vtiger-5.1.0. I am >> using LDAP authentication and authentication is working fine. But when >> I created a new user I got the following error message: >> >> [code] >> Parse error: syntax error, unexpected ';' in >> /home/www/html/vrm/user_privileges/user_privileges_215.php on line 13 >> [/code] >> >> Here is the contents of the above file: >> >> >> [code] >> > //This is the access privilege file >> $is_admin=false; >> $current_user_roles=''; >> $current_user_parent_role_seq=''; >> $current_user_profiles=array(); >> $profileGlobalPermission=; >> $profileTabsPermission=; >> $profileActionPermission=array(); >> $current_user_groups=array(); >> $subordinate_roles=array(); >> $parent_roles=array(); >> $subordinate_roles_users=array(); >> >> $user_info=array('user_name'=>'','is_admin'=>'','user_password'=>'','confirm_password'=>'','first_name'=>'','last_name'=>'','roleid'=>'','email1'=>'','status'=>'','activity_view'=>'','lead_view'=>'','currency_id'=>'','currency_name'=>'USA, >> >> Dollars','currency_code'=>'USD','currency_symbol'=>'$','conv_rate'=>'1.000','hour_format'=>'','end_hour'=>'','start_hour'=>'','title'=>'','phone_work'=>'','department'=>'','phone_mobile'=>'','reports_to_id'=>'','phone_other'=>'','email2'=>'','phone_fax'=>'','yahoo_id'=>'','phone_home'=>'','imagename'=>'','date_format'=>'','signature'=>'','description'=>'','reminder_interval'=>'','internal_mailer'=>'','address_street'=>'','address_city'=>'','address_state'=>'','address_postalcode'=>'','address_country'=>'','asterisk_extension'=>'','use_asterisk'=>'1','accesskey'=>'','record_id'=>'','record_module'=>'','id'=>'215'); >> ?> >> [/code] >> >> It seems the user is not being added to the database. I have also >> tried to use the SQL authentication, but no luck so far. Can somebody >> provide some hints? >> >> regards >> >> -- >> Manilal K M >> eJyothi Services >> http://www.ejyothi.com >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > -- Manilal K M eJyothi Services http://www.ejyothi.com From varma at vtiger.com Mon Jul 27 02:04:36 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 14:34:36 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM IST). Sorry for the inconvenience. We shall update you as soon as they are up and running again. -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1a8a4c43/attachment-0003.html From djeandot at gmail.com Mon Jul 27 02:43:54 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 11:43:54 +0200 Subject: [Vtigercrm-developers] Keep the id numerotation in vtiger 5.1.0 Message-ID: Hello, How can I keep the numerotation that I have in vtiger 5.0.4 (for example tickets 1, 2, 1500...) ? Because the numerotation in vtiger 5.1.0, the numerotation is bizarre (CON1...). Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/85854aa9/attachment-0003.html From eugene.babiy at gmail.com Mon Jul 27 02:42:07 2009 From: eugene.babiy at gmail.com (Eugene Babiy) Date: Mon, 27 Jul 2009 12:42:07 +0300 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6CE0BE.5030204@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> Message-ID: <4A6D766F.1000005@gmail.com> Hi Bruno. I've tested German Language Pack for 5.1.0 and it also has a problems with displaying of Actions list. I've found that the problem is only in the label "File Name". When I leave it untranslated in Langpack, everything else displays Ok, but when it's translated, Actions list is not showing. So you can just leave that label untranslated until some patch will appear. Best regards, Eugene Babiy tel. +380660785088 mob. +380505804768 Skype: eugene.babiy Fusioncore ?????: > Hi All, > > I have some problems with the French language pack > We have translate *all *strings of the Documents Modules and when we use > the french language, all of the column Action at the right don't appear > when we look a download file. > I apply this patch > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > and nothing change > In english the 3 button work perfectly > The language pack is available at : > http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > > Thanks for your help > > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > -------------- next part -------------- A non-text attachment was scrubbed... Name: eugene_babiy.vcf Type: text/x-vcard Size: 268 bytes Desc: not available Url : http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/b6802013/attachment-0003.vcf From StevenS at techtron.co.za Mon Jul 27 02:51:14 2009 From: StevenS at techtron.co.za (Steven Sher) Date: Mon, 27 Jul 2009 11:51:14 +0200 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? Message-ID: I am looking for anybody who does support/development work for vTiger in South Africa, preferably Cape Town. Thanks Steven -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/791e68fe/attachment-0003.html From varma at vtiger.com Mon Jul 27 02:51:38 2009 From: varma at vtiger.com (Varma) Date: Mon, 27 Jul 2009 15:21:38 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: Hi All, Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( blogs.vtiger.com) are up and running now. Please check it and let us know if you have any problem access them. On Mon, Jul 27, 2009 at 2:34 PM, Varma wrote: > Hi All, > > Vtiger website (vtiger.com), Forums (forums.vtiger.com) and Blogs ( > blogs.vtiger.com) will be down for maintenance for 30 min on July 27th, > 2009 ( 2:45PM IST to 3:15 PM IST). > > Sorry for the inconvenience. We shall update you as soon as they are up and > running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > -- Thanks & Regards, Varma. VtigerTeam. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1b81f768/attachment-0003.html From galdes at internode.on.net Mon Jul 27 02:57:23 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Mon, 27 Jul 2009 19:27:23 +0930 Subject: [Vtigercrm-developers] looking for vtiger support in South Africa? In-Reply-To: References: Message-ID: <4A6D7A03.3030700@internode.on.net> Hi Steven, We are hosting and supporting vtiger but we are in Australia. Let me know if you have trouble and we might be able to help you out. Cheers, -Andrew G Steven Sher wrote: > > I am looking for anybody who does support/development work for vTiger > in South Africa, preferably Cape Town. > > > > Thanks > > Steven > > > -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/3ed980d4/attachment-0003.html From ml at arceva.fr Mon Jul 27 03:38:22 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 12:38:22 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D766F.1000005@gmail.com> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> Message-ID: <4A6D839E.4040702@arceva.fr> Hi Eugene, Your solution doesn't work with success with the french pack If anyone have an other idea , Thanks, Bruno Eugene Babiy a ?crit : > Hi Bruno. > > I've tested German Language Pack for 5.1.0 and it also has a problems > with displaying of Actions list. I've found that the problem is only in > the label "File Name". When I leave it untranslated in Langpack, > everything else displays Ok, but when it's translated, Actions list is > not showing. > > So you can just leave that label untranslated until some patch will appear. > > Best regards, Eugene Babiy > > tel. +380660785088 > mob. +380505804768 > Skype: eugene.babiy > > > > Fusioncore ?????: > >> Hi All, >> >> I have some problems with the French language pack >> We have translate *all *strings of the Documents Modules and when we use >> the french language, all of the column Action at the right don't appear >> when we look a download file. >> I apply this patch >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 >> and nothing change >> In english the 3 button work perfectly >> The language pack is available at : >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip >> >> Thanks for your help >> >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com From nitin at vtiger.com Mon Jul 27 05:14:44 2009 From: nitin at vtiger.com (Nitin Goyal) Date: Mon, 27 Jul 2009 05:14:44 -0700 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: <4A6D839E.4040702@arceva.fr> References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: Hi, You can try the fix suggested in the comments of the following ticket, http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 try this, it will fix the issue. Regards, Nitin Goyal Vtiger Team On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore wrote: > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a problems > > with displaying of Actions list. I've found that the problem is only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions list is > > not showing. > > > > So you can just leave that label untranslated until some patch will > appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and when we use > >> the french language, all of the column Action at the right don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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/20090727/34482353/attachment-0003.html From ml at arceva.fr Mon Jul 27 05:53:54 2009 From: ml at arceva.fr (Fusioncore) Date: Mon, 27 Jul 2009 14:53:54 +0200 Subject: [Vtigercrm-developers] problems with Actions button in Documents module In-Reply-To: References: <4A6CE0BE.5030204@arceva.fr> <4A6D766F.1000005@gmail.com> <4A6D839E.4040702@arceva.fr> Message-ID: <4A6DA362.8040000@arceva.fr> Thanks, It work Bruno Nitin Goyal a ?crit : > Hi, > > You can try the fix suggested in the comments of the following ticket, > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198#comment:1 > > try this, it will fix the issue. > > Regards, > Nitin Goyal > Vtiger Team > > > On Mon, Jul 27, 2009 at 3:38 AM, Fusioncore > wrote: > > Hi Eugene, > Your solution doesn't work with success with the french pack > If anyone have an other idea , > > Thanks, > Bruno > > Eugene Babiy a ?crit : > > Hi Bruno. > > > > I've tested German Language Pack for 5.1.0 and it also has a > problems > > with displaying of Actions list. I've found that the problem is > only in > > the label "File Name". When I leave it untranslated in Langpack, > > everything else displays Ok, but when it's translated, Actions > list is > > not showing. > > > > So you can just leave that label untranslated until some patch > will appear. > > > > Best regards, Eugene Babiy > > > > tel. +380660785088 > > mob. +380505804768 > > Skype: eugene.babiy > > > > > > > > Fusioncore ?????: > > > >> Hi All, > >> > >> I have some problems with the French language pack > >> We have translate *all *strings of the Documents Modules and > when we use > >> the french language, all of the column Action at the right > don't appear > >> when we look a download file. > >> I apply this patch > >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6198 > >> and nothing change > >> In english the 3 button work perfectly > >> The language pack is available at : > >> http://download.french-vtiger.fr/LanguagePack_fr_510_GA-V1-2.zip > >> > >> Thanks for your help > >> > >> Bruno > >> _______________________________________________ > >> 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 > > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From djeandot at gmail.com Mon Jul 27 06:34:04 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 15:34:04 +0200 Subject: [Vtigercrm-developers] Modify the "Send Mail" functionnality Message-ID: Hello, I try to modify the functionnality of the button "Send Mail", but I don't have success. I just want send mail to the main adress and don't have the choice between the mail or yahoo adress. How can I do to make that up ? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/1c7510c6/attachment-0003.html From asha at vtiger.com Mon Jul 27 08:09:40 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 20:39:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help Message-ID: Hi All, People have been reporting us a major issue with migration, where the script that changes the MyISAM tables to InnoDB tables is not working. We are trying to reproduce this issue in our test labs and have not succeeded yet. Whole problem is around the query 'SHOW TABLE STATUS FROM '. Would be great if anyone can provide us a helping hand in analyzing or resolving the issue. Possibly if anyone can reproduce this issue on their servers and can give us the access to the server, that would help a lot. Hoping to get a resolution for this issue soon so that people can migrate to vtiger 5.1.0 smoothly. -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090727/366a9fb2/attachment-0003.html From djeandot at gmail.com Mon Jul 27 08:23:49 2009 From: djeandot at gmail.com (den jean) Date: Mon, 27 Jul 2009 17:23:49 +0200 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi, What are we supposed to have like error ? Regards, 2009/7/27 Asha > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM > '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on their > servers and can give us the access to the server, that would help a lot. > > Hoping to get a resolution for this issue soon so that people can migrate > to vtiger 5.1.0 smoothly. > > -- > Regards, > Asha > 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/20090727/639e43f4/attachment-0003.html From asha at vtiger.com Mon Jul 27 09:28:30 2009 From: asha at vtiger.com (Asha) Date: Mon, 27 Jul 2009 21:58:30 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: Hi All, The migration error would look something like below: ---------------------------------------------- Notice: Undefined index: ajax in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 15 Notice: Undefined index: web161-vtiger_localhost:3306_HealthApproved in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 29 Notice: Undefined index: updateTableEngine in /home/sites/yourdomian/public_html/crm/install/VerifyDBHealth.php on line 31 Fatal error: Call to a member function NumRows() on a non-object in /home/sites/yourdomian/public_html/crm/include/utils/DBHealthCheck.php on line 58 ---------------------------------------------- On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/6980aa80/attachment-0003.html From alanslists at gmail.com Mon Jul 27 09:34:27 2009 From: alanslists at gmail.com (Alan Lord (News)) Date: Mon, 27 Jul 2009 17:34:27 +0100 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: On 27/07/09 16:09, Asha wrote: > Hi All, > > People have been reporting us a major issue with migration, where the > script that changes the MyISAM tables to InnoDB tables is not working. > > We are trying to reproduce this issue in our test labs and have not > succeeded yet. > > Whole problem is around the query 'SHOW TABLE STATUS FROM '. > > Would be great if anyone can provide us a helping hand in analyzing or > resolving the issue. Possibly if anyone can reproduce this issue on > their servers and can give us the access to the server, that would help > a lot. > > Hoping to get a resolution for this issue soon so that people can > migrate to vtiger 5.1.0 smoothly. I had some issues with the upgrade but not to do with the InnoDB table conversion. The bog problem was that the database upgrade routine did not check the version info in the vtiger_version table and when I stupidly backed up a 5.0.4 db but told the install script it was a 5.1.0 RC it went through happily and completed. But the install was completely borked. Took me a while to work out what I was doing wrong... But the InnoDB change has worked fine for me several times over. PHP version: PHP 5.2.4-2ubuntu5.6 with Suhosin-Patch 0.9.6.2 MySQL version: Ver 14.12 Distrib 5.0.51a, for debian-linux-gnu (i486) using readline 5.2 HTH Alan From prasad at vtiger.com Mon Jul 27 09:42:59 2009 From: prasad at vtiger.com (Prasad) Date: Mon, 27 Jul 2009 22:12:59 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: References: Message-ID: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Hi, If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' returns NULL value result for InnoDB tables. How to reproduce the issue? You will end up with the described result if you have the following MySQL configuration. [mysqld] default-storage-engine=MyISAM skip-innodb Please note, for vtiger CRM to work properly you will need to have InnoDB support enabled in MySQL. How to avoid the issue? [mysqld] default-storage-engine=INNODB #skip-innodb Regards, Prasad vtiger Team On 7/27/09, den jean wrote: > > Hi, > What are we supposed to have like error ? > Regards, > > 2009/7/27 Asha > >> Hi All, >> >> People have been reporting us a major issue with migration, where the >> script that changes the MyISAM tables to InnoDB tables is not working. >> >> We are trying to reproduce this issue in our test labs and have not >> succeeded yet. >> >> Whole problem is around the query 'SHOW TABLE STATUS FROM >> '. >> >> Would be great if anyone can provide us a helping hand in analyzing or >> resolving the issue. Possibly if anyone can reproduce this issue on their >> servers and can give us the access to the server, that would help a lot. >> >> Hoping to get a resolution for this issue soon so that people can migrate >> to vtiger 5.1.0 smoothly. >> >> -- >> 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/20090727/d129fa52/attachment-0003.html From ml at arceva.fr Mon Jul 27 17:03:51 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:03:51 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page Message-ID: <4A6E4067.8020304@arceva.fr> Hi Team, I found another hardcode strings or missing modules. The gmail bookmarklet is hardcode on the Bookmarklet.tpl file Where I can add the strings ? I test in /modules/Emails/language an /include/language without success An other issue who can be critical in non english speeking country is the feedback link who point on a page of vtiger.com site Regards, Bruno French-vtiger Manager From ml at arceva.fr Mon Jul 27 17:18:54 2009 From: ml at arceva.fr (Fusioncore) Date: Tue, 28 Jul 2009 02:18:54 +0200 Subject: [Vtigercrm-developers] Hardcode strings in gmail bookmarklet on home page In-Reply-To: <4A6E4067.8020304@arceva.fr> References: <4A6E4067.8020304@arceva.fr> Message-ID: <4A6E43EE.7040601@arceva.fr> Fusioncore a ?crit : > Hi Team, > > I found another hardcode strings or missing modules. The gmail > bookmarklet is hardcode on the Bookmarklet.tpl file > Where I can add the strings ? I test in /modules/Emails/language an > /include/language without success > > An other issue who can be critical in non english speeking country is > the feedback link who point on a page of vtiger.com site > > Regards, > Bruno > French-vtiger Manager > I add some string: On the home page widget : the edit, refresh, hide and close button alternate label and when we clic on the edit button, the two button save and close are hardcode (file /Smarty/templates/Home/MainHomeBlock.tpl around line 20) From djeandot at gmail.com Wed Jul 29 01:46:27 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 10:46:27 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview Message-ID: Hi, I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a filter with the ticket ID in the first column as you can see here : http://img151.imageshack.us/img151/6218/filterh.jpg I saved it but the tickets ID is not on the listview : http://img148.imageshack.us/img148/133/listview.jpg How can I fix that ? Regards, -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/3ba37324/attachment-0003.html From galdes at internode.on.net Wed Jul 29 02:28:30 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Wed, 29 Jul 2009 18:58:30 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos Message-ID: <4A70163E.8020005@internode.on.net> Hello all, We've developed a training video pack for vTiger CRM. I'd like some feedback on the supposed demand for such a training tool. Before we spend too much time on the final product development and marketing of the video pack, i'd like to know if you, your clients or peers would benefit from such a tool. Feel free to post off list as this might infringe on list policy. -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies From sandeep at vtiger.com Wed Jul 29 04:02:22 2009 From: sandeep at vtiger.com (Sandeep P) Date: Wed, 29 Jul 2009 16:32:22 +0530 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: References: Message-ID: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Hi Denis, Kindly make the following change on your source in order to resolve the issue you have mentioned. In file *modules/CustomView/CustomView.php* at *line no 965* in function getCvColumnListSQL add the code provided below else if($list[1] == 'crmid'){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } after the below mentioned lines if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ $this->list_fields[$fieldlabel] = $tablefield; $this->list_fields_name[$fieldlabel] = $list[2]; } Check if the above changes help you in solving the issue. On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > Hi, > > I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created a > filter with the ticket ID in the first column as you can see here : > http://img151.imageshack.us/img151/6218/filterh.jpg > > I saved it but the tickets ID is not on the listview : > http://img148.imageshack.us/img148/133/listview.jpg > > How can I fix that ? > > Regards, > > > -- > Jean Denis > DotRiver pr?sente EluRiver, une approche unique pour la bureautique des > ?lus de France. > http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html > > Pas ? pas, agissons au quotidien pour pr?server notre environnement. > N'imprimez que si n?cessaire, > r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les > solutions DotRiver. > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Regards, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/aa505b8d/attachment-0003.html From asha at vtiger.com Wed Jul 29 04:01:40 2009 From: asha at vtiger.com (Asha) Date: Wed, 29 Jul 2009 16:31:40 +0530 Subject: [Vtigercrm-developers] Migration Issue - Need Help In-Reply-To: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> References: <39d18b250907270942u5d9a1feej95f20c06f704dbd5@mail.gmail.com> Message-ID: Hi All, Thanks for your support. We have finally analyzed the issue and found the quick fix for it. Please follow the trac ticket below for more details: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/6205 On 7/27/09, Prasad wrote: > > Hi, > > If InnoDB support is turned-off for the MySQL server, 'SHOW TABLE STATUS' > returns NULL value result for InnoDB tables. > > How to reproduce the issue? > You will end up with the described result if you have the following MySQL > configuration. > [mysqld] > default-storage-engine=MyISAM > skip-innodb > > Please note, for vtiger CRM to work properly you will need to have InnoDB > support enabled in MySQL. > > How to avoid the issue? > [mysqld] > default-storage-engine=INNODB > #skip-innodb > > Regards, > Prasad > vtiger Team > > On 7/27/09, den jean wrote: >> >> Hi, >> What are we supposed to have like error ? >> Regards, >> >> 2009/7/27 Asha >> >>> Hi All, >>> >>> People have been reporting us a major issue with migration, where the >>> script that changes the MyISAM tables to InnoDB tables is not working. >>> >>> We are trying to reproduce this issue in our test labs and have not >>> succeeded yet. >>> >>> Whole problem is around the query 'SHOW TABLE STATUS FROM >>> '. >>> >>> Would be great if anyone can provide us a helping hand in analyzing or >>> resolving the issue. Possibly if anyone can reproduce this issue on their >>> servers and can give us the access to the server, that would help a lot. >>> >>> Hoping to get a resolution for this issue soon so that people can migrate >>> to vtiger 5.1.0 smoothly. >>> >>> -- >>> Regards, >>> Asha >>> vtiger Team >>> _______________________________________________ >>> 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 > -- Regards, Asha vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/e05ab00a/attachment-0003.html From djeandot at gmail.com Wed Jul 29 04:52:39 2009 From: djeandot at gmail.com (den jean) Date: Wed, 29 Jul 2009 13:52:39 +0200 Subject: [Vtigercrm-developers] The ID of trouble tickets don't appear in the listview In-Reply-To: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> References: <10efb8100907290402y758afae4o23d3007021f95d83@mail.gmail.com> Message-ID: Thank you so much. It works well. Regards, 2009/7/29 Sandeep P > Hi Denis, > > Kindly make the following change on your source in order to resolve the > issue you have mentioned. > > In file *modules/CustomView/CustomView.php* at *line no 965* > in function getCvColumnListSQL add the code provided below > > else if($list[1] == 'crmid'){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > after the below mentioned lines > > if($this->isFieldPresent_ByColumnTable($list[1], $list[0])){ > $this->list_fields[$fieldlabel] = $tablefield; > $this->list_fields_name[$fieldlabel] = $list[2]; > } > > Check if the above changes help you in solving the issue. > > > On Wed, Jul 29, 2009 at 2:16 PM, den jean wrote: > >> Hi, >> >> I have migrate a 5.0.3 to a .5.0.4 and then I migrate to 5.1.0. I created >> a filter with the ticket ID in the first column as you can see here : >> http://img151.imageshack.us/img151/6218/filterh.jpg >> >> I saved it but the tickets ID is not on the listview : >> http://img148.imageshack.us/img148/133/listview.jpg >> >> How can I fix that ? >> >> Regards, >> >> >> -- >> Jean Denis >> DotRiver pr?sente EluRiver, une approche unique pour la bureautique des >> ?lus de France. >> http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html >> >> Pas ? pas, agissons au quotidien pour pr?server notre environnement. >> N'imprimez que si n?cessaire, >> r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant >> les solutions DotRiver. >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Regards, > Sandeep > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Jean Denis DotRiver pr?sente EluRiver, une approche unique pour la bureautique des ?lus de France. http://www.dotriver.eu/nos-solutions/nos-solutions/eluriver.html Pas ? pas, agissons au quotidien pour pr?server notre environnement. N'imprimez que si n?cessaire, r?duisez les d?chets informatiques et ?conomisez l'?nergie en utilisant les solutions DotRiver. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/53da1b5b/attachment-0003.html From j4c0b1 at gmail.com Wed Jul 29 06:45:29 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Wed, 29 Jul 2009 10:45:29 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70163E.8020005@internode.on.net> References: <4A70163E.8020005@internode.on.net> Message-ID: Can you send a link that we can see to post a feedback ? I think its very usefull for new vtiger users. 2009/7/29 Andrew Galdes > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/b4e8841d/attachment-0003.html From prasad at vtiger.com Wed Jul 29 07:34:13 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:04:13 +0530 Subject: [Vtigercrm-developers] Mobile Extension Module for vtiger CRM 5.1.0 Message-ID: <39d18b250907290734i52f22dabl5085f3ce0d0c36aa@mail.gmail.com> Dear members, The first version of Mobile (web client) is now available for vtiger CRM 5.1.0 Refer the blog post: http://www.vtiger.com/blogs/2009/07/29/mobile-extension-module-for-vtiger-crm-510/ Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/8167bb03/attachment-0003.html From prasad at vtiger.com Wed Jul 29 08:22:07 2009 From: prasad at vtiger.com (Prasad) Date: Wed, 29 Jul 2009 20:52:07 +0530 Subject: [Vtigercrm-developers] Do you like using vtiger CRM? Write a review for us. Message-ID: <39d18b250907290822u62d44399h28797229102b3b4b@mail.gmail.com> Dear members, Take your few minutes and write a review for us at https://sourceforge.net/projects/vtigercrm/ Hoping to see more 'Thumbs up' on the reviews. Regards, Prasad vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090729/2e5a5a49/attachment-0003.html From galdes at internode.on.net Wed Jul 29 16:43:33 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Thu, 30 Jul 2009 09:13:33 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> Message-ID: <4A70DEA5.9040609@internode.on.net> Thanks all who replied, http://www.impresser.com.au/vtigercrm-video/ You can see a demo at the above URL. The above link is nothing fancy but a directory listing at this stage. The video is 6.87MB in WMV format. It's the chapter on Contact management. I'd like to have a few others uploaded as they are ready. Sorry for the WMV format but for testing it is simplest. Note that the video set was recorded (screen and sound only) during real training so the language used is very natural - possibly not what you'd expect from a formal training set. Also, it's intended to have these for sale when completed. Your input till then is appreciated. -Andrew G Cicero Jacobi Filho wrote: > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > > > Hello all, > > We've developed a training video pack for vTiger CRM. I'd like some > feedback on the supposed demand for such a training tool. Before we > spend too much time on the final product development and marketing of > the video pack, i'd like to know if you, your clients or peers would > benefit from such a tool. > > Feel free to post off list as this might infringe on list policy. > > -- > -Andrew Galdes > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598 > www.impresser.com.au > > I.T Services To Science Companies > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20090730/5f3b8b52/attachment-0003.html From ml at arceva.fr Thu Jul 30 08:54:13 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 17:54:13 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: References: Message-ID: <4A71C225.8070006@arceva.fr> Hi, The vtiger website and vtiger forum are always extremly slow and produce time out The forum first page appear after around 2min and a search after 4-5 min Varma a ?crit : > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) are up and running now. > > Please check it and let us know if you have any problem access them. > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > wrote: > > Hi All, > > Vtiger website (vtiger.com ), Forums > (forums.vtiger.com ) and Blogs > (blogs.vtiger.com ) will be down for > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > IST). > > Sorry for the inconvenience. We shall update you as soon as they > are up and running again. > > -- > Thanks & Regards, > Varma. > VtigerTeam. > > > > > -- > Thanks & Regards, > Varma. > VtigerTeam. > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From ml at arceva.fr Thu Jul 30 09:33:46 2009 From: ml at arceva.fr (Fusioncore) Date: Thu, 30 Jul 2009 18:33:46 +0200 Subject: [Vtigercrm-developers] user creation Message-ID: <4A71CB6A.1010300@arceva.fr> Hi All, Does anyone now what is the function who save a new user on the database ? I search all the day and I just found the function who send the email to the new user (in /modules/users/Save.php around line 185) Thanks for your help Bruno From prasad at vtiger.com Thu Jul 30 09:46:39 2009 From: prasad at vtiger.com (Prasad) Date: Thu, 30 Jul 2009 22:16:39 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A71C225.8070006@arceva.fr> References: <4A71C225.8070006@arceva.fr> Message-ID: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Hi, Sorry for the inconvenience. The last maintenance did not give us much benefit, Our IT team is planning to boost hardware to our servers and working out on a suitable timing to get it done. We will keep you posted before next maintenance and get the speed back. Regards, Prasad On 7/30/09, Fusioncore wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com ), Forums > > (forums.vtiger.com ) and Blogs > > (blogs.vtiger.com ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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/20090730/28888849/attachment-0003.html From asha at vtiger.com Thu Jul 30 11:46:54 2009 From: asha at vtiger.com (Asha) Date: Fri, 31 Jul 2009 00:16:54 +0530 Subject: [Vtigercrm-developers] user creation In-Reply-To: <4A71CB6A.1010300@arceva.fr> References: <4A71CB6A.1010300@arceva.fr> Message-ID: Hi Bruno, save function of modules/Users/Users.php is triggered on save of a User. This function in turn triggers saveentity -> insertIntoEntityTable -> which will actually insert the data to required tables (The tables to which the values needs to be inserted is picked from $tab_name variable defined in modules/Users/Users.php) On 7/30/09, Fusioncore wrote: > > Hi All, > > Does anyone now what is the function who save a new user on the database ? > I search all the day and I just found the function who send the email to > the new user (in /modules/users/Save.php around line 185) > > Thanks for your help > > Bruno > _______________________________________________ > 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/20090731/3725fdc6/attachment-0003.html From carloz at gnumerica.org Fri Jul 31 00:11:18 2009 From: carloz at gnumerica.org (Carlo Beschi) Date: Fri, 31 Jul 2009 09:11:18 +0200 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> Message-ID: <4A729916.5060507@gnumerica.org> Hi, I just posted a brief announcement on the italian subforum regarding this (yesterday a number of duplicated posts appeared there, since people are not aware of what's happening and end up "re-submitting" the same article). Keep us updated, Carlo ps: if you are thinking about moving to the (very scalable ;-) Amazon AWS and need some experienced professionals, drop a line :-D Prasad ha scritto: > Hi, > > Sorry for the inconvenience. > > The last maintenance did not give us much benefit, Our IT team is > planning to boost hardware to our servers and > working out on a suitable timing to get it done. > > We will keep you posted before next maintenance and get the speed back. > > Regards, > Prasad > > On 7/30/09, *Fusioncore* > wrote: > > Hi, > The vtiger website and vtiger forum are always extremly slow and produce > time out > The forum first page appear after around 2min and a search after 4-5 min > > Varma a ?crit : > > Hi All, > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) are up and running now. > > > > > Please check it and let us know if you have any problem access them. > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > >> wrote: > > > > Hi All, > > > > > Vtiger website (vtiger.com > ), Forums > > (forums.vtiger.com > ) and Blogs > > (blogs.vtiger.com > ) will be down for > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 PM > > IST). > > > > Sorry for the inconvenience. We shall update you as soon as they > > are up and running again. > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > > > > > > > -- > > Thanks & Regards, > > Varma. > > VtigerTeam. > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > 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 From prasad at vtiger.com Fri Jul 31 00:14:32 2009 From: prasad at vtiger.com (Prasad) Date: Fri, 31 Jul 2009 12:44:32 +0530 Subject: [Vtigercrm-developers] vtiger.com Server Will be down for maintenance In-Reply-To: <4A729916.5060507@gnumerica.org> References: <4A71C225.8070006@arceva.fr> <39d18b250907300946h57c600c2tba7ebbba59cb2657@mail.gmail.com> <4A729916.5060507@gnumerica.org> Message-ID: <39d18b250907310014q94d6a00t739c27ca26ff86c8@mail.gmail.com> Carlo, Thank you for the support. Regards, Prasad On 7/31/09, Carlo Beschi wrote: > > Hi, > > I just posted a brief announcement on the italian subforum regarding > this (yesterday a number of duplicated posts appeared there, since > people are not aware of what's happening and end up "re-submitting" the > same article). > > Keep us updated, > > Carlo > > ps: if you are thinking about moving to the (very scalable ;-) Amazon > AWS and need some experienced professionals, drop a line :-D > > > > Prasad ha scritto: > > > Hi, > > > > Sorry for the inconvenience. > > > > The last maintenance did not give us much benefit, Our IT team is > > planning to boost hardware to our servers and > > working out on a suitable timing to get it done. > > > > We will keep you posted before next maintenance and get the speed back. > > > > Regards, > > Prasad > > > > > On 7/30/09, *Fusioncore* > wrote: > > > > Hi, > > The vtiger website and vtiger forum are always extremly slow and > produce > > time out > > The forum first page appear after around 2min and a search after 4-5 > min > > > > Varma a ?crit : > > > Hi All, > > > > > > Vtiger website (vtiger.com > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > ) are up and running now. > > > > > > > > Please check it and let us know if you have any problem access > them. > > > > > > > > > On Mon, Jul 27, 2009 at 2:34 PM, Varma > > > > > > > >> wrote: > > > > > > Hi All, > > > > > > > > Vtiger website (vtiger.com > > > ), Forums > > > (forums.vtiger.com > > ) and Blogs > > > (blogs.vtiger.com > > > ) will be down for > > > > > maintenance for 30 min on July 27th, 2009 ( 2:45PM IST to 3:15 > PM > > > IST). > > > > > > Sorry for the inconvenience. We shall update you as soon as > they > > > are up and running again. > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > > > > > > > > -- > > > Thanks & Regards, > > > Varma. > > > VtigerTeam. > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > 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 > > _______________________________________________ > 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/20090731/2ab00b1d/attachment-0003.html From fp at crm-now.de Fri Jul 31 07:19:50 2009 From: fp at crm-now.de (Frank Piepiorra) Date: Fri, 31 Jul 2009 16:19:50 +0200 Subject: [Vtigercrm-developers] accessing the forum impossible In-Reply-To: References: Message-ID: <010a01ca11e9$f78ee630$e6acb290$@de> At least for me it is impossible to login into the vtiger forum today in order to respond to some postings. This is very unfortunate. From ml at arceva.fr Fri Jul 31 09:14:52 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:14:52 +0200 Subject: [Vtigercrm-developers] debug Message-ID: <4A73187C.4090200@arceva.fr> Hi all I search to active debug on 5.1.0 but the method used on the 504 didn't work Do you have an idea ? Thanks, Bruno From joe at tsolucio.com Fri Jul 31 09:28:30 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:28:30 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A73187C.4090200@arceva.fr> References: <4A73187C.4090200@arceva.fr> Message-ID: <4A731BAE.2040808@tsolucio.com> We now have a global performance config file, you have to activate it there first: config.performance.php Joe TSolucio Fusioncore escribi?: > Hi all > I search to active debug on 5.1.0 but the method used on the 504 didn't work > Do you have an idea ? > Thanks, > Bruno > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > From ml at arceva.fr Fri Jul 31 09:36:47 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 18:36:47 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731BAE.2040808@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> Message-ID: <4A731D9F.9010703@arceva.fr> Thanks Joe but, I activate debug in this file but I don't have any result. I search the new function who provide the same result than : //$this->database->debug = true; log4php.rootLogger=DEBUG,A1 Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > We now have a global performance config file, you have to activate it > there first: > > config.performance.php > > Joe > TSolucio > > Fusioncore escribi?: > >> Hi all >> I search to active debug on 5.1.0 but the method used on the 504 didn't work >> Do you have an idea ? >> Thanks, >> Bruno >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> >> >> > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > From joe at tsolucio.com Fri Jul 31 09:50:03 2009 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 31 Jul 2009 18:50:03 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A731D9F.9010703@arceva.fr> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> Message-ID: <4A7320BB.1050708@tsolucio.com> You have to activate debug in this new file: $this->database->debug = true; and THEN, configure log4php.properties as we did before Joe TSolucio Fusioncore escribi?: > Thanks Joe but, > I activate debug in this file but I don't have any result. > I search the new function who provide the same result than : > > //$this->database->debug = true; > log4php.rootLogger=DEBUG,A1 > > Thanks, > Bruno > > French-vtiger Manager > > > > Joe Bordes a ?crit : > >> We now have a global performance config file, you have to activate it >> there first: >> >> config.performance.php >> >> Joe >> TSolucio >> >> Fusioncore escribi?: >> >> >>> Hi all >>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>> Do you have an idea ? >>> Thanks, >>> Bruno >>> _______________________________________________ >>> 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/20090731/b0fca5d2/attachment-0003.html From ml at arceva.fr Fri Jul 31 12:58:09 2009 From: ml at arceva.fr (Fusioncore) Date: Fri, 31 Jul 2009 21:58:09 +0200 Subject: [Vtigercrm-developers] debug In-Reply-To: <4A7320BB.1050708@tsolucio.com> References: <4A73187C.4090200@arceva.fr> <4A731BAE.2040808@tsolucio.com> <4A731D9F.9010703@arceva.fr> <4A7320BB.1050708@tsolucio.com> Message-ID: <4A734CD1.1080202@arceva.fr> I do it but nothing work correctly I active in the new file and I modify the file LoggerPropertyConfigurator.php and nothing work And I found function setDebug($value) { $this->database->debug = $value; } in the peardatabase file. Where I can change this var : $value ? Thanks, Bruno French-vtiger Manager Joe Bordes a ?crit : > You have to activate debug in this new file: > > $this->database->debug = true; > > and THEN, configure log4php.properties as we did before > > Joe > TSolucio > > Fusioncore escribi?: >> Thanks Joe but, >> I activate debug in this file but I don't have any result. >> I search the new function who provide the same result than : >> >> //$this->database->debug = true; >> log4php.rootLogger=DEBUG,A1 >> >> Thanks, >> Bruno >> >> French-vtiger Manager >> >> >> >> Joe Bordes a ?crit : >> >>> We now have a global performance config file, you have to activate it >>> there first: >>> >>> config.performance.php >>> >>> Joe >>> TSolucio >>> >>> Fusioncore escribi?: >>> >>> >>>> Hi all >>>> I search to active debug on 5.1.0 but the method used on the 504 didn't work >>>> Do you have an idea ? >>>> Thanks, >>>> Bruno >>>> _______________________________________________ >>>> 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 >> >> > > ------------------------------------------------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com From j4c0b1 at gmail.com Fri Jul 31 14:17:20 2009 From: j4c0b1 at gmail.com (Cicero Jacobi Filho) Date: Fri, 31 Jul 2009 18:17:20 -0300 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: <4A70DEA5.9040609@internode.on.net> References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: teh qualitty is very poor. I can not hear or understand what is beeing tlaked at the video and the image is fuzzy with much noise. Do y have something better ? hasta -- Atenciosamente C?cero Jacobi Filho j4c0b1 at gmail.com 51-96660945 51-93350964 icq : 78883010 msn : cjacobi at hotmail.com gmail : j4c0b1 at gmail.com skype : cjacobi 2009/7/29 Andrew Galdes > Thanks all who replied, > > http://www.impresser.com.au/vtigercrm-video/ > > You can see a demo at the above URL. The above link is nothing fancy but a > directory listing at this stage. The video is 6.87MB in WMV format. It's the > chapter on Contact management. I'd like to have a few others uploaded as > they are ready. Sorry for the WMV format but for testing it is simplest. > > Note that the video set was recorded (screen and sound only) during real > training so the language used is very natural - possibly not what you'd > expect from a formal training set. Also, it's intended to have these for > sale when completed. Your input till then is appreciated. > > -Andrew G > > > Cicero Jacobi Filho wrote: > > Can you send a link that we can see to post a feedback ? > > I think its very usefull for new vtiger users. > > 2009/7/29 Andrew Galdes > >> Hello all, >> >> We've developed a training video pack for vTiger CRM. I'd like some >> feedback on the supposed demand for such a training tool. Before we >> spend too much time on the final product development and marketing of >> the video pack, i'd like to know if you, your clients or peers would >> benefit from such a tool. >> >> Feel free to post off list as this might infringe on list policy. >> >> -- >> -Andrew Galdes >> Managing Director >> Impresser Pty Ltd >> >> Ph: 08 8357 2024 >> Mb: 0422 927 598 >> www.impresser.com.au >> >> I.T Services To Science Companies >> >> _______________________________________________ >> Reach hundreds of potential candidates - http://jobs.vtiger.com >> > > > > -- > Atenciosamente > > C?cero Jacobi Filho > j4c0b1 at gmail.com > 51-96660945 > 51-93350964 > icq : 78883010 > msn : cjacobi at hotmail.com > gmail : j4c0b1 at gmail.com > skype : cjacobi > > ------------------------------ > > _______________________________________________ > Reach hundreds of potential candidates - http://jobs.vtiger.com > > > > -- > -Andrew Galdes > > Managing Director > Impresser Pty Ltd > > Ph: 08 8357 2024 > Mb: 0422 927 598www.impresser.com.au > > I.T Services To Science Companies > > > _______________________________________________ > 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/20090731/637ccd98/attachment-0003.html From galdes at internode.on.net Fri Jul 31 17:07:14 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 09:37:14 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A738732.6030404@internode.on.net> Thanks, Can you tell me which media player and OS you're using? At this end (and others have agreed) the codec is less then a perfect choice. We'll recompile with a different codec. The version you saw was with WMV. However, we've already started recompiling with MOV which is giving us better results. -Andrew G Cicero Jacobi Filho wrote: > teh qualitty is very poor. > > I can not hear or understand what is beeing tlaked at the video and > the image is fuzzy with much noise. > > Do y have something better ? > > hasta ce Companies From galdes at internode.on.net Fri Jul 31 22:03:39 2009 From: galdes at internode.on.net (Andrew Galdes) Date: Sat, 01 Aug 2009 14:33:39 +0930 Subject: [Vtigercrm-developers] vTiger CRM Basic Training Videos In-Reply-To: References: <4A70163E.8020005@internode.on.net> <4A70DEA5.9040609@internode.on.net> Message-ID: <4A73CCAB.7090806@internode.on.net> Hi all, Those who are interested, please take a look at the most recent development-demo of the training videos. I'm most interested in quality of image and clarity of the speaker in this new dev. I'm very happy with your feedback so far. Visit the URL: http://www.impresser.com.au/vtigercrm-video/ Changes: --------- 1. Improved volume and clarity 2. Improved Image quality 3. In both WMV and MOV format Thanks, -- -Andrew Galdes Managing Director Impresser Pty Ltd Ph: 08 8357 2024 Mb: 0422 927 598 www.impresser.com.au I.T Services To Science Companies