From lajeeshk at gmail.com Thu Oct 1 12:38:27 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Thu, 1 Oct 2015 18:08:27 +0530 Subject: [Vtigercrm-developers] Important Bug Workflows and emails In-Reply-To: References: <04781D94-05D4-4497-B724-35F93E13D3B5@gmail.com> <9052FE04-F440-4ABA-A796-FAA96CB1E5CA@gmail.com> <55F22B25.5000803@tw.co.nz> <9E921329-A4B1-45E5-BC0F-30FF347B60C3@gmail.com> Message-ID: Hi Manu, I have applied your fix but it is corrupting the serialised data saving in com_vtiger_workflowtask table. also __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 this variables comes two times in ajax request Regards, Lajeesh On Wed, Sep 16, 2015 at 6:07 PM, Manu urs wrote: > Hi > > Having code in end of config.inc.php is not a good idea .It would be > fine to have a separate config.security.php file and this be included > through config.inc.php > > Regards, > Manu Urs > > > > On Tue, Sep 15, 2015 at 9:44 PM, Manuel Fernando > wrote: > >> Manu, >> >> After some days we ran into this error: >> *Fatal error*: Cannot redeclare csrf_startup() (previously declared in >> /home/jupix/public_html/vtiger/config.inc.php:213) in >> */home/jupix/public_html/vtiger/config.inc.php* on line *224* >> >> We added the code you suggested to the end of config.inc.php >> Would make any diference? >> If we add this code to config.php , before line >> include('config.inc.php?); or after? What do you recommend? >> >> >> >> >> No dia 13/09/2015, ?s 20:04, Steve Kenow escreveu: >> >> Yeah - any time you edit and save the email, the script is added again. I >> always view the source before saving and strip out the script completely. 1 >> will be added back as it is being saved. >> >> On Thu, Sep 10, 2015 at 8:15 PM, Richard Hills - Technologywise < >> richard at tw.co.nz> wrote: >> >>> Can anyone tell me more about this issue? >>> >>> I've just set up a workflow to send an email and ideally I don't want >>> any tracking / html at all. Wondering if there is a way to force an email >>> for this workflow to exclude all html? >>> >>> My issue is mostly however with the javascript included in the mail: >>> >>> >>> >>> I have attempted to add the patch below, but have a feeling the bug was >>> causing multiples of the javascript to be sent, whereas one is actually >>> expected? >>> >>> Any advice would be appreciated, worst case I will add a custom workflow >>> function and use my own mailer calls. >>> >>> Thanks >>> >>> >>> On 31/08/15 17:10, Manu urs wrote: >>> >>> Hi >>> >>> Please add the below patch of code in the config.php file to solve the >>> issue. >>> >>> /** >>>> * Vtiger specific custom config startup for CSRF >>>> */ >>>> function csrf_startup(){ >>>> //Override the default expire time of token >>>> $GLOBALS['csrf']['expires'] = 259200; >>>> >>>> /**if an ajax request initiated, then if php serves content with tags >>>> * as a response, then unnecessarily we are injecting csrf magic javascipt >>>> * in the response html at and using csrf_ob_handler(). >>>> * So, to overwride above rewriting we need following config. >>>> */ >>>> if(isAjax()) { >>>> $GLOBALS['csrf']['frame-breaker'] = false; >>>> $GLOBALS['csrf']['rewrite-js'] = null; >>>> } >>>> } >>>> >>>> function isAjax() { >>>> if (!empty($_SERVER['HTTP_X_PJAX']) && $_SERVER['HTTP_X_PJAX'] == true) { >>>> return true; >>>> } elseif (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { >>>> return true; >>>> } >>>> return false; >>>> } >>>> >>>> >>> Regards, >>> Manu Urs >>> >>> On Sun, Aug 30, 2015 at 11:42 AM, Stacey Johnson < >>> stacey.johnson110 at gmail.com> wrote: >>> >>>> What about below reported bug? >>>> What time frame "soon" should normally cover? >>>> >>>> On Sat, May 9, 2015 at 12:46 AM, Uma S wrote: >>>> >>>>> Hi, >>>>> >>>>> We are in between different project development work, will get back >>>>> soon. >>>>> >>>>> On Fri, May 8, 2015 at 9:33 PM, Alan Lord < >>>>> alanslists at gmail.com> wrote: >>>>> >>>>>> On 08/05/15 16:39, Manuel Fernando wrote: >>>>>> >>>>>>> Uma S, >>>>>>> >>>>>>> I know you could reproduce this error. Great, but any fix soon or >>>>>>> plans >>>>>>> to update us? >>>>>>> >>>>>> >>>>>> +1 >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> http://www.vtiger.com/ >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> With >>>>> Best Regards >>>>> Uma.S >>>>> Vtiger Team >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> >>> -- >>> Regards, >>> Manu >>> >>> >>> _______________________________________________http://www.vtiger.com/ >>> >>> >>> -- >>> Richard Hills >>> TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz >>> ph: +64 (0)7 571 1060 >>> fax: +64 (0)7 571 1061 >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> *Steve Kenow* >> Retail Data Systems of Minnesota >> Manager, Service Desk and End User Support >> Direct: 952.392.2686 >> Office: 952.934.4002 >> skenow at rdspos.com >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Regards, > Manu > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Thu Oct 1 14:33:24 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Thu, 1 Oct 2015 20:03:24 +0530 Subject: [Vtigercrm-developers] Important Bug Workflows and emails In-Reply-To: References: <04781D94-05D4-4497-B724-35F93E13D3B5@gmail.com> <9052FE04-F440-4ABA-A796-FAA96CB1E5CA@gmail.com> <55F22B25.5000803@tw.co.nz> <9E921329-A4B1-45E5-BC0F-30FF347B60C3@gmail.com> Message-ID: manu's script gives me a hint about this issue. I have write a code to skip appending csrf code on workflow email task edit function csrf_startup(){ if(isset($_POST['module']) && $_POST['module'] == 'Workflows' && isset($_POST['view']) && $_POST['view'] == 'EditTask' && isset($_POST['type']) && $_POST['type'] == 'VTEmailTask'){ csrf_conf('rewrite', false); } } Regards, Lajeesh On Thu, Oct 1, 2015 at 6:08 PM, lajeesh k wrote: > Hi Manu, > > I have applied your fix > > but it is corrupting the serialised data saving in > com_vtiger_workflowtask table. > also > > __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 > __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 > > this variables comes two times in ajax request > > > > > Regards, > Lajeesh > > On Wed, Sep 16, 2015 at 6:07 PM, Manu urs wrote: > >> Hi >> >> Having code in end of config.inc.php is not a good idea .It would be >> fine to have a separate config.security.php file and this be included >> through config.inc.php >> >> Regards, >> Manu Urs >> >> >> >> On Tue, Sep 15, 2015 at 9:44 PM, Manuel Fernando >> wrote: >> >>> Manu, >>> >>> After some days we ran into this error: >>> *Fatal error*: Cannot redeclare csrf_startup() (previously declared in >>> /home/jupix/public_html/vtiger/config.inc.php:213) in >>> */home/jupix/public_html/vtiger/config.inc.php* on line *224* >>> >>> We added the code you suggested to the end of config.inc.php >>> Would make any diference? >>> If we add this code to config.php , before line >>> include('config.inc.php?); or after? What do you recommend? >>> >>> >>> >>> >>> No dia 13/09/2015, ?s 20:04, Steve Kenow escreveu: >>> >>> Yeah - any time you edit and save the email, the script is added again. >>> I always view the source before saving and strip out the script completely. >>> 1 will be added back as it is being saved. >>> >>> On Thu, Sep 10, 2015 at 8:15 PM, Richard Hills - Technologywise < >>> richard at tw.co.nz> wrote: >>> >>>> Can anyone tell me more about this issue? >>>> >>>> I've just set up a workflow to send an email and ideally I don't want >>>> any tracking / html at all. Wondering if there is a way to force an email >>>> for this workflow to exclude all html? >>>> >>>> My issue is mostly however with the javascript included in the mail: >>>> >>>> >>>> >>>> I have attempted to add the patch below, but have a feeling the bug was >>>> causing multiples of the javascript to be sent, whereas one is actually >>>> expected? >>>> >>>> Any advice would be appreciated, worst case I will add a custom >>>> workflow function and use my own mailer calls. >>>> >>>> Thanks >>>> >>>> >>>> On 31/08/15 17:10, Manu urs wrote: >>>> >>>> Hi >>>> >>>> Please add the below patch of code in the config.php file to solve >>>> the issue. >>>> >>>> /** >>>>> * Vtiger specific custom config startup for CSRF >>>>> */ >>>>> function csrf_startup(){ >>>>> //Override the default expire time of token >>>>> $GLOBALS['csrf']['expires'] = 259200; >>>>> >>>>> /**if an ajax request initiated, then if php serves content with tags >>>>> * as a response, then unnecessarily we are injecting csrf magic javascipt >>>>> * in the response html at and using csrf_ob_handler(). >>>>> * So, to overwride above rewriting we need following config. >>>>> */ >>>>> if(isAjax()) { >>>>> $GLOBALS['csrf']['frame-breaker'] = false; >>>>> $GLOBALS['csrf']['rewrite-js'] = null; >>>>> } >>>>> } >>>>> >>>>> function isAjax() { >>>>> if (!empty($_SERVER['HTTP_X_PJAX']) && $_SERVER['HTTP_X_PJAX'] == true) { >>>>> return true; >>>>> } elseif (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { >>>>> return true; >>>>> } >>>>> return false; >>>>> } >>>>> >>>>> >>>> Regards, >>>> Manu Urs >>>> >>>> On Sun, Aug 30, 2015 at 11:42 AM, Stacey Johnson < >>>> stacey.johnson110 at gmail.com> wrote: >>>> >>>>> What about below reported bug? >>>>> What time frame "soon" should normally cover? >>>>> >>>>> On Sat, May 9, 2015 at 12:46 AM, Uma S wrote: >>>>> >>>>>> Hi, >>>>>> >>>>>> We are in between different project development work, will get back >>>>>> soon. >>>>>> >>>>>> On Fri, May 8, 2015 at 9:33 PM, Alan Lord < >>>>>> alanslists at gmail.com> wrote: >>>>>> >>>>>>> On 08/05/15 16:39, Manuel Fernando wrote: >>>>>>> >>>>>>>> Uma S, >>>>>>>> >>>>>>>> I know you could reproduce this error. Great, but any fix soon or >>>>>>>> plans >>>>>>>> to update us? >>>>>>>> >>>>>>> >>>>>>> +1 >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> http://www.vtiger.com/ >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> With >>>>>> Best Regards >>>>>> Uma.S >>>>>> Vtiger Team >>>>>> >>>>>> _______________________________________________ >>>>>> http://www.vtiger.com/ >>>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards, >>>> Manu >>>> >>>> >>>> _______________________________________________http://www.vtiger.com/ >>>> >>>> >>>> -- >>>> Richard Hills >>>> TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz >>>> ph: +64 (0)7 571 1060 >>>> fax: +64 (0)7 571 1061 >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> >>> -- >>> *Steve Kenow* >>> Retail Data Systems of Minnesota >>> Manager, Service Desk and End User Support >>> Direct: 952.392.2686 >>> Office: 952.934.4002 >>> skenow at rdspos.com >>> >>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Regards, >> Manu >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Thu Oct 1 15:59:51 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Thu, 1 Oct 2015 22:59:51 +0700 Subject: [Vtigercrm-developers] Important Bug Workflows and emails In-Reply-To: References: <04781D94-05D4-4497-B724-35F93E13D3B5@gmail.com> <9052FE04-F440-4ABA-A796-FAA96CB1E5CA@gmail.com> <55F22B25.5000803@tw.co.nz> <9E921329-A4B1-45E5-BC0F-30FF347B60C3@gmail.com> Message-ID: Lajeesh, did you set this script in config.php? Stacey On Thu, Oct 1, 2015 at 9:33 PM, lajeesh k wrote: > manu's script gives me a hint about this issue. > I have write a code to skip appending csrf code on workflow email task edit > > function csrf_startup(){ > if(isset($_POST['module']) && $_POST['module'] == 'Workflows' && > isset($_POST['view']) && $_POST['view'] == 'EditTask' && > isset($_POST['type']) && $_POST['type'] == 'VTEmailTask'){ > > csrf_conf('rewrite', false); > } > > > } > > > Regards, > Lajeesh > > On Thu, Oct 1, 2015 at 6:08 PM, lajeesh k wrote: > >> Hi Manu, >> >> I have applied your fix >> >> but it is corrupting the serialised data saving in >> com_vtiger_workflowtask table. >> also >> >> __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 >> __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 >> >> this variables comes two times in ajax request >> >> >> >> >> Regards, >> Lajeesh >> >> On Wed, Sep 16, 2015 at 6:07 PM, Manu urs wrote: >> >>> Hi >>> >>> Having code in end of config.inc.php is not a good idea .It would be >>> fine to have a separate config.security.php file and this be included >>> through config.inc.php >>> >>> Regards, >>> Manu Urs >>> >>> >>> >>> On Tue, Sep 15, 2015 at 9:44 PM, Manuel Fernando >>> wrote: >>> >>>> Manu, >>>> >>>> After some days we ran into this error: >>>> *Fatal error*: Cannot redeclare csrf_startup() (previously declared in >>>> /home/jupix/public_html/vtiger/config.inc.php:213) in >>>> */home/jupix/public_html/vtiger/config.inc.php* on line *224* >>>> >>>> We added the code you suggested to the end of config.inc.php >>>> Would make any diference? >>>> If we add this code to config.php , before line >>>> include('config.inc.php?); or after? What do you recommend? >>>> >>>> >>>> >>>> >>>> No dia 13/09/2015, ?s 20:04, Steve Kenow escreveu: >>>> >>>> Yeah - any time you edit and save the email, the script is added again. >>>> I always view the source before saving and strip out the script completely. >>>> 1 will be added back as it is being saved. >>>> >>>> On Thu, Sep 10, 2015 at 8:15 PM, Richard Hills - Technologywise < >>>> richard at tw.co.nz> wrote: >>>> >>>>> Can anyone tell me more about this issue? >>>>> >>>>> I've just set up a workflow to send an email and ideally I don't want >>>>> any tracking / html at all. Wondering if there is a way to force an email >>>>> for this workflow to exclude all html? >>>>> >>>>> My issue is mostly however with the javascript included in the mail: >>>>> >>>>> >>>>> >>>>> I have attempted to add the patch below, but have a feeling the bug >>>>> was causing multiples of the javascript to be sent, whereas one is actually >>>>> expected? >>>>> >>>>> Any advice would be appreciated, worst case I will add a custom >>>>> workflow function and use my own mailer calls. >>>>> >>>>> Thanks >>>>> >>>>> >>>>> On 31/08/15 17:10, Manu urs wrote: >>>>> >>>>> Hi >>>>> >>>>> Please add the below patch of code in the config.php file to solve >>>>> the issue. >>>>> >>>>> /** >>>>>> * Vtiger specific custom config startup for CSRF >>>>>> */ >>>>>> function csrf_startup(){ >>>>>> //Override the default expire time of token >>>>>> $GLOBALS['csrf']['expires'] = 259200; >>>>>> >>>>>> /**if an ajax request initiated, then if php serves content with tags >>>>>> * as a response, then unnecessarily we are injecting csrf magic javascipt >>>>>> * in the response html at and using csrf_ob_handler(). >>>>>> * So, to overwride above rewriting we need following config. >>>>>> */ >>>>>> if(isAjax()) { >>>>>> $GLOBALS['csrf']['frame-breaker'] = false; >>>>>> $GLOBALS['csrf']['rewrite-js'] = null; >>>>>> } >>>>>> } >>>>>> >>>>>> function isAjax() { >>>>>> if (!empty($_SERVER['HTTP_X_PJAX']) && $_SERVER['HTTP_X_PJAX'] == true) { >>>>>> return true; >>>>>> } elseif (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { >>>>>> return true; >>>>>> } >>>>>> return false; >>>>>> } >>>>>> >>>>>> >>>>> Regards, >>>>> Manu Urs >>>>> >>>>> On Sun, Aug 30, 2015 at 11:42 AM, Stacey Johnson < >>>>> stacey.johnson110 at gmail.com> wrote: >>>>> >>>>>> What about below reported bug? >>>>>> What time frame "soon" should normally cover? >>>>>> >>>>>> On Sat, May 9, 2015 at 12:46 AM, Uma S wrote: >>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> We are in between different project development work, will get back >>>>>>> soon. >>>>>>> >>>>>>> On Fri, May 8, 2015 at 9:33 PM, Alan Lord < >>>>>>> alanslists at gmail.com> wrote: >>>>>>> >>>>>>>> On 08/05/15 16:39, Manuel Fernando wrote: >>>>>>>> >>>>>>>>> Uma S, >>>>>>>>> >>>>>>>>> I know you could reproduce this error. Great, but any fix soon or >>>>>>>>> plans >>>>>>>>> to update us? >>>>>>>>> >>>>>>>> >>>>>>>> +1 >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> http://www.vtiger.com/ >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> -- >>>>>>> With >>>>>>> Best Regards >>>>>>> Uma.S >>>>>>> Vtiger Team >>>>>>> >>>>>>> _______________________________________________ >>>>>>> http://www.vtiger.com/ >>>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> http://www.vtiger.com/ >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> Regards, >>>>> Manu >>>>> >>>>> >>>>> _______________________________________________http://www.vtiger.com/ >>>>> >>>>> >>>>> -- >>>>> Richard Hills >>>>> TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz >>>>> ph: +64 (0)7 571 1060 >>>>> fax: +64 (0)7 571 1061 >>>>> >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> >>>> -- >>>> *Steve Kenow* >>>> Retail Data Systems of Minnesota >>>> Manager, Service Desk and End User Support >>>> Direct: 952.392.2686 >>>> Office: 952.934.4002 >>>> skenow at rdspos.com >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> >>> -- >>> Regards, >>> Manu >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Thu Oct 1 16:06:27 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Thu, 1 Oct 2015 18:06:27 +0200 Subject: [Vtigercrm-developers] Customer portal - Italian translation (also manual) Message-ID: Hi to all, I'm searching for language files to get customerportal in italian. I've found a file under language folder "en_us.lang.php" that I can translate manually but some other elements are not present in this file. For example, the listbox of Priority have multiple values that are not present into that php file and so I obtain a partial translate. How solve it? Regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at markcox.co.uk Thu Oct 1 16:41:43 2015 From: mark at markcox.co.uk (cryptic) Date: Thu, 1 Oct 2015 09:41:43 -0700 (PDT) Subject: [Vtigercrm-developers] Customer portal - Italian translation (also manual) In-Reply-To: References: Message-ID: <1443717703885-17518.post@n4.nabble.com> One option is to use the MYC Customer Portal http://makeyourcloud.com/myc-customer-portal -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Customer-portal-Italian-translation-also-manual-tp17517p17518.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From lajeeshk at gmail.com Thu Oct 1 17:01:14 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Thu, 1 Oct 2015 22:31:14 +0530 Subject: [Vtigercrm-developers] Important Bug Workflows and emails In-Reply-To: References: <04781D94-05D4-4497-B724-35F93E13D3B5@gmail.com> <9052FE04-F440-4ABA-A796-FAA96CB1E5CA@gmail.com> <55F22B25.5000803@tw.co.nz> <9E921329-A4B1-45E5-BC0F-30FF347B60C3@gmail.com> Message-ID: write this function in separate file and then included in config file Regards, Lajeesh On Thu, Oct 1, 2015 at 9:29 PM, Stacey Johnson wrote: > Lajeesh, did you set this script in config.php? > > Stacey > > On Thu, Oct 1, 2015 at 9:33 PM, lajeesh k wrote: > >> manu's script gives me a hint about this issue. >> I have write a code to skip appending csrf code on workflow email task >> edit >> >> function csrf_startup(){ >> if(isset($_POST['module']) && $_POST['module'] == 'Workflows' && >> isset($_POST['view']) && $_POST['view'] == 'EditTask' && >> isset($_POST['type']) && $_POST['type'] == 'VTEmailTask'){ >> >> csrf_conf('rewrite', false); >> } >> >> >> } >> >> >> Regards, >> Lajeesh >> >> On Thu, Oct 1, 2015 at 6:08 PM, lajeesh k wrote: >> >>> Hi Manu, >>> >>> I have applied your fix >>> >>> but it is corrupting the serialised data saving in >>> com_vtiger_workflowtask table. >>> also >>> >>> __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 >>> __vtrftksid:061e920a61b1a795a4cef8c3fbd9e35e6b26cede,1443697598 >>> >>> this variables comes two times in ajax request >>> >>> >>> >>> >>> Regards, >>> Lajeesh >>> >>> On Wed, Sep 16, 2015 at 6:07 PM, Manu urs wrote: >>> >>>> Hi >>>> >>>> Having code in end of config.inc.php is not a good idea .It would be >>>> fine to have a separate config.security.php file and this be included >>>> through config.inc.php >>>> >>>> Regards, >>>> Manu Urs >>>> >>>> >>>> >>>> On Tue, Sep 15, 2015 at 9:44 PM, Manuel Fernando >>>> wrote: >>>> >>>>> Manu, >>>>> >>>>> After some days we ran into this error: >>>>> *Fatal error*: Cannot redeclare csrf_startup() (previously declared >>>>> in /home/jupix/public_html/vtiger/config.inc.php:213) in >>>>> */home/jupix/public_html/vtiger/config.inc.php* on line *224* >>>>> >>>>> We added the code you suggested to the end of config.inc.php >>>>> Would make any diference? >>>>> If we add this code to config.php , before line >>>>> include('config.inc.php?); or after? What do you recommend? >>>>> >>>>> >>>>> >>>>> >>>>> No dia 13/09/2015, ?s 20:04, Steve Kenow escreveu: >>>>> >>>>> Yeah - any time you edit and save the email, the script is added >>>>> again. I always view the source before saving and strip out the script >>>>> completely. 1 will be added back as it is being saved. >>>>> >>>>> On Thu, Sep 10, 2015 at 8:15 PM, Richard Hills - Technologywise < >>>>> richard at tw.co.nz> wrote: >>>>> >>>>>> Can anyone tell me more about this issue? >>>>>> >>>>>> I've just set up a workflow to send an email and ideally I don't want >>>>>> any tracking / html at all. Wondering if there is a way to force an email >>>>>> for this workflow to exclude all html? >>>>>> >>>>>> My issue is mostly however with the javascript included in the mail: >>>>>> >>>>>> >>>>>> >>>>>> I have attempted to add the patch below, but have a feeling the bug >>>>>> was causing multiples of the javascript to be sent, whereas one is actually >>>>>> expected? >>>>>> >>>>>> Any advice would be appreciated, worst case I will add a custom >>>>>> workflow function and use my own mailer calls. >>>>>> >>>>>> Thanks >>>>>> >>>>>> >>>>>> On 31/08/15 17:10, Manu urs wrote: >>>>>> >>>>>> Hi >>>>>> >>>>>> Please add the below patch of code in the config.php file to solve >>>>>> the issue. >>>>>> >>>>>> /** >>>>>>> * Vtiger specific custom config startup for CSRF >>>>>>> */ >>>>>>> function csrf_startup(){ >>>>>>> //Override the default expire time of token >>>>>>> $GLOBALS['csrf']['expires'] = 259200; >>>>>>> >>>>>>> /**if an ajax request initiated, then if php serves content with tags >>>>>>> * as a response, then unnecessarily we are injecting csrf magic javascipt >>>>>>> * in the response html at and using csrf_ob_handler(). >>>>>>> * So, to overwride above rewriting we need following config. >>>>>>> */ >>>>>>> if(isAjax()) { >>>>>>> $GLOBALS['csrf']['frame-breaker'] = false; >>>>>>> $GLOBALS['csrf']['rewrite-js'] = null; >>>>>>> } >>>>>>> } >>>>>>> >>>>>>> function isAjax() { >>>>>>> if (!empty($_SERVER['HTTP_X_PJAX']) && $_SERVER['HTTP_X_PJAX'] == true) { >>>>>>> return true; >>>>>>> } elseif (!empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { >>>>>>> return true; >>>>>>> } >>>>>>> return false; >>>>>>> } >>>>>>> >>>>>>> >>>>>> Regards, >>>>>> Manu Urs >>>>>> >>>>>> On Sun, Aug 30, 2015 at 11:42 AM, Stacey Johnson < >>>>>> stacey.johnson110 at gmail.com> wrote: >>>>>> >>>>>>> What about below reported bug? >>>>>>> What time frame "soon" should normally cover? >>>>>>> >>>>>>> On Sat, May 9, 2015 at 12:46 AM, Uma S wrote: >>>>>>> >>>>>>>> Hi, >>>>>>>> >>>>>>>> We are in between different project development work, will get back >>>>>>>> soon. >>>>>>>> >>>>>>>> On Fri, May 8, 2015 at 9:33 PM, Alan Lord < >>>>>>>> alanslists at gmail.com> wrote: >>>>>>>> >>>>>>>>> On 08/05/15 16:39, Manuel Fernando wrote: >>>>>>>>> >>>>>>>>>> Uma S, >>>>>>>>>> >>>>>>>>>> I know you could reproduce this error. Great, but any fix soon or >>>>>>>>>> plans >>>>>>>>>> to update us? >>>>>>>>>> >>>>>>>>> >>>>>>>>> +1 >>>>>>>>> >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> http://www.vtiger.com/ >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> -- >>>>>>>> With >>>>>>>> Best Regards >>>>>>>> Uma.S >>>>>>>> Vtiger Team >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> http://www.vtiger.com/ >>>>>>>> >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> http://www.vtiger.com/ >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Regards, >>>>>> Manu >>>>>> >>>>>> >>>>>> _______________________________________________http://www.vtiger.com/ >>>>>> >>>>>> >>>>>> -- >>>>>> Richard Hills >>>>>> TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz >>>>>> ph: +64 (0)7 571 1060 >>>>>> fax: +64 (0)7 571 1061 >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> http://www.vtiger.com/ >>>>>> >>>>> >>>>> >>>>> >>>>> -- >>>>> *Steve Kenow* >>>>> Retail Data Systems of Minnesota >>>>> Manager, Service Desk and End User Support >>>>> Direct: 952.392.2686 >>>>> Office: 952.934.4002 >>>>> skenow at rdspos.com >>>>> >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards, >>>> Manu >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Thu Oct 1 17:15:30 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Thu, 1 Oct 2015 19:15:30 +0200 Subject: [Vtigercrm-developers] Customer portal - Italian translation (also manual) In-Reply-To: References: Message-ID: Allego il file completamente tradotto in italiano. 2015-10-01 18:06 GMT+02:00 Michele Mastropieri < michele.mastropieri at gmail.com>: > Hi to all, > > I'm searching for language files to get customerportal in italian. > > I've found a file under language folder "en_us.lang.php" that I can > translate manually but some other elements are not present in this file. > > For example, the listbox of Priority have multiple values that are not > present into that php file and so I obtain a partial translate. > > How solve it? > > Regards. > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: it_it.lang.php Type: application/x-httpd-php Size: 15883 bytes Desc: not available URL: From socialboostdk at gmail.com Thu Oct 1 20:10:09 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Thu, 1 Oct 2015 22:10:09 +0200 Subject: [Vtigercrm-developers] PM module? Message-ID: Hi there, Has anyone heard of any private messaging module in vtiger? And/or any reliable chat modules? Thanks :D //Chrs -------------- next part -------------- An HTML attachment was scrubbed... URL: From pobrien at boruapps.com Thu Oct 1 20:23:12 2015 From: pobrien at boruapps.com (boruapps) Date: Thu, 1 Oct 2015 13:23:12 -0700 (PDT) Subject: [Vtigercrm-developers] PM module? Message-ID: We did some work to integrate Slack with vtiger. Let me know if you want more info. Patrick O'Brien Boru, Inc. More Sales, Better Service - Results for Small Business Work 312-878-6461, Ext 1 Mobile 312-282-4561 Follow us on Twitter Like us on Facebook On Thu, Oct 1, 2015 at 3:03 PM, socialboostdk [via vtiger CRM] < ml-node+s2324883n17521h22 at n4.nabble.com> wrote: > Hi there, > > Has anyone heard of any private messaging module in vtiger? > > And/or any reliable chat modules? > > Thanks :D > > //Chrs > > _______________________________________________ > http://www.vtiger.com/ > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-PM-module-tp17521.html > To start a new topic under vtigercrm-developers, email > ml-node+s2324883n4h95 at n4.nabble.com > To unsubscribe from vtiger CRM, click here > > . > NAML > > -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Re-Vtigercrm-developers-PM-module-tp17522.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernard.bailey at timezone.co.nz Thu Oct 1 23:20:24 2015 From: bernard.bailey at timezone.co.nz (Bernard Bailey) Date: Fri, 2 Oct 2015 12:20:24 +1300 Subject: [Vtigercrm-developers] vtiger 6.3 Cannot create Opportunity from Convert Lead In-Reply-To: Message-ID: Hi developers, I have checked in my 5.4 instance, the Convert Lead and Opportnity works correctly. I have checked in my OnDemand account and a local instance of 6.3, does not work correctly. When the convert lead detail screen comes up the Sales Stage picklist does not pop the Opportunity Sales Stage entires, it just provides a search box that goes nowhere. Has/does anyone else had/has this issue and have found a solution? Regards Bernard G Bailey From manu.k at vtiger.com Fri Oct 2 02:28:33 2015 From: manu.k at vtiger.com (Manu urs) Date: Fri, 2 Oct 2015 07:58:33 +0530 Subject: [Vtigercrm-developers] vtiger 6.3 Cannot create Opportunity from Convert Lead In-Reply-To: References: Message-ID: Hi In our latest 6.3.0 instance, the opportunity sales stage is an picklist field.While you are converting lead to opportunity, please enable the convert opportunity checkbox and select the required sales stage value from the drop down .You can check this in demo.vtiger com . Hi developers, I have checked in my 5.4 instance, the Convert Lead and Opportnity works correctly. I have checked in my OnDemand account and a local instance of 6.3, does not work correctly. When the convert lead detail screen comes up the Sales Stage picklist does not pop the Opportunity Sales Stage entires, it just provides a search box that goes nowhere. Has/does anyone else had/has this issue and have found a solution? Regards Bernard G Bailey _______________________________________________ http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From estefan.civera at gmail.com Fri Oct 2 05:56:16 2015 From: estefan.civera at gmail.com (Estefan Civera) Date: Fri, 2 Oct 2015 07:56:16 +0200 Subject: [Vtigercrm-developers] Customer portal - Italian translation (also manual) In-Reply-To: References: Message-ID: ottimo grazie mille!! On Thu, Oct 1, 2015 at 7:15 PM, Michele Mastropieri < michele.mastropieri at gmail.com> wrote: > Allego il file completamente tradotto in italiano. > > > > 2015-10-01 18:06 GMT+02:00 Michele Mastropieri < > michele.mastropieri at gmail.com>: > >> Hi to all, >> >> I'm searching for language files to get customerportal in italian. >> >> I've found a file under language folder "en_us.lang.php" that I can >> translate manually but some other elements are not present in this file. >> >> For example, the listbox of Priority have multiple values that are not >> present into that php file and so I obtain a partial translate. >> >> How solve it? >> >> Regards. >> > > > > -- > > ------------------------------ > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 2 07:41:38 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 2 Oct 2015 08:41:38 +0100 Subject: [Vtigercrm-developers] PM module? In-Reply-To: References: Message-ID: On 01/10/15 21:10, socialboostdk wrote: > Hi there, > > Has anyone heard of any private messaging module in vtiger? Not yet - but we are investigating this. There are some very nice chat platforms available. Alan From lajeeshk at gmail.com Fri Oct 2 13:45:10 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Fri, 2 Oct 2015 19:15:10 +0530 Subject: [Vtigercrm-developers] performance turning tips : detailview Message-ID: Hi, I have more than a million records i have optimised listview search and data import Now I have slow down in detailview page Any tips to optimise detailview ? Regards, Lajeesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Fri Oct 2 14:06:29 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Fri, 2 Oct 2015 16:06:29 +0200 Subject: [Vtigercrm-developers] performance turning tips : detailview In-Reply-To: References: Message-ID: hi colud you share finally how you optimised listview? 2015-10-02 15:45 GMT+02:00 lajeesh k : > Hi, > I have more than a million records > i have optimised listview search and data import > > Now I have slow down in detailview page > Any tips to optimise detailview ? > > > Regards, > Lajeesh > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Fri Oct 2 14:11:06 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Fri, 2 Oct 2015 19:41:06 +0530 Subject: [Vtigercrm-developers] performance turning tips : detailview In-Reply-To: References: Message-ID: I have used Alan's tips on my another thread finally, if you want your list views to be "starts with" queries rather than "contains" queries you can edit layouts/vlayout/modules/Vtiger/resources/List.js around line 1893 and change from: var searchOperator = 'c'; to: var searchOperator = 's'; then it will use any indexes you have on those columns. This should probably be a configurable preference in the config.inc.php or something. Regards, Lajeesh On Fri, Oct 2, 2015 at 7:36 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > hi colud you share finally how you optimised listview? > > 2015-10-02 15:45 GMT+02:00 lajeesh k : > >> Hi, >> I have more than a million records >> i have optimised listview search and data import >> >> Now I have slow down in detailview page >> Any tips to optimise detailview ? >> >> >> Regards, >> Lajeesh >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From apcloic at gmail.com Fri Oct 2 14:06:52 2015 From: apcloic at gmail.com (apcloic) Date: Fri, 2 Oct 2015 07:06:52 -0700 (PDT) Subject: [Vtigercrm-developers] PM module? In-Reply-To: References: Message-ID: <1443794812882-17530.post@n4.nabble.com> Hi, How about porting back the one from YetiforceCRM ? https://github.com/YetiForceCompany/YetiForceCRM/tree/stable/modules/AJAXChat It shouldn't be too difficult as Yetiforce is vTiger fork. Regards, -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-PM-module-tp17521p17530.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From simonetravaglini at gmail.com Fri Oct 2 14:33:57 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Fri, 2 Oct 2015 16:33:57 +0200 Subject: [Vtigercrm-developers] PM module? In-Reply-To: <1443794812882-17530.post@n4.nabble.com> References: <1443794812882-17530.post@n4.nabble.com> Message-ID: Hi we have been ported from yeti chat module... I can share code... give some js problem but someone could work and resolve! Also if you deactivate module than give error... Inside zip you have 2 file: 1 - module to install 2 - patch to layout to show icon on template Let me know if you evolve it and share new code! ;) Don't use in production site, before test please! 2015-10-02 16:06 GMT+02:00 apcloic : > Hi, > > How about porting back the one from YetiforceCRM ? > > https://github.com/YetiForceCompany/YetiForceCRM/tree/stable/modules/AJAXChat > It shouldn't be too difficult as Yetiforce is vTiger fork. > Regards, > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-PM-module-tp17521p17530.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: chat.zip Type: application/zip Size: 507874 bytes Desc: not available URL: From alanslists at gmail.com Fri Oct 2 15:15:16 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 2 Oct 2015 16:15:16 +0100 Subject: [Vtigercrm-developers] Anyone extended vtwsclib for Documents? Message-ID: Before I start on this I wonder if anyone has already done it. I will need to create new related Documents over the REST API including submitting an attached file... Cheers Al From alanslists at gmail.com Fri Oct 2 15:30:11 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 2 Oct 2015 16:30:11 +0100 Subject: [Vtigercrm-developers] Anyone extended vtwsclib for Documents? In-Reply-To: References: Message-ID: On 02/10/15 16:15, Alan Lord wrote: > Before I start on this I wonder if anyone has already done it. > > I will need to create new related Documents over the REST API including > submitting an attached file... Looks like Joe and his team have done this already :-) http://corebos.org/documentation/doku.php?id=en:devel:corebosws:docenhance_examples From M.GIGON at mb2i.fr Fri Oct 2 15:27:00 2015 From: M.GIGON at mb2i.fr (OnlYou) Date: Fri, 2 Oct 2015 08:27:00 -0700 (PDT) Subject: [Vtigercrm-developers] MAIL-MANAGER and find relation to In-Reply-To: References: Message-ID: <1443799620682-17534.post@n4.nabble.com> Bonjour, OK, Well, I understood, I am going to write the code to realize this, Best Regards, Mark -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-MAIL-MANAGER-and-find-relation-to-tp17380p17534.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From socialboostdk at gmail.com Fri Oct 2 18:14:30 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Fri, 2 Oct 2015 20:14:30 +0200 Subject: [Vtigercrm-developers] PM module? In-Reply-To: References: Message-ID: Hi there - do tell me more about the slack / vtiger integration? :) On 1 October 2015 at 22:23, boruapps wrote: > We did some work to integrate Slack with vtiger. Let me know if you want > more info. > > Patrick O'Brien > Boru, Inc. > More Sales, Better Service - Results for Small Business > Work 312-878-6461, Ext 1 > Mobile 312-282-4561 > Follow us on Twitter > Like us on Facebook > > On Thu, Oct 1, 2015 at 3:03 PM, socialboostdk [via vtiger CRM] <[hidden > email] > wrote: > >> Hi there, >> >> Has anyone heard of any private messaging module in vtiger? >> >> And/or any reliable chat modules? >> >> Thanks :D >> >> //Chrs >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> ------------------------------ >> If you reply to this email, your message will be added to the discussion >> below: >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-PM-module-tp17521.html >> To start a new topic under vtigercrm-developers, email [hidden email] >> >> To unsubscribe from vtiger CRM, click here. >> NAML >> >> > > > ------------------------------ > View this message in context: Re: [Vtigercrm-developers] PM module? > > Sent from the vtigercrm-developers mailing list archive > at > Nabble.com. > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From socialboostdk at gmail.com Fri Oct 2 18:14:50 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Fri, 2 Oct 2015 20:14:50 +0200 Subject: [Vtigercrm-developers] PM module? In-Reply-To: References: Message-ID: Ok; what chat platforms do you think of? Cheers, Chris On 2 October 2015 at 09:41, Alan Lord wrote: > On 01/10/15 21:10, socialboostdk wrote: > >> Hi there, >> >> Has anyone heard of any private messaging module in vtiger? >> > > Not yet - but we are investigating this. There are some very nice chat > platforms available. > > Alan > > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ajstharsan at gmail.com Sun Oct 4 16:16:32 2015 From: ajstharsan at gmail.com (Sutharsan Jeganathan) Date: Sun, 4 Oct 2015 21:46:32 +0530 Subject: [Vtigercrm-developers] Vtiger Custom Project for appointment Management Message-ID: Hi Please let me know if anyone can take over this project with Fast track. The project have done upto 70% by us and and released trial. So we will provide you the source and initial guidelines. Our problem is we are running out of resources to handle the fast track / dedicated team the client need at the moment. The Client prefer indian developers/team, but it would be ok, if rates will be moderate. If anyone interested, please let me know Thanks Sutharsan Jeganathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernard.bailey at timezone.co.nz Sun Oct 4 21:10:02 2015 From: bernard.bailey at timezone.co.nz (Bernard Bailey) Date: Mon, 5 Oct 2015 10:10:02 +1300 Subject: [Vtigercrm-developers] vtiger 6.3 Cannot create Opportunity In-Reply-To: Message-ID: Hi Manu, >In our latest 6.3.0 instance, the opportunity sales stage is an picklist >field.While you are converting lead to opportunity, please enable the >convert opportunity checkbox and select the required sales stage value from >the drop down .You can check this in demo.vtiger com . I checked in demo.vtiger com and it does exactly what I say. There is *no* Sales Stage dropdown available. Regards Bernard G Bailey From stacey.johnson110 at gmail.com Mon Oct 5 01:20:27 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Mon, 5 Oct 2015 08:20:27 +0700 Subject: [Vtigercrm-developers] Workflows not being triggered In-Reply-To: <6CC78B54517348498CB1E58845C8F3D1361BD12E5B@EMSCM005.sagemsmrd01.sa.gov.au> References: <6CC78B54517348498CB1E58845C8F3D1361B551EDE@EMSCM005.sagemsmrd01.sa.gov.au> <6CC78B54517348498CB1E58845C8F3D1361B552076@EMSCM005.sagemsmrd01.sa.gov.au> <6CC78B54517348498CB1E58845C8F3D1361B552774@EMSCM005.sagemsmrd01.sa.gov.au> <6CC78B54517348498CB1E58845C8F3D1361B5F7003@EMSCM005.sagemsmrd01.sa.gov.au> <6CC78B54517348498CB1E58845C8F3D1361BD12E5B@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: I get to this issue again: Workflow condition "Has changed to" is not triggering. Is that condition kind of decoration or this is actually bug? If bug can it be finally fixed in source? Stacey On Tue, Dec 16, 2014 at 1:14 PM, Hamono, Chris (DPC) wrote: > Hi Stacey > > > > I created two workflows. > > > > One which is triggered on a new invoice where the item is already paid > > And the other runs when the status is changed to paid > > > > It?s not the best solution as both workflows are almost identical. > > > > > > Chris > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Stacey > Johnson > *Sent:* Saturday, 13 December 2014 11:52 PM > > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] Workflows not being triggered > > > > Chris, how is you finding? I meet same problem. > > > > Stacey > > > > On Fri, Nov 21, 2014 at 7:23 AM, Hamono, Chris (DPC) < > Chris.Hamono at sa.gov.au> wrote: > > Thanks Alan & Rodrigo > > I will test it out. > > Chris > > -----Original Message----- > From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Alan Lord > (News) > Sent: Thursday, 20 November 2014 6:24 PM > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Workflows not being triggered > > On 19/11/14 22:23, Hamono, Chris (DPC) wrote: > > > > Sorry I don't think I understand this. From the way I read it the > > email is sent everytime UNTIL it is marked as paid. Am I not > > understanding that event correctly? > > The description is somewhat ambiguous... It actually means it will not run > *until* the first time condition is met, then it will run once, then never > run again. > > Al > > > > -- > Libertus Solutions > http://www.libertus.co.uk > > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Mon Oct 5 04:27:27 2015 From: preexo at googlemail.com (Preexo) Date: Sun, 4 Oct 2015 21:27:27 -0700 (PDT) Subject: [Vtigercrm-developers] marketplace In-Reply-To: References: <1443090601647-17432.post@n4.nabble.com> <1443094788505-17434.post@n4.nabble.com> <1443501789629-17482.post@n4.nabble.com> <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> Message-ID: <1444019247307-17542.post@n4.nabble.com> Manu, thanks for helping! vtiger 6.3 ExtensionStore 1.1.7 Can we resolve this somehow? Manu urs wrote > Hi > > This authorization breaking error is because of login issue. Let us > know > the Vtiger version and Extension version(Please look into Vtiger_tab > table) you are using. It help to find the root couse of the issue. > > Regards, > Manu Urs > > On Wed, Sep 30, 2015 at 8:06 AM, Preexo < > preexo@ > > wrote: > >> The store extension in the store actually had an update button. >> Unfortunately >> I got an error after clicking on it. Can I update by hand or should I add >> the code by hand? >> < >> http://vtiger-crm.2324883.n4.nabble.com/file/n17501/2015-09-30_10_38_36-ExtensionStore.png >> > >> >> >> Uma S wrote >> > Hi, >> > >> > Please do check if you can find update button on Extension store widget >> > from extension store of crm. If yes please do go ahead with upgrade to >> > find >> > the changes of logout button. >> > >> > On Tue, Sep 29, 2015 at 5:20 PM, Preexo < >> >> > preexo@ >> >> > > wrote: >> > >> >> Well... There is no logout button in my embedded marketplace... Bug? >> >> See screenshot attached: >> >> < >> >> >> http://vtiger-crm.2324883.n4.nabble.com/file/n17490/2015-09-29_19_55_17.png >> >> > >> >> >> >> >> >> >> >> Manu urs wrote >> >> > Hi Preexo, >> >> > >> >> > The Logout button will appear once you login to the marketplace >> >> account >> >> > .You can disconnect that marketplace account from your Vtiger >> instance >> >> by >> >> > using the 'Logout' Button which is on the right top corner of >> >> extension >> >> > view . After Logout you can also able to login with different >> >> credential. >> >> > Please have a look on attached screen shot. >> >> > >> >> > >> >> > >> >> > Regards, >> >> > Manu Urs >> >> > >> >> > >> >> > On Tue, Sep 29, 2015 at 10:13 AM, Preexo < >> >> >> >> > preexo@ >> >> >> >> > > wrote: >> >> > >> >> >> Of course... I always love to blame others for my forgetfulness >> >> brain... >> >> >> lol. >> >> >> Anyway, I don't do it this time... That I forgot after 9 months >> that >> I >> >> >> actually had registered somewhere is my own fault. >> >> >> >> >> >> Just to clarify: >> >> >> That the UI of the embedded marketplace does not give me any hint >> that >> >> I >> >> >> was >> >> >> actually logged in (since I registered 9 months ago), it didn't >> give >> >> me >> >> >> any >> >> >> logout button, no user panel, no way to retrieve the invoices... >> THAT >> >> is >> >> >> vtigers really bad UI... the bad UX I experienced is their fault >> since >> >> >> the >> >> >> embedded marketplace UI is so bad. >> >> >> It's also vtigers fault that they not responding to my >> support-request >> >> >> emails for days and even once they did not understand what my >> problem >> >> is. >> >> >> In fact, they are still trying to help me via email, because they >> are >> >> >> seem >> >> >> to not understand my emails. >> >> >> >> >> >> Alan came along and helped me with one comment... Thanks again >> Alan! >> >> >> >> >> >> I guess that vtiger never understands what I want from them via >> email >> >> or >> >> >> here in the forum (yes it has happened too many times before, >> >> exchanged >> >> >> months and months of email exchange to finally get a small piece of >> >> >> information) can be blamed on language barrier. Their English is >> >> >> obviously >> >> >> very limited and I have a lot of understanding for that, since >> English >> >> is >> >> >> also my second language and sometimes it can be hard. >> >> >> >> >> >> So, don't take me wrong... I appreciate all the hard work of vtiger >> >> and >> >> I >> >> >> will try be even more patient about stuff like this in future. But >> the >> >> >> embedded marketplace is a joke! >> >> >> >> >> >> >> >> >> Doug-116 wrote >> >> >> > I'm confused. >> >> >> > You forgot your login credentials and the way to logon but that >> is >> >> >> vtigers >> >> >> > fault? >> >> >> > On Sep 24, 2015 7:49 AM, "Preexo" < >> >> >> >> >> >> > preexo@ >> >> >> >> >> >> > > wrote: >> >> >> > >> >> >> >> Hi Alan, wow! >> >> >> >> I wasn't even aware anymore that I signed up at the marketplace >> >> before >> >> >> >> from >> >> >> >> within the vtiger installation. The embedded marketplace does >> not >> >> give >> >> >> me >> >> >> >> any hint on that, it seemed like it was just like this from the >> >> >> >> beginning. >> >> >> >> Apparently I actually signed up with a different email as well, >> so >> >> I >> >> >> >> tried >> >> >> >> to password reset all my email addresses and one of them >> actually >> >> got >> >> >> an >> >> >> >> email with a link and I reset the password and logged in and see >> >> there >> >> >> >> are >> >> >> >> my invoices! Thanks a lot!!! >> >> >> >> >> >> >> >> Now, I want to disconnect that marketplace account from my >> vtiger >> >> >> >> instance >> >> >> >> account and use another one... haha, can? >> >> >> >> >> >> >> >> I kind of suspected something like this but it shows clearly how >> >> badly >> >> >> >> designed the embedded UI of the extension store is... >> >> >> >> And honestly... it also shows how poor the vtiger support >> sometimes >> >> >> can >> >> >> >> be, >> >> >> >> but that didn't surprise me very much. >> >> >> >> >> >> >> >> >> >> >> >> Alan Lord (News) wrote >> >> >> >> > Preexo, >> >> >> >> > >> >> >> >> > The user credentials you use to create an account in the >> >> Extension >> >> >> >> Store >> >> >> >> > do not have to be the same as the username you login to vtiger >> >> with. >> >> >> >> > >> >> >> >> > The credentials you used to create the Marketplace account >> from >> >> >> within >> >> >> >> > the Extension store are the ones you should use to login to >> the >> >> >> vtiger >> >> >> >> > Marketplace. Not your vtiger login. >> >> >> >> > >> >> >> >> > If you do that your Invoice for your purchases should be >> visible. >> >> >> >> > >> >> >> >> > HTH >> >> >> >> > >> >> >> >> > Alan >> >> >> >> > >> >> >> >> > PS: We did get a few questions about Marketplace invoicing >> from >> >> >> >> > customers very early on, but we haven't had any for ages now. >> >> >> >> > >> >> >> >> > >> >> >> >> > On 24/09/15 11:30, Preexo wrote: >> >> >> >> >> Prasad, thanks alot for trying to help... >> >> >> >> >> But... Seriously? how is that supposed to work? >> >> >> >> >> We installed the OS vtiger on our own server, vtiger >> shouldn't >> >> have >> >> >> >> any >> >> >> >> >> idea >> >> >> >> >> of our data, therefore no user credentials from my userlogin >> of >> >> my >> >> >> >> vtiger >> >> >> >> >> installation... >> >> >> >> >> Anyway, I still tried lol... didn't work (surprise) and >> signed >> >> up >> >> >> now >> >> >> >> on >> >> >> >> >> the >> >> >> >> >> marketplace now. No invoices in my account of course. >> >> >> >> >> >> >> >> >> >> I sent an email to >> >> >> >> >> >> >> >> > sales@ >> >> >> >> >> >> >> >> > about this issue as well (actually 2 >> >> >> >> >> days ago), please just provide us some invoices soon... In >> mail >> >> >> mail >> >> >> I >> >> >> >> >> let >> >> >> >> >> you know the details of the credit card used so you will be >> able >> >> to >> >> >> >> >> identify >> >> >> >> >> the purchases (2 by now) >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> Prasad-14 wrote >> >> >> >> >>> Please visit the URL: >> >> >> https://marketplace.vtiger.com/customer/login >> >> >> >> (use >> >> >> >> >>> the same credentials you provided in CRM). >> >> >> >> >>> >> >> >> >> >>> -- >> >> >> >> >>> FB <http://www.facebook.com/vtiger> I Twit >> >> >> >> >>> <http://twitter.com/vtigercrm> I >> >> >> >> >>> LIn >> <https://www.linkedin.com/company/1270573?trk=tyah> >> I >> >> >> Blog >> >> >> >> >>> <https://blogs.vtiger.com> I Website >> >> >> >> >>> <https://www.vtiger.com/> >> >> >> >> >>> >> >> >> >> >>> On Thu, Sep 24, 2015 at 2:00 PM, Preexo < >> >> >> >> >> >> >> >> >> >>> preexo@ >> >> >> >> >> >> >> >> >> >>> > wrote: >> >> >> >> >>> >> >> >> >> >>>> We bought through marketplace integrated in our vtiger >> >> >> installation. >> >> >> >> no >> >> >> >> >>>> login >> >> >> >> >>>> there, no button to find any invoices. >> >> >> >> >>>> Any idea? >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> Prasad-14 wrote >> >> >> >> >>>>> Have you tried login to Marketplace Portal >> >> >> >> >>>>> <https://marketplace.vtiger.com/customer/Login>? >> >> >> >> >>>>> >> >> >> >> >>>>> Regards, >> >> >> >> >>>>> Prasad >> >> >> >> >>>>> >> >> >> >> >>>>> -- >> >> >> >> >>>>> FB <http://www.facebook.com/vtiger> I Twit >> >> >> >> >>>>> <http://twitter.com/vtigercrm> I >> >> >> >> >>>>> LIn < >> https://www.linkedin.com/company/1270573?trk=tyah> >> >> I >> >> >> >> Blog >> >> >> >> >>>>> <https://blogs.vtiger.com> I Website < >> >> >> >> >>>> https://www.vtiger.com/> >> >> >> >> >>>>> >> >> >> >> >>>>> On Thu, Sep 24, 2015 at 11:44 AM, Preexo < >> >> >> >> >>>> >> >> >> >> >>>>> preexo@ >> >> >> >> >>>> >> >> >> >> >>>>> > wrote: >> >> >> >> >>>>> >> >> >> >> >>>>>> I bought a module 2 days ago on the marketplace and still >> >> >> haven't >> >> >> >> >>>>>> received >> >> >> >> >>>>>> any kind of recite. >> >> >> >> >>>>>> this is not acceptable! therefore... no, the marketplace >> is >> >> a >> >> >> >> >>>>>> horrible >> >> >> >> >>>>>> place >> >> >> >> >>>>>> to sell modules! >> >> >> >> >>>>>> >> >> >> >> >>>>>> >> >> >> >> >>>>>> >> >> >> >> >>>>>> -- >> >> >> >> >>>>>> View this message in context: >> >> >> >> >>>>>> >> >> >> >> >>>> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17428.html >> >> >> >> >>>>>> Sent from the vtigercrm-developers mailing list archive >> at >> >> >> >> >>>>>> Nabble.com. >> >> >> >> >>>>>> _______________________________________________ >> >> >> >> >>>>>> http://www.vtiger.com/ >> >> >> >> >>>>>> >> >> >> >> >>>>> >> >> >> >> >>>>> _______________________________________________ >> >> >> >> >>>>> http://www.vtiger.com/ >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> >> >> >> >> >>>> -- >> >> >> >> >>>> View this message in context: >> >> >> >> >>>> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17430.html >> >> >> >> >>>> Sent from the vtigercrm-developers mailing list archive at >> >> >> >> Nabble.com. >> >> >> >> >>>> _______________________________________________ >> >> >> >> >>>> http://www.vtiger.com/ >> >> >> >> >>>> >> >> >> >> >>> >> >> >> >> >>> _______________________________________________ >> >> >> >> >>> http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> >> >> View this message in context: >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17432.html >> >> >> >> >> Sent from the vtigercrm-developers mailing list archive at >> >> >> Nabble.com. >> >> >> >> >> _______________________________________________ >> >> >> >> >> http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> > >> >> >> >> > >> >> >> >> > -- >> >> >> >> > Libertus Solutions >> >> >> >> > http://www.libertus.co.uk >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> >> View this message in context: >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17434.html >> >> >> >> Sent from the vtigercrm-developers mailing list archive at >> >> Nabble.com. >> >> >> >> _______________________________________________ >> >> >> >> http://www.vtiger.com/ >> >> >> >> >> >> >> > >> >> >> > _______________________________________________ >> >> >> > http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> View this message in context: >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17482.html >> >> >> Sent from the vtigercrm-developers mailing list archive at >> Nabble.com. >> >> >> _______________________________________________ >> >> >> http://www.vtiger.com/ >> >> >> >> >> > >> >> > >> >> > >> >> > -- >> >> > Regards, >> >> > Manu >> >> > >> >> > _______________________________________________ >> >> > http://www.vtiger.com/ >> >> > >> >> > Market_place.jpg (45K) >> >> > < >> >> >> http://vtiger-crm.2324883.n4.nabble.com/attachment/17486/0/Market_place.jpg> >> >> ; >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> View this message in context: >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17490.html >> >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> >> http://www.vtiger.com/ >> >> >> > >> > >> > >> > -- >> > With >> > Best Regards >> > Uma.S >> > Vtiger Team >> > >> > _______________________________________________ >> > http://www.vtiger.com/ >> >> >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17501.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Regards, > Manu > > _______________________________________________ > http://www.vtiger.com/ -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17542.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From manu.k at vtiger.com Mon Oct 5 04:47:37 2015 From: manu.k at vtiger.com (Manu urs) Date: Mon, 5 Oct 2015 10:17:37 +0530 Subject: [Vtigercrm-developers] marketplace In-Reply-To: <1444019247307-17542.post@n4.nabble.com> References: <1443090601647-17432.post@n4.nabble.com> <1443094788505-17434.post@n4.nabble.com> <1443501789629-17482.post@n4.nabble.com> <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> <1444019247307-17542.post@n4.nabble.com> Message-ID: Hi Preexo, Thanks for providing the information . We will check and get back to you. Regards, Manu Urs On Mon, Oct 5, 2015 at 9:57 AM, Preexo wrote: > Manu, thanks for helping! > > vtiger 6.3 > ExtensionStore 1.1.7 > > Can we resolve this somehow? > > > Manu urs wrote > > Hi > > > > This authorization breaking error is because of login issue. Let us > > know > > the Vtiger version and Extension version(Please look into Vtiger_tab > > table) you are using. It help to find the root couse of the issue. > > > > Regards, > > Manu Urs > > > > On Wed, Sep 30, 2015 at 8:06 AM, Preexo < > > > preexo@ > > > > wrote: > > > >> The store extension in the store actually had an update button. > >> Unfortunately > >> I got an error after clicking on it. Can I update by hand or should I > add > >> the code by hand? > >> < > >> > http://vtiger-crm.2324883.n4.nabble.com/file/n17501/2015-09-30_10_38_36-ExtensionStore.png > >> > > >> > >> > >> Uma S wrote > >> > Hi, > >> > > >> > Please do check if you can find update button on Extension store > widget > >> > from extension store of crm. If yes please do go ahead with upgrade to > >> > find > >> > the changes of logout button. > >> > > >> > On Tue, Sep 29, 2015 at 5:20 PM, Preexo < > >> > >> > preexo@ > >> > >> > > wrote: > >> > > >> >> Well... There is no logout button in my embedded marketplace... Bug? > >> >> See screenshot attached: > >> >> < > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/file/n17490/2015-09-29_19_55_17.png > >> >> > > >> >> > >> >> > >> >> > >> >> Manu urs wrote > >> >> > Hi Preexo, > >> >> > > >> >> > The Logout button will appear once you login to the marketplace > >> >> account > >> >> > .You can disconnect that marketplace account from your Vtiger > >> instance > >> >> by > >> >> > using the 'Logout' Button which is on the right top corner of > >> >> extension > >> >> > view . After Logout you can also able to login with different > >> >> credential. > >> >> > Please have a look on attached screen shot. > >> >> > > >> >> > > >> >> > > >> >> > Regards, > >> >> > Manu Urs > >> >> > > >> >> > > >> >> > On Tue, Sep 29, 2015 at 10:13 AM, Preexo < > >> >> > >> >> > preexo@ > >> >> > >> >> > > wrote: > >> >> > > >> >> >> Of course... I always love to blame others for my forgetfulness > >> >> brain... > >> >> >> lol. > >> >> >> Anyway, I don't do it this time... That I forgot after 9 months > >> that > >> I > >> >> >> actually had registered somewhere is my own fault. > >> >> >> > >> >> >> Just to clarify: > >> >> >> That the UI of the embedded marketplace does not give me any hint > >> that > >> >> I > >> >> >> was > >> >> >> actually logged in (since I registered 9 months ago), it didn't > >> give > >> >> me > >> >> >> any > >> >> >> logout button, no user panel, no way to retrieve the invoices... > >> THAT > >> >> is > >> >> >> vtigers really bad UI... the bad UX I experienced is their fault > >> since > >> >> >> the > >> >> >> embedded marketplace UI is so bad. > >> >> >> It's also vtigers fault that they not responding to my > >> support-request > >> >> >> emails for days and even once they did not understand what my > >> problem > >> >> is. > >> >> >> In fact, they are still trying to help me via email, because they > >> are > >> >> >> seem > >> >> >> to not understand my emails. > >> >> >> > >> >> >> Alan came along and helped me with one comment... Thanks again > >> Alan! > >> >> >> > >> >> >> I guess that vtiger never understands what I want from them via > >> email > >> >> or > >> >> >> here in the forum (yes it has happened too many times before, > >> >> exchanged > >> >> >> months and months of email exchange to finally get a small piece > of > >> >> >> information) can be blamed on language barrier. Their English is > >> >> >> obviously > >> >> >> very limited and I have a lot of understanding for that, since > >> English > >> >> is > >> >> >> also my second language and sometimes it can be hard. > >> >> >> > >> >> >> So, don't take me wrong... I appreciate all the hard work of > vtiger > >> >> and > >> >> I > >> >> >> will try be even more patient about stuff like this in future. But > >> the > >> >> >> embedded marketplace is a joke! > >> >> >> > >> >> >> > >> >> >> Doug-116 wrote > >> >> >> > I'm confused. > >> >> >> > You forgot your login credentials and the way to logon but that > >> is > >> >> >> vtigers > >> >> >> > fault? > >> >> >> > On Sep 24, 2015 7:49 AM, "Preexo" < > >> >> >> > >> >> >> > preexo@ > >> >> >> > >> >> >> > > wrote: > >> >> >> > > >> >> >> >> Hi Alan, wow! > >> >> >> >> I wasn't even aware anymore that I signed up at the marketplace > >> >> before > >> >> >> >> from > >> >> >> >> within the vtiger installation. The embedded marketplace does > >> not > >> >> give > >> >> >> me > >> >> >> >> any hint on that, it seemed like it was just like this from the > >> >> >> >> beginning. > >> >> >> >> Apparently I actually signed up with a different email as well, > >> so > >> >> I > >> >> >> >> tried > >> >> >> >> to password reset all my email addresses and one of them > >> actually > >> >> got > >> >> >> an > >> >> >> >> email with a link and I reset the password and logged in and > see > >> >> there > >> >> >> >> are > >> >> >> >> my invoices! Thanks a lot!!! > >> >> >> >> > >> >> >> >> Now, I want to disconnect that marketplace account from my > >> vtiger > >> >> >> >> instance > >> >> >> >> account and use another one... haha, can? > >> >> >> >> > >> >> >> >> I kind of suspected something like this but it shows clearly > how > >> >> badly > >> >> >> >> designed the embedded UI of the extension store is... > >> >> >> >> And honestly... it also shows how poor the vtiger support > >> sometimes > >> >> >> can > >> >> >> >> be, > >> >> >> >> but that didn't surprise me very much. > >> >> >> >> > >> >> >> >> > >> >> >> >> Alan Lord (News) wrote > >> >> >> >> > Preexo, > >> >> >> >> > > >> >> >> >> > The user credentials you use to create an account in the > >> >> Extension > >> >> >> >> Store > >> >> >> >> > do not have to be the same as the username you login to > vtiger > >> >> with. > >> >> >> >> > > >> >> >> >> > The credentials you used to create the Marketplace account > >> from > >> >> >> within > >> >> >> >> > the Extension store are the ones you should use to login to > >> the > >> >> >> vtiger > >> >> >> >> > Marketplace. Not your vtiger login. > >> >> >> >> > > >> >> >> >> > If you do that your Invoice for your purchases should be > >> visible. > >> >> >> >> > > >> >> >> >> > HTH > >> >> >> >> > > >> >> >> >> > Alan > >> >> >> >> > > >> >> >> >> > PS: We did get a few questions about Marketplace invoicing > >> from > >> >> >> >> > customers very early on, but we haven't had any for ages now. > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > On 24/09/15 11:30, Preexo wrote: > >> >> >> >> >> Prasad, thanks alot for trying to help... > >> >> >> >> >> But... Seriously? how is that supposed to work? > >> >> >> >> >> We installed the OS vtiger on our own server, vtiger > >> shouldn't > >> >> have > >> >> >> >> any > >> >> >> >> >> idea > >> >> >> >> >> of our data, therefore no user credentials from my userlogin > >> of > >> >> my > >> >> >> >> vtiger > >> >> >> >> >> installation... > >> >> >> >> >> Anyway, I still tried lol... didn't work (surprise) and > >> signed > >> >> up > >> >> >> now > >> >> >> >> on > >> >> >> >> >> the > >> >> >> >> >> marketplace now. No invoices in my account of course. > >> >> >> >> >> > >> >> >> >> >> I sent an email to > >> >> >> >> > >> >> >> >> > sales@ > >> >> >> >> > >> >> >> >> > about this issue as well (actually 2 > >> >> >> >> >> days ago), please just provide us some invoices soon... In > >> mail > >> >> >> mail > >> >> >> I > >> >> >> >> >> let > >> >> >> >> >> you know the details of the credit card used so you will be > >> able > >> >> to > >> >> >> >> >> identify > >> >> >> >> >> the purchases (2 by now) > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> Prasad-14 wrote > >> >> >> >> >>> Please visit the URL: > >> >> >> https://marketplace.vtiger.com/customer/login > >> >> >> >> (use > >> >> >> >> >>> the same credentials you provided in CRM). > >> >> >> >> >>> > >> >> >> >> >>> -- > >> >> >> >> >>> FB <http://www.facebook.com/vtiger> I Twit > >> >> >> >> >>> <http://twitter.com/vtigercrm> I > >> >> >> >> >>> LIn > >> <https://www.linkedin.com/company/1270573?trk=tyah> > >> I > >> >> >> Blog > >> >> >> >> >>> <https://blogs.vtiger.com> I Website > >> >> >> >> >>> <https://www.vtiger.com/> > >> >> >> >> >>> > >> >> >> >> >>> On Thu, Sep 24, 2015 at 2:00 PM, Preexo < > >> >> >> >> >> > >> >> >> >> >>> preexo@ > >> >> >> >> >> > >> >> >> >> >>> > wrote: > >> >> >> >> >>> > >> >> >> >> >>>> We bought through marketplace integrated in our vtiger > >> >> >> installation. > >> >> >> >> no > >> >> >> >> >>>> login > >> >> >> >> >>>> there, no button to find any invoices. > >> >> >> >> >>>> Any idea? > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> Prasad-14 wrote > >> >> >> >> >>>>> Have you tried login to Marketplace Portal > >> >> >> >> >>>>> <https://marketplace.vtiger.com/customer/Login>? > >> >> >> >> >>>>> > >> >> >> >> >>>>> Regards, > >> >> >> >> >>>>> Prasad > >> >> >> >> >>>>> > >> >> >> >> >>>>> -- > >> >> >> >> >>>>> FB <http://www.facebook.com/vtiger> I Twit > >> >> >> >> >>>>> <http://twitter.com/vtigercrm> I > >> >> >> >> >>>>> LIn < > >> https://www.linkedin.com/company/1270573?trk=tyah> > >> >> I > >> >> >> >> Blog > >> >> >> >> >>>>> <https://blogs.vtiger.com> I Website < > >> >> >> >> >>>> https://www.vtiger.com/> > >> >> >> >> >>>>> > >> >> >> >> >>>>> On Thu, Sep 24, 2015 at 11:44 AM, Preexo < > >> >> >> >> >>>> > >> >> >> >> >>>>> preexo@ > >> >> >> >> >>>> > >> >> >> >> >>>>> > wrote: > >> >> >> >> >>>>> > >> >> >> >> >>>>>> I bought a module 2 days ago on the marketplace and > still > >> >> >> haven't > >> >> >> >> >>>>>> received > >> >> >> >> >>>>>> any kind of recite. > >> >> >> >> >>>>>> this is not acceptable! therefore... no, the marketplace > >> is > >> >> a > >> >> >> >> >>>>>> horrible > >> >> >> >> >>>>>> place > >> >> >> >> >>>>>> to sell modules! > >> >> >> >> >>>>>> > >> >> >> >> >>>>>> > >> >> >> >> >>>>>> > >> >> >> >> >>>>>> -- > >> >> >> >> >>>>>> View this message in context: > >> >> >> >> >>>>>> > >> >> >> >> >>>> > >> >> >> >> > >> >> >> > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17428.html > >> >> >> >> >>>>>> Sent from the vtigercrm-developers mailing list archive > >> at > >> >> >> >> >>>>>> Nabble.com. > >> >> >> >> >>>>>> _______________________________________________ > >> >> >> >> >>>>>> http://www.vtiger.com/ > >> >> >> >> >>>>>> > >> >> >> >> >>>>> > >> >> >> >> >>>>> _______________________________________________ > >> >> >> >> >>>>> http://www.vtiger.com/ > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> > >> >> >> >> >>>> -- > >> >> >> >> >>>> View this message in context: > >> >> >> >> >>>> > >> >> >> >> > >> >> >> > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17430.html > >> >> >> >> >>>> Sent from the vtigercrm-developers mailing list archive at > >> >> >> >> Nabble.com. > >> >> >> >> >>>> _______________________________________________ > >> >> >> >> >>>> http://www.vtiger.com/ > >> >> >> >> >>>> > >> >> >> >> >>> > >> >> >> >> >>> _______________________________________________ > >> >> >> >> >>> http://www.vtiger.com/ > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> -- > >> >> >> >> >> View this message in context: > >> >> >> >> >> > >> >> >> >> > >> >> >> > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17432.html > >> >> >> >> >> Sent from the vtigercrm-developers mailing list archive at > >> >> >> Nabble.com. > >> >> >> >> >> _______________________________________________ > >> >> >> >> >> http://www.vtiger.com/ > >> >> >> >> >> > >> >> >> >> > > >> >> >> >> > > >> >> >> >> > -- > >> >> >> >> > Libertus Solutions > >> >> >> >> > http://www.libertus.co.uk > >> >> >> >> > > >> >> >> >> > _______________________________________________ > >> >> >> >> > http://www.vtiger.com/ > >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> > >> >> >> >> -- > >> >> >> >> View this message in context: > >> >> >> >> > >> >> >> > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17434.html > >> >> >> >> Sent from the vtigercrm-developers mailing list archive at > >> >> Nabble.com. > >> >> >> >> _______________________________________________ > >> >> >> >> http://www.vtiger.com/ > >> >> >> >> > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > http://www.vtiger.com/ > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> -- > >> >> >> View this message in context: > >> >> >> > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17482.html > >> >> >> Sent from the vtigercrm-developers mailing list archive at > >> Nabble.com. > >> >> >> _______________________________________________ > >> >> >> http://www.vtiger.com/ > >> >> >> > >> >> > > >> >> > > >> >> > > >> >> > -- > >> >> > Regards, > >> >> > Manu > >> >> > > >> >> > _______________________________________________ > >> >> > http://www.vtiger.com/ > >> >> > > >> >> > Market_place.jpg (45K) > >> >> > < > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/attachment/17486/0/Market_place.jpg> > >> >> ; > >> >> > >> >> > >> >> > >> >> > >> >> > >> >> -- > >> >> View this message in context: > >> >> > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17490.html > >> >> Sent from the vtigercrm-developers mailing list archive at > Nabble.com. > >> >> _______________________________________________ > >> >> http://www.vtiger.com/ > >> >> > >> > > >> > > >> > > >> > -- > >> > With > >> > Best Regards > >> > Uma.S > >> > Vtiger Team > >> > > >> > _______________________________________________ > >> > http://www.vtiger.com/ > >> > >> > >> > >> > >> > >> -- > >> View this message in context: > >> > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17501.html > >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. > >> _______________________________________________ > >> http://www.vtiger.com/ > >> > > > > > > > > -- > > Regards, > > Manu > > > > _______________________________________________ > > http://www.vtiger.com/ > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17542.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From pratim at vtiger.com Mon Oct 5 05:29:17 2015 From: pratim at vtiger.com (Pratim) Date: Mon, 5 Oct 2015 10:59:17 +0530 Subject: [Vtigercrm-developers] vtiger 6.3 Cannot create Opportunity from Convert Lead In-Reply-To: References: Message-ID: Hi Bernard, We checked your vtiger ondemand instance,The sales stage picklist field is showing properly in convert Lead pop up. I have attached screen shot for reference. May be you can send a screen shot showing what exactly not showing for you then we can have a look at it. On Fri, Oct 2, 2015 at 7:58 AM, Manu urs wrote: > Hi > > In our latest 6.3.0 instance, the opportunity sales stage is an picklist > field.While you are converting lead to opportunity, please enable the > convert opportunity checkbox and select the required sales stage value from > the drop down .You can check this in demo.vtiger com . > Hi developers, > > I have checked in my 5.4 instance, the Convert Lead and Opportnity works > correctly. > > I have checked in my OnDemand account and a local instance of 6.3, does not > work correctly. > > When the convert lead detail screen comes up the Sales Stage picklist does > not > pop the Opportunity Sales Stage entires, it just provides a search box that > goes nowhere. > > Has/does anyone else had/has this issue and have found a solution? > > Regards > Bernard G Bailey > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Pratim vtiger Team *Connect with us on: *Twitter *I* Facebook *I* Blog * I* Wiki *I * Website -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: convert_pop up.jpeg Type: image/jpeg Size: 55715 bytes Desc: not available URL: From simonetravaglini at gmail.com Mon Oct 5 06:39:38 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Mon, 5 Oct 2015 08:39:38 +0200 Subject: [Vtigercrm-developers] New vtiger on demand Message-ID: Hi, I see that vtiger ondemand had big improvement (really good work). I think that at this moment is a different product despite Vtiger open source. Someone of vtiger team can give us more info about open source future? How will be related to vtiger ondemand? -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Mon Oct 5 07:53:42 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Mon, 5 Oct 2015 09:53:42 +0200 Subject: [Vtigercrm-developers] Customer portal - Italian translation (also manual) In-Reply-To: References: Message-ID: Nei file di configurazione del customer portal ho notato che si fa riferimento al default language. Hai idea di dove possa andare a cambiare questo valore? 2015-10-02 7:56 GMT+02:00 Estefan Civera : > ottimo grazie mille!! > > On Thu, Oct 1, 2015 at 7:15 PM, Michele Mastropieri < > michele.mastropieri at gmail.com> wrote: > >> Allego il file completamente tradotto in italiano. >> >> >> >> 2015-10-01 18:06 GMT+02:00 Michele Mastropieri < >> michele.mastropieri at gmail.com>: >> >>> Hi to all, >>> >>> I'm searching for language files to get customerportal in italian. >>> >>> I've found a file under language folder "en_us.lang.php" that I can >>> translate manually but some other elements are not present in this file. >>> >>> For example, the listbox of Priority have multiple values that are not >>> present into that php file and so I obtain a partial translate. >>> >>> How solve it? >>> >>> Regards. >>> >> >> >> >> -- >> >> ------------------------------ >> dott. Michele Mastropieri >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Mon Oct 5 09:14:37 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Mon, 5 Oct 2015 11:14:37 +0200 Subject: [Vtigercrm-developers] Customer Portal language problem. Message-ID: Hi to all, I've translate manually en_us.lang.php and I created it_it.lang.php Loaded it_it.lang.php into language folder. modified PortalConfig.php as follow: //$default_language = 'en_us'; $default_language = 'it_it'; $languages = Array('it_it'=>'Italian','en_us'=>'US English','de_de'=>'DE Deutsch','pt_br'=>'PT Brasil','fr_fr'=>'Francais', 'tr_tr'=>'Turkce Dil Paketi'); The IT language is correctly loaded but some elements, expecially when I create a new ticket the elements of html select are in english (severity, category, priority). Where I can found the relative text? See the exemple attachment file. Thanks to all! -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Schermata 2015-10-05 alle 11.12.16.png Type: image/png Size: 16305 bytes Desc: not available URL: From micker at free.fr Mon Oct 5 10:20:23 2015 From: micker at free.fr (micker) Date: Mon, 5 Oct 2015 03:20:23 -0700 (PDT) Subject: [Vtigercrm-developers] update fireld between quote and invoice In-Reply-To: References: <1443453367497-17476.post@n4.nabble.com> <7614fb89-204e-4de7-ae29-025c9fe91fe0@email.android.com> Message-ID: <1444040423112-17548.post@n4.nabble.com> great thanks for information ... -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/update-fireld-between-quote-and-invoice-tp17476p17548.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From micker at free.fr Mon Oct 5 10:21:58 2015 From: micker at free.fr (micker) Date: Mon, 5 Oct 2015 03:21:58 -0700 (PDT) Subject: [Vtigercrm-developers] vtiger Email confirmation for read and delivery Message-ID: <1444040518613-17549.post@n4.nabble.com> hello how to add Email confirmation for read and delivery for all email in vtiger ? thanks for information -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/vtiger-Email-confirmation-for-read-and-delivery-tp17549.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From lajeeshk at gmail.com Mon Oct 5 11:31:45 2015 From: lajeeshk at gmail.com (Lajeesh K) Date: Mon, 5 Oct 2015 17:01:45 +0530 Subject: [Vtigercrm-developers] vtiger Email confirmation for read anddelivery In-Reply-To: <1444040518613-17549.post@n4.nabble.com> References: <1444040518613-17549.post@n4.nabble.com> Message-ID: <56125fde.82bf440a.dfe46.7609@mx.google.com> Use sendgrid api for this -----Original Message----- From: "micker" Sent: ?05-?10-?2015 04:02 PM To: "vtigercrm-developers at lists.vtigercrm.com" Subject: [Vtigercrm-developers] vtiger Email confirmation for read anddelivery hello how to add Email confirmation for read and delivery for all email in vtiger ? thanks for information -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/vtiger-Email-confirmation-for-read-and-delivery-tp17549.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. _______________________________________________ http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From micker at free.fr Mon Oct 5 11:40:56 2015 From: micker at free.fr (micker) Date: Mon, 5 Oct 2015 04:40:56 -0700 (PDT) Subject: [Vtigercrm-developers] vtiger Email confirmation for read anddelivery In-Reply-To: <56125fde.82bf440a.dfe46.7609@mx.google.com> References: <1444040518613-17549.post@n4.nabble.com> <56125fde.82bf440a.dfe46.7609@mx.google.com> Message-ID: <1444045256731-17551.post@n4.nabble.com> soory i don'y understand vtiger use send grid ? no way in core ? (5.1 have this option i remenbered) -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/vtiger-Email-confirmation-for-read-and-delivery-tp17549p17551.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From comaggi at gmail.com Mon Oct 5 11:58:14 2015 From: comaggi at gmail.com (Conrado Maggi) Date: Mon, 5 Oct 2015 13:58:14 +0200 Subject: [Vtigercrm-developers] Marketplace. Use the module but not paid for it? Message-ID: Hi, Some time ago I asked about the subscribers in the marketplace with Paid On = NO. And I was told that are users that haven't completed the purchase. Today I login into a customers' instance, I notice that is using one of our modules but when I go to the marketplace I see that this customers purchase is in status = NO How does the maketplace work? People can download the module, not paid and still using it? Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From comaggi at gmail.com Mon Oct 5 11:59:42 2015 From: comaggi at gmail.com (Conrado Maggi) Date: Mon, 5 Oct 2015 13:59:42 +0200 Subject: [Vtigercrm-developers] New vtiger on demand In-Reply-To: References: Message-ID: Hi Simone, I think that what you are seeing is actually a Theme. That's why they add custom theme support in 6.4. Although, +1 for knowing the Open Source roadmap. Thanks! On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Hi, > I see that vtiger ondemand had big improvement (really good work). I think > that at this moment is a different product despite Vtiger open source. > Someone of vtiger team can give us more info about open source future? How > will be related to vtiger ondemand? > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From comaggi at gmail.com Mon Oct 5 12:18:41 2015 From: comaggi at gmail.com (Conrado Maggi) Date: Mon, 5 Oct 2015 14:18:41 +0200 Subject: [Vtigercrm-developers] Marketplace Guidelines In-Reply-To: References: Message-ID: Would appreciate some feedback on this one too. Thanks! Conrado On Mon, Sep 28, 2015 at 10:39 AM, Conrado Maggi wrote: > Hi, > > I was browsing the marketplace and I wonder if this: > https://wiki.vtiger.com/index.php/Marketplace_Review_Guidelines is still > valid. Specially > > *2.2 Extension should not overwrite any core / other module file during > installation / runtime.* > > > Seems to me that some extensions can't accomplish their goals without > changing core files. > > Thanks, > Conrado > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Mon Oct 5 13:34:33 2015 From: uma.s at vtiger.com (Uma S) Date: Mon, 5 Oct 2015 19:04:33 +0530 Subject: [Vtigercrm-developers] Marketplace Guidelines In-Reply-To: References: Message-ID: Hi Conrado, Making use of data of other module will be fine, But altering the functionality of core module in strictly prohibited. Any such changes which is reflecting changes to core module will get rejected. As user depending on core module functionality will completely loose the changes. On Mon, Oct 5, 2015 at 5:48 PM, Conrado Maggi wrote: > Would appreciate some feedback on this one too. > > Thanks! > Conrado > > On Mon, Sep 28, 2015 at 10:39 AM, Conrado Maggi wrote: > >> Hi, >> >> I was browsing the marketplace and I wonder if this: >> https://wiki.vtiger.com/index.php/Marketplace_Review_Guidelines is still >> valid. Specially >> >> *2.2 Extension should not overwrite any core / other module file during >> installation / runtime.* >> >> >> Seems to me that some extensions can't accomplish their goals without >> changing core files. >> >> Thanks, >> Conrado >> >> >> > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Mon Oct 5 16:45:24 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Mon, 5 Oct 2015 18:45:24 +0200 Subject: [Vtigercrm-developers] user_previleges Message-ID: Hello, I have a problem on an installation that we moved from a server to another. We faced a strange beahvior with permission, user with higer previleges can't open record of user with lower previleges if created in new server. then we discovered that file in user_previleges folder where assigned to wrong user and were not update. So we resolved this permission server problem. But the problem of record persist. I've also tried to save sharing rules and roles, but no effect... any ideas? -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Mon Oct 5 16:53:02 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Mon, 5 Oct 2015 18:53:02 +0200 Subject: [Vtigercrm-developers] New vtiger on demand In-Reply-To: References: Message-ID: Vtiger team, news on roadmap? It's very difficulty work without a clear roadmap! Do you want help comunity giving more info, if possible? Thanks for support! 2015-10-05 13:59 GMT+02:00 Conrado Maggi : > Hi Simone, > > I think that what you are seeing is actually a Theme. That's why they add > custom theme support in 6.4. > > Although, +1 for knowing the Open Source roadmap. > > Thanks! > > On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < > simonetravaglini at gmail.com> wrote: > >> Hi, >> I see that vtiger ondemand had big improvement (really good work). I >> think that at this moment is a different product despite Vtiger open >> source. >> Someone of vtiger team can give us more info about open source future? >> How will be related to vtiger ondemand? >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Mon Oct 5 16:55:58 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Mon, 5 Oct 2015 22:25:58 +0530 Subject: [Vtigercrm-developers] performance and profiling In-Reply-To: References: <53C7DA53.9070803@libertus.co.uk> <53C91B45.9060306@libertus.co.uk> Message-ID: seems these suggestions from Alan is not included in vtiger 6.3. when i used xdebug profiling, this to_html function is called 226985 times. calling this function increases as number of records increases I couldn't understand how to apply these changes by Alan and Sivakumar.if Anyone can provide these modified file for vtiger 6.3, then it will be really helpfull Regards, Lajeesh On Tue, Jul 22, 2014 at 6:23 PM, SivaKumar J wrote: > Hi Alan, > > Thank you very much for your contribution on to_html() function calls to > improve performance. > After analyzing to_html() function, we got that some of those checks what > we are checking in that are not required any more in Vtiger6. > > at line 366 > >> *if($_REQUEST['module'] != 'Settings' && $_REQUEST['file'] != 'ListView' >> && $_REQUEST['module'] != 'Portal' && $_REQUEST['module'] != "Reports")// >> && $_REQUEST['module'] != 'Emails')* >> * $ajax_action = $_REQUEST['module'].'Ajax';* >> > The above check is to identify whether the current request is AJAX or not. > If so, we are setting that as *$_REQUEST['module'].'Ajax'. *But, there > are not AJAX file in Vtiger6 in that structure. So, we don't need this. > > at line 371 > >> *if($action != 'CustomView' && $action != 'Export' && $action != >> $ajax_action && $action != 'LeadConvertToEntities' && $action != >> 'CreatePDF' && $action != 'ConvertAsFAQ' && $_REQUEST['module'] != >> 'Dashboard' && $action != 'CreateSOPDF' && $action != 'SendPDFMail' && >> (!isset($_REQUEST['submode'])) )* >> * {* >> * $doconvert = true;* >> * }* > > In this check, except "Export" we don't have any actions like what we are > comparing, so no need of this comparision. Earlier there is an action > called Export for Exporting record in Vtiger5.4.0, but now we are using > ExportData.php for this action. While Exporting record, at > *modules/Vtiger/actions/ExportData.php* we are sanitizing all values > which will decode those values with decode_html() on line 243. So, there is > no use of encoding with to_html() for Export as well. We can remove this > also. Else, we need to add this here and remove decode_html() where we are > doing in sanitize values. > > > After doing all these modification, finally my code is like this. > > */*** >> * * Function to decide whether to_html should convert values or not for a >> request* >> * * @global type $doconvert* >> * * @global type $inUTF8* >> * * @global type $default_charset* >> * */* >> *function decide_to_html(){* >> * global $doconvert,$inUTF8,$default_charset; * >> * $action = $_REQUEST['action']; * >> >> * $inUTF8 = (strtoupper($default_charset) == 'UTF-8'); * >> >> * $doconvert = true; * >> >> > > // Need to remove decode_html() which we are doing while exporting >> records from list/Detail view on ExportData.php line 243 >> > * if($action == 'ExportData'){* >> * $doconvert = false; * >> * }* >> *}* >> // Execute this function when this file got included >> *decide_to_html();* >> >> */** Function to convert the given string to html* >> * * @param $string -- string:: Type string* >> * * @param $ecnode -- boolean:: Type boolean* >> * * @returns $string -- string:: Type string* >> * */* >> *function to_html($string, $encode=true) {* >> * // For optimization - default_charset can be either upper / lower >> case.* >> * global $doconvert,$inUTF8,$default_charset,$htmlCache;* >> >> * if(is_string($string)) {* >> * // In vtiger5 ajax request are treated specially and the data is >> encoded* >> * if ($doconvert == true) {* >> * if(isset($htmlCache[$string])){* >> * $string = $htmlCache[$string];* >> * }else{* >> * if($inUTF8)* >> * $string = htmlentities($string, ENT_QUOTES, >> $default_charset);* >> * else* >> * $string = preg_replace(array('//', '/"/'), >> array('<', '>', '"'), $string);* >> >> * $htmlCache[$string] = $string;* >> * }* >> * }* >> * }* >> * return $string;* >> *}* >> > > Please let me know if I missed any thing in here. > Thank you > > > > > > On Fri, Jul 18, 2014 at 6:34 PM, Alan Bell > wrote: > >> turns out that most of what to_html is processing is very repetitive, if >> it just populates an array as it goes along and then checks in that array >> it is a lot faster than doing htmlentities on the string every time. >> >> global $htmlcache;//store the stripped HTML as we go along, a lot of the >> time we are processing the same strings >> function to_html($string, $encode=true) >> { >> global $doconvert; >> global $default_charset; >> global $htmlcache; >> if($doconvert){ >> if(isset($htmlcache[$string])){ >> return $htmlcache[$string]; >> }else{ >> $clean= htmlentities($string, ENT_QUOTES, >> $default_charset);//we don't care if it is a string or not, faster not to >> care >> $htmlcache[$string]=$clean; >> return $clean; >> } >> }else{ >> return $string; >> } >> >> >> } >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Regards, > Siva > Vtiger > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manu.k at vtiger.com Tue Oct 6 05:55:23 2015 From: manu.k at vtiger.com (Manu urs) Date: Tue, 6 Oct 2015 11:25:23 +0530 Subject: [Vtigercrm-developers] marketplace In-Reply-To: References: <1443090601647-17432.post@n4.nabble.com> <1443094788505-17434.post@n4.nabble.com> <1443501789629-17482.post@n4.nabble.com> <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> <1444019247307-17542.post@n4.nabble.com> Message-ID: Hi Preexo, Can you able to login to the marketplace.vtiger.com by using same credentials what you have provided in CRM? If this login breaks please use the forgot password to change password and then retry. Regards, Manu Urs On Mon, Oct 5, 2015 at 10:17 AM, Manu urs wrote: > Hi Preexo, > > Thanks for providing the information . We will check and get back to you. > > Regards, > Manu Urs > > > > On Mon, Oct 5, 2015 at 9:57 AM, Preexo wrote: > >> Manu, thanks for helping! >> >> vtiger 6.3 >> ExtensionStore 1.1.7 >> >> Can we resolve this somehow? >> >> >> Manu urs wrote >> > Hi >> > >> > This authorization breaking error is because of login issue. Let us >> > know >> > the Vtiger version and Extension version(Please look into Vtiger_tab >> > table) you are using. It help to find the root couse of the issue. >> > >> > Regards, >> > Manu Urs >> > >> > On Wed, Sep 30, 2015 at 8:06 AM, Preexo < >> >> > preexo@ >> >> > > wrote: >> > >> >> The store extension in the store actually had an update button. >> >> Unfortunately >> >> I got an error after clicking on it. Can I update by hand or should I >> add >> >> the code by hand? >> >> < >> >> >> http://vtiger-crm.2324883.n4.nabble.com/file/n17501/2015-09-30_10_38_36-ExtensionStore.png >> >> > >> >> >> >> >> >> Uma S wrote >> >> > Hi, >> >> > >> >> > Please do check if you can find update button on Extension store >> widget >> >> > from extension store of crm. If yes please do go ahead with upgrade >> to >> >> > find >> >> > the changes of logout button. >> >> > >> >> > On Tue, Sep 29, 2015 at 5:20 PM, Preexo < >> >> >> >> > preexo@ >> >> >> >> > > wrote: >> >> > >> >> >> Well... There is no logout button in my embedded marketplace... Bug? >> >> >> See screenshot attached: >> >> >> < >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/file/n17490/2015-09-29_19_55_17.png >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> Manu urs wrote >> >> >> > Hi Preexo, >> >> >> > >> >> >> > The Logout button will appear once you login to the marketplace >> >> >> account >> >> >> > .You can disconnect that marketplace account from your Vtiger >> >> instance >> >> >> by >> >> >> > using the 'Logout' Button which is on the right top corner of >> >> >> extension >> >> >> > view . After Logout you can also able to login with different >> >> >> credential. >> >> >> > Please have a look on attached screen shot. >> >> >> > >> >> >> > >> >> >> > >> >> >> > Regards, >> >> >> > Manu Urs >> >> >> > >> >> >> > >> >> >> > On Tue, Sep 29, 2015 at 10:13 AM, Preexo < >> >> >> >> >> >> > preexo@ >> >> >> >> >> >> > > wrote: >> >> >> > >> >> >> >> Of course... I always love to blame others for my forgetfulness >> >> >> brain... >> >> >> >> lol. >> >> >> >> Anyway, I don't do it this time... That I forgot after 9 months >> >> that >> >> I >> >> >> >> actually had registered somewhere is my own fault. >> >> >> >> >> >> >> >> Just to clarify: >> >> >> >> That the UI of the embedded marketplace does not give me any hint >> >> that >> >> >> I >> >> >> >> was >> >> >> >> actually logged in (since I registered 9 months ago), it didn't >> >> give >> >> >> me >> >> >> >> any >> >> >> >> logout button, no user panel, no way to retrieve the invoices... >> >> THAT >> >> >> is >> >> >> >> vtigers really bad UI... the bad UX I experienced is their fault >> >> since >> >> >> >> the >> >> >> >> embedded marketplace UI is so bad. >> >> >> >> It's also vtigers fault that they not responding to my >> >> support-request >> >> >> >> emails for days and even once they did not understand what my >> >> problem >> >> >> is. >> >> >> >> In fact, they are still trying to help me via email, because they >> >> are >> >> >> >> seem >> >> >> >> to not understand my emails. >> >> >> >> >> >> >> >> Alan came along and helped me with one comment... Thanks again >> >> Alan! >> >> >> >> >> >> >> >> I guess that vtiger never understands what I want from them via >> >> email >> >> >> or >> >> >> >> here in the forum (yes it has happened too many times before, >> >> >> exchanged >> >> >> >> months and months of email exchange to finally get a small piece >> of >> >> >> >> information) can be blamed on language barrier. Their English is >> >> >> >> obviously >> >> >> >> very limited and I have a lot of understanding for that, since >> >> English >> >> >> is >> >> >> >> also my second language and sometimes it can be hard. >> >> >> >> >> >> >> >> So, don't take me wrong... I appreciate all the hard work of >> vtiger >> >> >> and >> >> >> I >> >> >> >> will try be even more patient about stuff like this in future. >> But >> >> the >> >> >> >> embedded marketplace is a joke! >> >> >> >> >> >> >> >> >> >> >> >> Doug-116 wrote >> >> >> >> > I'm confused. >> >> >> >> > You forgot your login credentials and the way to logon but that >> >> is >> >> >> >> vtigers >> >> >> >> > fault? >> >> >> >> > On Sep 24, 2015 7:49 AM, "Preexo" < >> >> >> >> >> >> >> >> > preexo@ >> >> >> >> >> >> >> >> > > wrote: >> >> >> >> > >> >> >> >> >> Hi Alan, wow! >> >> >> >> >> I wasn't even aware anymore that I signed up at the >> marketplace >> >> >> before >> >> >> >> >> from >> >> >> >> >> within the vtiger installation. The embedded marketplace does >> >> not >> >> >> give >> >> >> >> me >> >> >> >> >> any hint on that, it seemed like it was just like this from >> the >> >> >> >> >> beginning. >> >> >> >> >> Apparently I actually signed up with a different email as >> well, >> >> so >> >> >> I >> >> >> >> >> tried >> >> >> >> >> to password reset all my email addresses and one of them >> >> actually >> >> >> got >> >> >> >> an >> >> >> >> >> email with a link and I reset the password and logged in and >> see >> >> >> there >> >> >> >> >> are >> >> >> >> >> my invoices! Thanks a lot!!! >> >> >> >> >> >> >> >> >> >> Now, I want to disconnect that marketplace account from my >> >> vtiger >> >> >> >> >> instance >> >> >> >> >> account and use another one... haha, can? >> >> >> >> >> >> >> >> >> >> I kind of suspected something like this but it shows clearly >> how >> >> >> badly >> >> >> >> >> designed the embedded UI of the extension store is... >> >> >> >> >> And honestly... it also shows how poor the vtiger support >> >> sometimes >> >> >> >> can >> >> >> >> >> be, >> >> >> >> >> but that didn't surprise me very much. >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> Alan Lord (News) wrote >> >> >> >> >> > Preexo, >> >> >> >> >> > >> >> >> >> >> > The user credentials you use to create an account in the >> >> >> Extension >> >> >> >> >> Store >> >> >> >> >> > do not have to be the same as the username you login to >> vtiger >> >> >> with. >> >> >> >> >> > >> >> >> >> >> > The credentials you used to create the Marketplace account >> >> from >> >> >> >> within >> >> >> >> >> > the Extension store are the ones you should use to login to >> >> the >> >> >> >> vtiger >> >> >> >> >> > Marketplace. Not your vtiger login. >> >> >> >> >> > >> >> >> >> >> > If you do that your Invoice for your purchases should be >> >> visible. >> >> >> >> >> > >> >> >> >> >> > HTH >> >> >> >> >> > >> >> >> >> >> > Alan >> >> >> >> >> > >> >> >> >> >> > PS: We did get a few questions about Marketplace invoicing >> >> from >> >> >> >> >> > customers very early on, but we haven't had any for ages >> now. >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > On 24/09/15 11:30, Preexo wrote: >> >> >> >> >> >> Prasad, thanks alot for trying to help... >> >> >> >> >> >> But... Seriously? how is that supposed to work? >> >> >> >> >> >> We installed the OS vtiger on our own server, vtiger >> >> shouldn't >> >> >> have >> >> >> >> >> any >> >> >> >> >> >> idea >> >> >> >> >> >> of our data, therefore no user credentials from my >> userlogin >> >> of >> >> >> my >> >> >> >> >> vtiger >> >> >> >> >> >> installation... >> >> >> >> >> >> Anyway, I still tried lol... didn't work (surprise) and >> >> signed >> >> >> up >> >> >> >> now >> >> >> >> >> on >> >> >> >> >> >> the >> >> >> >> >> >> marketplace now. No invoices in my account of course. >> >> >> >> >> >> >> >> >> >> >> >> I sent an email to >> >> >> >> >> >> >> >> >> >> > sales@ >> >> >> >> >> >> >> >> >> >> > about this issue as well (actually 2 >> >> >> >> >> >> days ago), please just provide us some invoices soon... In >> >> mail >> >> >> >> mail >> >> >> >> I >> >> >> >> >> >> let >> >> >> >> >> >> you know the details of the credit card used so you will be >> >> able >> >> >> to >> >> >> >> >> >> identify >> >> >> >> >> >> the purchases (2 by now) >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> Prasad-14 wrote >> >> >> >> >> >>> Please visit the URL: >> >> >> >> https://marketplace.vtiger.com/customer/login >> >> >> >> >> (use >> >> >> >> >> >>> the same credentials you provided in CRM). >> >> >> >> >> >>> >> >> >> >> >> >>> -- >> >> >> >> >> >>> FB <http://www.facebook.com/vtiger> I Twit >> >> >> >> >> >>> <http://twitter.com/vtigercrm> I >> >> >> >> >> >>> LIn >> >> <https://www.linkedin.com/company/1270573?trk=tyah> >> >> I >> >> >> >> Blog >> >> >> >> >> >>> <https://blogs.vtiger.com> I Website >> >> >> >> >> >>> <https://www.vtiger.com/> >> >> >> >> >> >>> >> >> >> >> >> >>> On Thu, Sep 24, 2015 at 2:00 PM, Preexo < >> >> >> >> >> >> >> >> >> >> >> >>> preexo@ >> >> >> >> >> >> >> >> >> >> >> >>> > wrote: >> >> >> >> >> >>> >> >> >> >> >> >>>> We bought through marketplace integrated in our vtiger >> >> >> >> installation. >> >> >> >> >> no >> >> >> >> >> >>>> login >> >> >> >> >> >>>> there, no button to find any invoices. >> >> >> >> >> >>>> Any idea? >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> Prasad-14 wrote >> >> >> >> >> >>>>> Have you tried login to Marketplace Portal >> >> >> >> >> >>>>> <https://marketplace.vtiger.com/customer/Login>? >> >> >> >> >> >>>>> >> >> >> >> >> >>>>> Regards, >> >> >> >> >> >>>>> Prasad >> >> >> >> >> >>>>> >> >> >> >> >> >>>>> -- >> >> >> >> >> >>>>> FB <http://www.facebook.com/vtiger> I Twit >> >> >> >> >> >>>>> <http://twitter.com/vtigercrm> I >> >> >> >> >> >>>>> LIn < >> >> https://www.linkedin.com/company/1270573?trk=tyah> >> >> >> I >> >> >> >> >> Blog >> >> >> >> >> >>>>> <https://blogs.vtiger.com> I Website < >> >> >> >> >> >>>> https://www.vtiger.com/> >> >> >> >> >> >>>>> >> >> >> >> >> >>>>> On Thu, Sep 24, 2015 at 11:44 AM, Preexo < >> >> >> >> >> >>>> >> >> >> >> >> >>>>> preexo@ >> >> >> >> >> >>>> >> >> >> >> >> >>>>> > wrote: >> >> >> >> >> >>>>> >> >> >> >> >> >>>>>> I bought a module 2 days ago on the marketplace and >> still >> >> >> >> haven't >> >> >> >> >> >>>>>> received >> >> >> >> >> >>>>>> any kind of recite. >> >> >> >> >> >>>>>> this is not acceptable! therefore... no, the >> marketplace >> >> is >> >> >> a >> >> >> >> >> >>>>>> horrible >> >> >> >> >> >>>>>> place >> >> >> >> >> >>>>>> to sell modules! >> >> >> >> >> >>>>>> >> >> >> >> >> >>>>>> >> >> >> >> >> >>>>>> >> >> >> >> >> >>>>>> -- >> >> >> >> >> >>>>>> View this message in context: >> >> >> >> >> >>>>>> >> >> >> >> >> >>>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17428.html >> >> >> >> >> >>>>>> Sent from the vtigercrm-developers mailing list archive >> >> at >> >> >> >> >> >>>>>> Nabble.com. >> >> >> >> >> >>>>>> _______________________________________________ >> >> >> >> >> >>>>>> http://www.vtiger.com/ >> >> >> >> >> >>>>>> >> >> >> >> >> >>>>> >> >> >> >> >> >>>>> _______________________________________________ >> >> >> >> >> >>>>> http://www.vtiger.com/ >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> >> >> >> >> >> >>>> -- >> >> >> >> >> >>>> View this message in context: >> >> >> >> >> >>>> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17430.html >> >> >> >> >> >>>> Sent from the vtigercrm-developers mailing list archive >> at >> >> >> >> >> Nabble.com. >> >> >> >> >> >>>> _______________________________________________ >> >> >> >> >> >>>> http://www.vtiger.com/ >> >> >> >> >> >>>> >> >> >> >> >> >>> >> >> >> >> >> >>> _______________________________________________ >> >> >> >> >> >>> http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> >> >> >> View this message in context: >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17432.html >> >> >> >> >> >> Sent from the vtigercrm-developers mailing list archive at >> >> >> >> Nabble.com. >> >> >> >> >> >> _______________________________________________ >> >> >> >> >> >> http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> > >> >> >> >> >> > >> >> >> >> >> > -- >> >> >> >> >> > Libertus Solutions >> >> >> >> >> > http://www.libertus.co.uk >> >> >> >> >> > >> >> >> >> >> > _______________________________________________ >> >> >> >> >> > http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> >> >> View this message in context: >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17434.html >> >> >> >> >> Sent from the vtigercrm-developers mailing list archive at >> >> >> Nabble.com. >> >> >> >> >> _______________________________________________ >> >> >> >> >> http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> > >> >> >> >> > _______________________________________________ >> >> >> >> > http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> >> View this message in context: >> >> >> >> >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17482.html >> >> >> >> Sent from the vtigercrm-developers mailing list archive at >> >> Nabble.com. >> >> >> >> _______________________________________________ >> >> >> >> http://www.vtiger.com/ >> >> >> >> >> >> >> > >> >> >> > >> >> >> > >> >> >> > -- >> >> >> > Regards, >> >> >> > Manu >> >> >> > >> >> >> > _______________________________________________ >> >> >> > http://www.vtiger.com/ >> >> >> > >> >> >> > Market_place.jpg (45K) >> >> >> > < >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/attachment/17486/0/Market_place.jpg> >> >> >> ; >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> >> View this message in context: >> >> >> >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17490.html >> >> >> Sent from the vtigercrm-developers mailing list archive at >> Nabble.com. >> >> >> _______________________________________________ >> >> >> http://www.vtiger.com/ >> >> >> >> >> > >> >> > >> >> > >> >> > -- >> >> > With >> >> > Best Regards >> >> > Uma.S >> >> > Vtiger Team >> >> > >> >> > _______________________________________________ >> >> > http://www.vtiger.com/ >> >> >> >> >> >> >> >> >> >> >> >> -- >> >> View this message in context: >> >> >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17501.html >> >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> >> http://www.vtiger.com/ >> >> >> > >> > >> > >> > -- >> > Regards, >> > Manu >> > >> > _______________________________________________ >> > http://www.vtiger.com/ >> >> >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17542.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Regards, > Manu > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From micker at free.fr Tue Oct 6 07:04:10 2015 From: micker at free.fr (micker) Date: Tue, 6 Oct 2015 00:04:10 -0700 (PDT) Subject: [Vtigercrm-developers] email counter and reporting was broken 6.3 Message-ID: <1444115050829-17560.post@n4.nabble.com> hello after update 6.2 to 6.3 email reporting was broken all time are 02:00 and no date for all mail ... strange not ? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From michele.mastropieri at gmail.com Tue Oct 6 07:18:43 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 6 Oct 2015 09:18:43 +0200 Subject: [Vtigercrm-developers] Customer Portal language problem. In-Reply-To: References: Message-ID: The elements are located into mysql database. Look there if someone will have my same need 2015-10-05 11:14 GMT+02:00 Michele Mastropieri < michele.mastropieri at gmail.com>: > Hi to all, > > I've translate manually en_us.lang.php and I created it_it.lang.php > > Loaded it_it.lang.php into language folder. > > modified PortalConfig.php as follow: > > //$default_language = 'en_us'; > $default_language = 'it_it'; > $languages = Array('it_it'=>'Italian','en_us'=>'US English','de_de'=>'DE > Deutsch','pt_br'=>'PT Brasil','fr_fr'=>'Francais', 'tr_tr'=>'Turkce Dil > Paketi'); > > The IT language is correctly loaded but some elements, expecially when I > create a new ticket the elements of html select are in english (severity, > category, priority). Where I can found the relative text? > > See the exemple attachment file. > > Thanks to all! > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From manu.k at vtiger.com Tue Oct 6 07:26:03 2015 From: manu.k at vtiger.com (Manu urs) Date: Tue, 6 Oct 2015 12:56:03 +0530 Subject: [Vtigercrm-developers] email counter and reporting was broken 6.3 In-Reply-To: <1444115050829-17560.post@n4.nabble.com> References: <1444115050829-17560.post@n4.nabble.com> Message-ID: Hi Please add the Changeset mentioned in this trac . Regards, Manu Urs On Tue, Oct 6, 2015 at 12:34 PM, micker wrote: > hello after update 6.2 to 6.3 email reporting was broken > all time are 02:00 and no date for all mail > ... > strange not ? > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Tue Oct 6 07:31:08 2015 From: uma.s at vtiger.com (Uma S) Date: Tue, 6 Oct 2015 13:01:08 +0530 Subject: [Vtigercrm-developers] New vtiger on demand In-Reply-To: References: Message-ID: Hi, We have included new layout support in on-demand, that is the change you are seeing in vtiger ondemand. Now complete new layout has been written. This framework of supporting multi layout is being included in vtiger open-source in version 6.4. Where user can able to import and export the layouts for vtiger. In future we are planning this to support developers for publishing new layouts to vtiger from marketplace. On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Vtiger team, news on roadmap? It's very difficulty work without a clear > roadmap! Do you want help comunity giving more info, if possible? > Thanks for support! > > 2015-10-05 13:59 GMT+02:00 Conrado Maggi : > >> Hi Simone, >> >> I think that what you are seeing is actually a Theme. That's why they add >> custom theme support in 6.4. >> >> Although, +1 for knowing the Open Source roadmap. >> >> Thanks! >> >> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < >> simonetravaglini at gmail.com> wrote: >> >>> Hi, >>> I see that vtiger ondemand had big improvement (really good work). I >>> think that at this moment is a different product despite Vtiger open >>> source. >>> Someone of vtiger team can give us more info about open source future? >>> How will be related to vtiger ondemand? >>> >>> -- >>> Simone Travaglini >>> 328 5499846 >>> Linkedin: Simone Travaglini >>> >>> >>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>> necessario! >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 6 07:35:46 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 09:35:46 +0200 Subject: [Vtigercrm-developers] New vtiger on demand In-Reply-To: References: Message-ID: Hi Uma ,thanks for answer... But I don't understand if this new layout will be included in Vtiger 6.4 or only multilayout support... When do you plan to relase 6.4? thanks for support! 2015-10-06 9:31 GMT+02:00 Uma S : > Hi, > > We have included new layout support in on-demand, that is the change you > are seeing in vtiger ondemand. Now complete new layout has been written. > > This framework of supporting multi layout is being included in vtiger > open-source in version 6.4. Where user can able to import and export the > layouts for vtiger. > > In future we are planning this to support developers for publishing new > layouts to vtiger from marketplace. > > On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < > simonetravaglini at gmail.com> wrote: > >> Vtiger team, news on roadmap? It's very difficulty work without a clear >> roadmap! Do you want help comunity giving more info, if possible? >> Thanks for support! >> >> 2015-10-05 13:59 GMT+02:00 Conrado Maggi : >> >>> Hi Simone, >>> >>> I think that what you are seeing is actually a Theme. That's why they >>> add custom theme support in 6.4. >>> >>> Although, +1 for knowing the Open Source roadmap. >>> >>> Thanks! >>> >>> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < >>> simonetravaglini at gmail.com> wrote: >>> >>>> Hi, >>>> I see that vtiger ondemand had big improvement (really good work). I >>>> think that at this moment is a different product despite Vtiger open >>>> source. >>>> Someone of vtiger team can give us more info about open source future? >>>> How will be related to vtiger ondemand? >>>> >>>> -- >>>> Simone Travaglini >>>> 328 5499846 >>>> Linkedin: Simone Travaglini >>>> >>>> >>>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>>> necessario! >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 6 08:07:19 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 10:07:19 +0200 Subject: [Vtigercrm-developers] user_previleges In-Reply-To: References: Message-ID: Hi, update on problem, maybe someone have an idea... now if I create a new HIGHER permission user can see data of LOWER permission user, as expected. But if I create a new LOWER permission user, his record are not accessible from HIGER permission user created before of him. So the problem is that when I create a new user something go wrong with permission calculation... any clue??? 2015-10-05 18:45 GMT+02:00 Simone Travaglini : > Hello, > I have a problem on an installation that we moved from a server to > another. We faced a strange beahvior with permission, user with higer > previleges can't open record of user with lower previleges if created in > new server. then we discovered that file in user_previleges folder where > assigned to wrong user and were not update. So we resolved this permission > server problem. But the problem of record persist. I've also tried to save > sharing rules and roles, but no effect... > any ideas? > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Tue Oct 6 08:13:53 2015 From: alanslists at gmail.com (Alan Lord (News)) Date: Tue, 6 Oct 2015 09:13:53 +0100 Subject: [Vtigercrm-developers] user_previleges In-Reply-To: References: Message-ID: On 06/10/15 09:07, Simone Travaglini wrote: > Hi, > update on problem, maybe someone have an idea... > now if I create a new HIGHER permission user can see data of LOWER > permission user, as expected. But if I create a new LOWER permission > user, his record are not accessible from HIGER permission user created > before of him. So the problem is that when I create a new user something > go wrong with permission calculation... First make sure the webserver can write to all files in your vtiger directory. For debian based hosts that would be something like: sudo chown -R www-data:www-data * Then I would run the following script using a web browser or php command line running as the apache user: > $Vtiger_Utils_Log = true; > require_once('include/utils/CommonUtils.php'); > > echo ("Regerating tabdata files ...
" . PHP_EOL); > perform_post_migration_activities(); > echo ("Done
" . PHP_EOL); > echo "Recalculate Sharing Rules" . PHP_EOL; > RecalculateSharingRules(); > echo "Done" . PHP_EOL; This normally fixes most of these kinds of issues I come across. HTH Al -- Libertus Solutions http://www.libertus.co.uk From stacey.johnson110 at gmail.com Tue Oct 6 08:15:04 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Tue, 6 Oct 2015 15:15:04 +0700 Subject: [Vtigercrm-developers] user_previleges In-Reply-To: References: Message-ID: Doesn't sounds good. Permissions should be rock solid. S On Tue, Oct 6, 2015 at 3:07 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Hi, > update on problem, maybe someone have an idea... > now if I create a new HIGHER permission user can see data of LOWER > permission user, as expected. But if I create a new LOWER permission user, > his record are not accessible from HIGER permission user created before of > him. So the problem is that when I create a new user something go wrong > with permission calculation... > > any clue??? > > 2015-10-05 18:45 GMT+02:00 Simone Travaglini : > >> Hello, >> I have a problem on an installation that we moved from a server to >> another. We faced a strange beahvior with permission, user with higer >> previleges can't open record of user with lower previleges if created in >> new server. then we discovered that file in user_previleges folder where >> assigned to wrong user and were not update. So we resolved this permission >> server problem. But the problem of record persist. I've also tried to save >> sharing rules and roles, but no effect... >> any ideas? >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Tue Oct 6 08:36:22 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Tue, 6 Oct 2015 14:06:22 +0530 Subject: [Vtigercrm-developers] performance and profiling In-Reply-To: References: <53C7DA53.9070803@libertus.co.uk> <53C91B45.9060306@libertus.co.uk> Message-ID: applied to_html changes, still detail view taking 20 seconds to load page. summery view loading quickly I have used xdebud and webgrind for profiling. I am a newbie in profiling while checking vtranslate function inside Vtiger_Field_Model->getPicklistValues is one of the reason for this slownes I have attached webgrind screenshot, it might help someone to identify the bottleneck Regards, Lajeesh On Mon, Oct 5, 2015 at 10:25 PM, lajeesh k wrote: > seems these suggestions from Alan is not included in vtiger 6.3. > when i used xdebug profiling, this to_html function is called 226985 > times. calling this function increases as number of records increases > I couldn't understand how to apply these changes by Alan and Sivakumar.if > Anyone can provide these modified file for vtiger 6.3, then it will be > really helpfull > > > > Regards, > Lajeesh > > On Tue, Jul 22, 2014 at 6:23 PM, SivaKumar J > wrote: > >> Hi Alan, >> >> Thank you very much for your contribution on to_html() function calls to >> improve performance. >> After analyzing to_html() function, we got that some of those checks what >> we are checking in that are not required any more in Vtiger6. >> >> at line 366 >> >>> *if($_REQUEST['module'] != 'Settings' && $_REQUEST['file'] != 'ListView' >>> && $_REQUEST['module'] != 'Portal' && $_REQUEST['module'] != "Reports")// >>> && $_REQUEST['module'] != 'Emails')* >>> * $ajax_action = $_REQUEST['module'].'Ajax';* >>> >> The above check is to identify whether the current request is AJAX or >> not. If so, we are setting that as *$_REQUEST['module'].'Ajax'. *But, >> there are not AJAX file in Vtiger6 in that structure. So, we don't need >> this. >> >> at line 371 >> >>> *if($action != 'CustomView' && $action != 'Export' && $action != >>> $ajax_action && $action != 'LeadConvertToEntities' && $action != >>> 'CreatePDF' && $action != 'ConvertAsFAQ' && $_REQUEST['module'] != >>> 'Dashboard' && $action != 'CreateSOPDF' && $action != 'SendPDFMail' && >>> (!isset($_REQUEST['submode'])) )* >>> * {* >>> * $doconvert = true;* >>> * }* >> >> In this check, except "Export" we don't have any actions like what we >> are comparing, so no need of this comparision. Earlier there is an action >> called Export for Exporting record in Vtiger5.4.0, but now we are using >> ExportData.php for this action. While Exporting record, at >> *modules/Vtiger/actions/ExportData.php* we are sanitizing all values >> which will decode those values with decode_html() on line 243. So, there is >> no use of encoding with to_html() for Export as well. We can remove this >> also. Else, we need to add this here and remove decode_html() where we are >> doing in sanitize values. >> >> >> After doing all these modification, finally my code is like this. >> >> */*** >>> * * Function to decide whether to_html should convert values or not for >>> a request* >>> * * @global type $doconvert* >>> * * @global type $inUTF8* >>> * * @global type $default_charset* >>> * */* >>> *function decide_to_html(){* >>> * global $doconvert,$inUTF8,$default_charset; * >>> * $action = $_REQUEST['action']; * >>> >>> * $inUTF8 = (strtoupper($default_charset) == 'UTF-8'); * >>> >>> * $doconvert = true; * >>> >>> >> >> // Need to remove decode_html() which we are doing while exporting >>> records from list/Detail view on ExportData.php line 243 >>> >> * if($action == 'ExportData'){* >>> * $doconvert = false; * >>> * }* >>> *}* >>> // Execute this function when this file got included >>> *decide_to_html();* >>> >>> */** Function to convert the given string to html* >>> * * @param $string -- string:: Type string* >>> * * @param $ecnode -- boolean:: Type boolean* >>> * * @returns $string -- string:: Type string* >>> * */* >>> *function to_html($string, $encode=true) {* >>> * // For optimization - default_charset can be either upper / lower >>> case.* >>> * global $doconvert,$inUTF8,$default_charset,$htmlCache;* >>> >>> * if(is_string($string)) {* >>> * // In vtiger5 ajax request are treated specially and the data >>> is encoded* >>> * if ($doconvert == true) {* >>> * if(isset($htmlCache[$string])){* >>> * $string = $htmlCache[$string];* >>> * }else{* >>> * if($inUTF8)* >>> * $string = htmlentities($string, ENT_QUOTES, >>> $default_charset);* >>> * else* >>> * $string = preg_replace(array('//', '/"/'), >>> array('<', '>', '"'), $string);* >>> >>> * $htmlCache[$string] = $string;* >>> * }* >>> * }* >>> * }* >>> * return $string;* >>> *}* >>> >> >> Please let me know if I missed any thing in here. >> Thank you >> >> >> >> >> >> On Fri, Jul 18, 2014 at 6:34 PM, Alan Bell >> wrote: >> >>> turns out that most of what to_html is processing is very repetitive, if >>> it just populates an array as it goes along and then checks in that array >>> it is a lot faster than doing htmlentities on the string every time. >>> >>> global $htmlcache;//store the stripped HTML as we go along, a lot of the >>> time we are processing the same strings >>> function to_html($string, $encode=true) >>> { >>> global $doconvert; >>> global $default_charset; >>> global $htmlcache; >>> if($doconvert){ >>> if(isset($htmlcache[$string])){ >>> return $htmlcache[$string]; >>> }else{ >>> $clean= htmlentities($string, ENT_QUOTES, >>> $default_charset);//we don't care if it is a string or not, faster not to >>> care >>> $htmlcache[$string]=$clean; >>> return $clean; >>> } >>> }else{ >>> return $string; >>> } >>> >>> >>> } >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Regards, >> Siva >> Vtiger >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: wegring.png Type: image/png Size: 161549 bytes Desc: not available URL: From m.brummell at btinternet.com Tue Oct 6 09:01:47 2015 From: m.brummell at btinternet.com (m.brummell) Date: Tue, 06 Oct 2015 10:01:47 +0100 Subject: [Vtigercrm-developers] Source.download Message-ID: Hi I am trying.to.download source files for 6.4 to test.via.tortoisesvn but.it.fails.every.time now.with.a.webdav error message.? Is it.not.downloadable at.moment? Regards Mel -------- Original message -------- From: vtigercrm-developers-request at lists.vtigercrm.com Date:06/10/2015 8:35 AM (GMT+00:00) To: vtigercrm-developers at lists.vtigercrm.com Subject: vtigercrm-developers Digest, Vol 117, Issue 16 Send vtigercrm-developers mailing list submissions to vtigercrm-developers at lists.vtigercrm.com To subscribe or unsubscribe via the World Wide Web, visit http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers or, via email, send a message with subject or body 'help' to vtigercrm-developers-request at lists.vtigercrm.com You can reach the person managing the list at vtigercrm-developers-owner at lists.vtigercrm.com When replying, please edit your Subject line so it is more specific than "Re: Contents of vtigercrm-developers digest..." Today's Topics: ?? 1. email counter and reporting was broken 6.3 (micker) ?? 2. Re: Customer Portal language problem. (Michele Mastropieri) ?? 3. Re: email counter and reporting was broken 6.3 (Manu urs) ?? 4. Re: New vtiger on demand (Uma S) ?? 5. Re: New vtiger on demand (Simone Travaglini) ---------------------------------------------------------------------- Message: 1 Date: Tue, 6 Oct 2015 00:04:10 -0700 (PDT) From: micker To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] email counter and reporting was broken 6.3 Message-ID: <1444115050829-17560.post at n4.nabble.com> Content-Type: text/plain; charset=us-ascii hello after update 6.2 to 6.3 email reporting was broken all time are 02:00 and no date for all mail ... strange not ? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. ------------------------------ Message: 2 Date: Tue, 6 Oct 2015 09:18:43 +0200 From: Michele Mastropieri To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Customer Portal language problem. Message-ID: Content-Type: text/plain; charset="utf-8" The elements are located into mysql database. Look there if someone will have my same need 2015-10-05 11:14 GMT+02:00 Michele Mastropieri < michele.mastropieri at gmail.com>: > Hi to all, > > I've translate manually en_us.lang.php and I created it_it.lang.php > > Loaded it_it.lang.php into language folder. > > modified PortalConfig.php as follow: > > //$default_language = 'en_us'; > $default_language = 'it_it'; > $languages = Array('it_it'=>'Italian','en_us'=>'US English','de_de'=>'DE > Deutsch','pt_br'=>'PT Brasil','fr_fr'=>'Francais', 'tr_tr'=>'Turkce Dil > Paketi'); > > The IT language is correctly loaded but some elements, expecially when I > create a new ticket the elements of html select are in english (severity, > category, priority). Where I can found the relative text? > > See the exemple attachment file. > > Thanks to all! > > -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 3 Date: Tue, 6 Oct 2015 12:56:03 +0530 From: Manu urs To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] email counter and reporting was broken 6.3 Message-ID: Content-Type: text/plain; charset="utf-8" Hi Please add the Changeset mentioned in this trac . Regards, Manu Urs On Tue, Oct 6, 2015 at 12:34 PM, micker wrote: > hello after update 6.2 to 6.3 email reporting was broken > all time are 02:00 and no date for all mail > ... > strange not ? > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 4 Date: Tue, 6 Oct 2015 13:01:08 +0530 From: Uma S To: vtigercrm-developers Subject: Re: [Vtigercrm-developers] New vtiger on demand Message-ID: Content-Type: text/plain; charset="utf-8" Hi, We have included new layout support in on-demand, that is the change you are seeing in vtiger ondemand. Now complete new layout has been written. This framework of supporting multi layout is being included in vtiger open-source in version 6.4. Where user can able to import and export the layouts for vtiger. In future we are planning this to support developers for publishing new layouts to vtiger from marketplace. On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Vtiger team, news on roadmap? It's very difficulty work without a clear > roadmap! Do you want help comunity giving more info, if possible? > Thanks for support! > > 2015-10-05 13:59 GMT+02:00 Conrado Maggi : > >> Hi Simone, >> >> I think that what you are seeing is actually a Theme. That's why they add >> custom theme support in 6.4. >> >> Although, +1 for knowing the Open Source roadmap. >> >> Thanks! >> >> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < >> simonetravaglini at gmail.com> wrote: >> >>> Hi, >>> I see that vtiger ondemand had big improvement (really good work). I >>> think that at this moment is a different product despite Vtiger open >>> source. >>> Someone of vtiger team can give us more info about open source future? >>> How will be related to vtiger ondemand? >>> >>> -- >>> Simone Travaglini >>> 328 5499846 >>> Linkedin: Simone Travaglini >>> >>> >>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>> necessario! >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Message: 5 Date: Tue, 6 Oct 2015 09:35:46 +0200 From: Simone Travaglini To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] New vtiger on demand Message-ID: Content-Type: text/plain; charset="utf-8" Hi Uma ,thanks for answer... But I don't understand if this new layout will be included in Vtiger 6.4 or only multilayout support... When do you plan to relase 6.4? thanks for support! 2015-10-06 9:31 GMT+02:00 Uma S : > Hi, > > We have included new layout support in on-demand, that is the change you > are seeing in vtiger ondemand. Now complete new layout has been written. > > This framework of supporting multi layout is being included in vtiger > open-source in version 6.4. Where user can able to import and export the > layouts for vtiger. > > In future we are planning this to support developers for publishing new > layouts to vtiger from marketplace. > > On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < > simonetravaglini at gmail.com> wrote: > >> Vtiger team, news on roadmap? It's very difficulty work without a clear >> roadmap! Do you want help comunity giving more info, if possible? >> Thanks for support! >> >> 2015-10-05 13:59 GMT+02:00 Conrado Maggi : >> >>> Hi Simone, >>> >>> I think that what you are seeing is actually a Theme. That's why they >>> add custom theme support in 6.4. >>> >>> Although, +1 for knowing the Open Source roadmap. >>> >>> Thanks! >>> >>> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < >>> simonetravaglini at gmail.com> wrote: >>> >>>> Hi, >>>> I see that vtiger ondemand had big improvement (really good work). I >>>> think that at this moment is a different product despite Vtiger open >>>> source. >>>> Someone of vtiger team can give us more info about open source future? >>>> How will be related to vtiger ondemand? >>>> >>>> -- >>>> Simone Travaglini >>>> 328 5499846 >>>> Linkedin: Simone Travaglini >>>> >>>> >>>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>>> necessario! >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ _______________________________________________ vtigercrm-developers mailing list vtigercrm-developers at lists.vtigercrm.com http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers End of vtigercrm-developers Digest, Vol 117, Issue 16 ***************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Tue Oct 6 09:14:42 2015 From: uma.s at vtiger.com (Uma S) Date: Tue, 6 Oct 2015 14:44:42 +0530 Subject: [Vtigercrm-developers] Marketplace. Use the module but not paid for it? In-Reply-To: References: Message-ID: Hi Conrado, Can you please get us the log-in id of customer. So that we can check the purchases of extensions made by him in marketplace and update you. On Mon, Oct 5, 2015 at 5:28 PM, Conrado Maggi wrote: > Hi, > > Some time ago I asked about the subscribers in the marketplace with Paid > On = NO. And I was told that are users that haven't completed the purchase. > > Today I login into a customers' instance, I notice that is using one of > our modules but when I go to the marketplace I see that this customers > purchase is in status = NO > > How does the maketplace work? People can download the module, not paid and > still using it? > > Thanks! > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at greenbitweb.com Tue Oct 6 09:17:46 2015 From: info at greenbitweb.com (Matteo Baranzoni) Date: Tue, 6 Oct 2015 11:17:46 +0200 Subject: [Vtigercrm-developers] New vtiger on demand In-Reply-To: References: Message-ID: And about extra features? Attachments on comment and new notificazion area was great new features. Il 06/ott/2015 09:36, "Simone Travaglini" ha scritto: > Hi Uma ,thanks for answer... > But I don't understand if this new layout will be included in Vtiger 6.4 > or only multilayout support... When do you plan to relase 6.4? > thanks for support! > > 2015-10-06 9:31 GMT+02:00 Uma S : > >> Hi, >> >> We have included new layout support in on-demand, that is the change you >> are seeing in vtiger ondemand. Now complete new layout has been written. >> >> This framework of supporting multi layout is being included in vtiger >> open-source in version 6.4. Where user can able to import and export the >> layouts for vtiger. >> >> In future we are planning this to support developers for publishing new >> layouts to vtiger from marketplace. >> >> On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < >> simonetravaglini at gmail.com> wrote: >> >>> Vtiger team, news on roadmap? It's very difficulty work without a clear >>> roadmap! Do you want help comunity giving more info, if possible? >>> Thanks for support! >>> >>> 2015-10-05 13:59 GMT+02:00 Conrado Maggi : >>> >>>> Hi Simone, >>>> >>>> I think that what you are seeing is actually a Theme. That's why they >>>> add custom theme support in 6.4. >>>> >>>> Although, +1 for knowing the Open Source roadmap. >>>> >>>> Thanks! >>>> >>>> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < >>>> simonetravaglini at gmail.com> wrote: >>>> >>>>> Hi, >>>>> I see that vtiger ondemand had big improvement (really good work). I >>>>> think that at this moment is a different product despite Vtiger open >>>>> source. >>>>> Someone of vtiger team can give us more info about open source future? >>>>> How will be related to vtiger ondemand? >>>>> >>>>> -- >>>>> Simone Travaglini >>>>> 328 5499846 >>>>> Linkedin: Simone Travaglini >>>>> >>>>> >>>>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>>>> necessario! >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> >>> -- >>> Simone Travaglini >>> 328 5499846 >>> Linkedin: Simone Travaglini >>> >>> >>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>> necessario! >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> With >> Best Regards >> Uma.S >> Vtiger Team >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Tue Oct 6 09:40:55 2015 From: uma.s at vtiger.com (Uma S) Date: Tue, 6 Oct 2015 15:10:55 +0530 Subject: [Vtigercrm-developers] Source.download In-Reply-To: References: Message-ID: Hi, Please do try svn check-out from command line, which should be helpful in downloading the source. It's down-loadable. On Tue, Oct 6, 2015 at 2:31 PM, m.brummell wrote: > Hi > > I am trying.to.download source files for 6.4 to test.via.tortoisesvn > but.it.fails.every.time now.with.a.webdav error message. > > Is it.not.downloadable at.moment? > > Regards > > Mel > > > > > > > > -------- Original message -------- > From: vtigercrm-developers-request at lists.vtigercrm.com > Date:06/10/2015 8:35 AM (GMT+00:00) > To: vtigercrm-developers at lists.vtigercrm.com > Subject: vtigercrm-developers Digest, Vol 117, Issue 16 > > Send vtigercrm-developers mailing list submissions to > vtigercrm-developers at lists.vtigercrm.com > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers > > or, via email, send a message with subject or body 'help' to > vtigercrm-developers-request at lists.vtigercrm.com > > You can reach the person managing the list at > vtigercrm-developers-owner at lists.vtigercrm.com > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of vtigercrm-developers digest..." > > > Today's Topics: > > 1. email counter and reporting was broken 6.3 (micker) > 2. Re: Customer Portal language problem. (Michele Mastropieri) > 3. Re: email counter and reporting was broken 6.3 (Manu urs) > 4. Re: New vtiger on demand (Uma S) > 5. Re: New vtiger on demand (Simone Travaglini) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Tue, 6 Oct 2015 00:04:10 -0700 (PDT) > From: micker > To: vtigercrm-developers at lists.vtigercrm.com > Subject: [Vtigercrm-developers] email counter and reporting was broken > 6.3 > Message-ID: <1444115050829-17560.post at n4.nabble.com> > Content-Type: text/plain; charset=us-ascii > > hello after update 6.2 to 6.3 email reporting was broken > all time are 02:00 and no date for all mail > ... > strange not ? > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > > > ------------------------------ > > Message: 2 > Date: Tue, 6 Oct 2015 09:18:43 +0200 > From: Michele Mastropieri > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Customer Portal language problem. > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > The elements are located into mysql database. Look there if someone will > have my same need > > 2015-10-05 11:14 GMT+02:00 Michele Mastropieri < > michele.mastropieri at gmail.com>: > > > Hi to all, > > > > I've translate manually en_us.lang.php and I created it_it.lang.php > > > > Loaded it_it.lang.php into language folder. > > > > modified PortalConfig.php as follow: > > > > //$default_language = 'en_us'; > > $default_language = 'it_it'; > > $languages = Array('it_it'=>'Italian','en_us'=>'US English','de_de'=>'DE > > Deutsch','pt_br'=>'PT Brasil','fr_fr'=>'Francais', 'tr_tr'=>'Turkce Dil > > Paketi'); > > > > The IT language is correctly loaded but some elements, expecially when I > > create a new ticket the elements of html select are in english (severity, > > category, priority). Where I can found the relative text? > > > > See the exemple attachment file. > > > > Thanks to all! > > > > > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20151006/f5325a52/attachment-0001.html > > > > ------------------------------ > > Message: 3 > Date: Tue, 6 Oct 2015 12:56:03 +0530 > From: Manu urs > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] email counter and reporting was > broken 6.3 > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > Hi > > Please add the Changeset mentioned in this trac > . > > Regards, > Manu Urs > > > > On Tue, Oct 6, 2015 at 12:34 PM, micker wrote: > > > hello after update 6.2 to 6.3 email reporting was broken > > all time are 02:00 and no date for all mail > > ... > > strange not ? > > > > > > > > -- > > View this message in context: > > > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560.html > > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > > _______________________________________________ > > http://www.vtiger.com/ > > > > > > -- > Regards, > Manu > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20151006/b95d4df5/attachment-0001.html > > > > ------------------------------ > > Message: 4 > Date: Tue, 6 Oct 2015 13:01:08 +0530 > From: Uma S > To: vtigercrm-developers > Subject: Re: [Vtigercrm-developers] New vtiger on demand > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > Hi, > > We have included new layout support in on-demand, that is the change you > are seeing in vtiger ondemand. Now complete new layout has been written. > > This framework of supporting multi layout is being included in vtiger > open-source in version 6.4. Where user can able to import and export the > layouts for vtiger. > > In future we are planning this to support developers for publishing new > layouts to vtiger from marketplace. > > On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < > simonetravaglini at gmail.com> wrote: > > > Vtiger team, news on roadmap? It's very difficulty work without a clear > > roadmap! Do you want help comunity giving more info, if possible? > > Thanks for support! > > > > 2015-10-05 13:59 GMT+02:00 Conrado Maggi : > > > >> Hi Simone, > >> > >> I think that what you are seeing is actually a Theme. That's why they > add > >> custom theme support in 6.4. > >> > >> Although, +1 for knowing the Open Source roadmap. > >> > >> Thanks! > >> > >> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < > >> simonetravaglini at gmail.com> wrote: > >> > >>> Hi, > >>> I see that vtiger ondemand had big improvement (really good work). I > >>> think that at this moment is a different product despite Vtiger open > >>> source. > >>> Someone of vtiger team can give us more info about open source future? > >>> How will be related to vtiger ondemand? > >>> > >>> -- > >>> Simone Travaglini > >>> 328 5499846 > >>> Linkedin: Simone Travaglini > >>> > >>> > >>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > >>> necessario! > >>> > >>> _______________________________________________ > >>> http://www.vtiger.com/ > >>> > >> > >> > >> _______________________________________________ > >> http://www.vtiger.com/ > >> > > > > > > > > -- > > Simone Travaglini > > 328 5499846 > > Linkedin: Simone Travaglini > > > > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > > necessario! > > > > _______________________________________________ > > http://www.vtiger.com/ > > > > > > -- > With > Best Regards > Uma.S > Vtiger Team > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20151006/235b7bda/attachment-0001.html > > > > ------------------------------ > > Message: 5 > Date: Tue, 6 Oct 2015 09:35:46 +0200 > From: Simone Travaglini > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] New vtiger on demand > Message-ID: > > Content-Type: text/plain; charset="utf-8" > > Hi Uma ,thanks for answer... > But I don't understand if this new layout will be included in Vtiger 6.4 or > only multilayout support... When do you plan to relase 6.4? > thanks for support! > > 2015-10-06 9:31 GMT+02:00 Uma S : > > > Hi, > > > > We have included new layout support in on-demand, that is the change you > > are seeing in vtiger ondemand. Now complete new layout has been written. > > > > This framework of supporting multi layout is being included in vtiger > > open-source in version 6.4. Where user can able to import and export the > > layouts for vtiger. > > > > In future we are planning this to support developers for publishing new > > layouts to vtiger from marketplace. > > > > On Mon, Oct 5, 2015 at 10:23 PM, Simone Travaglini < > > simonetravaglini at gmail.com> wrote: > > > >> Vtiger team, news on roadmap? It's very difficulty work without a clear > >> roadmap! Do you want help comunity giving more info, if possible? > >> Thanks for support! > >> > >> 2015-10-05 13:59 GMT+02:00 Conrado Maggi : > >> > >>> Hi Simone, > >>> > >>> I think that what you are seeing is actually a Theme. That's why they > >>> add custom theme support in 6.4. > >>> > >>> Although, +1 for knowing the Open Source roadmap. > >>> > >>> Thanks! > >>> > >>> On Mon, Oct 5, 2015 at 8:39 AM, Simone Travaglini < > >>> simonetravaglini at gmail.com> wrote: > >>> > >>>> Hi, > >>>> I see that vtiger ondemand had big improvement (really good work). I > >>>> think that at this moment is a different product despite Vtiger open > >>>> source. > >>>> Someone of vtiger team can give us more info about open source future? > >>>> How will be related to vtiger ondemand? > >>>> > >>>> -- > >>>> Simone Travaglini > >>>> 328 5499846 > >>>> Linkedin: Simone Travaglini > >>>> > >>>> > >>>> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > >>>> necessario! > >>>> > >>>> _______________________________________________ > >>>> http://www.vtiger.com/ > >>>> > >>> > >>> > >>> _______________________________________________ > >>> http://www.vtiger.com/ > >>> > >> > >> > >> > >> -- > >> Simone Travaglini > >> 328 5499846 > >> Linkedin: Simone Travaglini > >> > >> > >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > >> necessario! > >> > >> _______________________________________________ > >> http://www.vtiger.com/ > >> > > > > > > > > -- > > With > > Best Regards > > Uma.S > > Vtiger Team > > > > _______________________________________________ > > http://www.vtiger.com/ > > > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: < > http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20151006/12250525/attachment.html > > > > ------------------------------ > > _______________________________________________ > vtigercrm-developers mailing list > vtigercrm-developers at lists.vtigercrm.com > http://lists.vtigercrm.com/cgi-bin/mailman/listinfo/vtigercrm-developers > > > End of vtigercrm-developers Digest, Vol 117, Issue 16 > ***************************************************** > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From comaggi at gmail.com Tue Oct 6 09:43:57 2015 From: comaggi at gmail.com (Conrado Maggi) Date: Tue, 6 Oct 2015 11:43:57 +0200 Subject: [Vtigercrm-developers] performance and profiling In-Reply-To: References: <53C7DA53.9070803@libertus.co.uk> <53C91B45.9060306@libertus.co.uk> Message-ID: Hi, getPicklistValues is slow because is has to check for each picklist value whether the login users has access to it or not. Probably there is a way to cache that info. Since only changes when you update the picklist values. Cheers, Conrado On Tue, Oct 6, 2015 at 10:36 AM, lajeesh k wrote: > applied to_html changes, still detail view taking 20 seconds to load page. > summery view loading quickly > > I have used xdebud and webgrind for profiling. I am a newbie in profiling > while checking vtranslate function inside > Vtiger_Field_Model->getPicklistValues is one of the reason for this slownes > I have attached webgrind screenshot, it might help someone to identify the > bottleneck > > > > > > Regards, > Lajeesh > > On Mon, Oct 5, 2015 at 10:25 PM, lajeesh k wrote: > >> seems these suggestions from Alan is not included in vtiger 6.3. >> when i used xdebug profiling, this to_html function is called 226985 >> times. calling this function increases as number of records increases >> I couldn't understand how to apply these changes by Alan and Sivakumar.if >> Anyone can provide these modified file for vtiger 6.3, then it will be >> really helpfull >> >> >> >> Regards, >> Lajeesh >> >> On Tue, Jul 22, 2014 at 6:23 PM, SivaKumar J >> wrote: >> >>> Hi Alan, >>> >>> Thank you very much for your contribution on to_html() function calls to >>> improve performance. >>> After analyzing to_html() function, we got that some of those checks >>> what we are checking in that are not required any more in Vtiger6. >>> >>> at line 366 >>> >>>> *if($_REQUEST['module'] != 'Settings' && $_REQUEST['file'] != >>>> 'ListView' && $_REQUEST['module'] != 'Portal' && $_REQUEST['module'] != >>>> "Reports")// && $_REQUEST['module'] != 'Emails')* >>>> * $ajax_action = $_REQUEST['module'].'Ajax';* >>>> >>> The above check is to identify whether the current request is AJAX or >>> not. If so, we are setting that as *$_REQUEST['module'].'Ajax'. *But, >>> there are not AJAX file in Vtiger6 in that structure. So, we don't need >>> this. >>> >>> at line 371 >>> >>>> *if($action != 'CustomView' && $action != 'Export' && $action != >>>> $ajax_action && $action != 'LeadConvertToEntities' && $action != >>>> 'CreatePDF' && $action != 'ConvertAsFAQ' && $_REQUEST['module'] != >>>> 'Dashboard' && $action != 'CreateSOPDF' && $action != 'SendPDFMail' && >>>> (!isset($_REQUEST['submode'])) )* >>>> * {* >>>> * $doconvert = true;* >>>> * }* >>> >>> In this check, except "Export" we don't have any actions like what we >>> are comparing, so no need of this comparision. Earlier there is an action >>> called Export for Exporting record in Vtiger5.4.0, but now we are using >>> ExportData.php for this action. While Exporting record, at >>> *modules/Vtiger/actions/ExportData.php* we are sanitizing all values >>> which will decode those values with decode_html() on line 243. So, there is >>> no use of encoding with to_html() for Export as well. We can remove this >>> also. Else, we need to add this here and remove decode_html() where we are >>> doing in sanitize values. >>> >>> >>> After doing all these modification, finally my code is like this. >>> >>> */*** >>>> * * Function to decide whether to_html should convert values or not for >>>> a request* >>>> * * @global type $doconvert* >>>> * * @global type $inUTF8* >>>> * * @global type $default_charset* >>>> * */* >>>> *function decide_to_html(){* >>>> * global $doconvert,$inUTF8,$default_charset; * >>>> * $action = $_REQUEST['action']; * >>>> >>>> * $inUTF8 = (strtoupper($default_charset) == 'UTF-8'); * >>>> >>>> * $doconvert = true; * >>>> >>>> >>> >>> // Need to remove decode_html() which we are doing while exporting >>>> records from list/Detail view on ExportData.php line 243 >>>> >>> * if($action == 'ExportData'){* >>>> * $doconvert = false; * >>>> * }* >>>> *}* >>>> // Execute this function when this file got included >>>> *decide_to_html();* >>>> >>>> */** Function to convert the given string to html* >>>> * * @param $string -- string:: Type string* >>>> * * @param $ecnode -- boolean:: Type boolean* >>>> * * @returns $string -- string:: Type string* >>>> * */* >>>> *function to_html($string, $encode=true) {* >>>> * // For optimization - default_charset can be either upper / lower >>>> case.* >>>> * global $doconvert,$inUTF8,$default_charset,$htmlCache;* >>>> >>>> * if(is_string($string)) {* >>>> * // In vtiger5 ajax request are treated specially and the data >>>> is encoded* >>>> * if ($doconvert == true) {* >>>> * if(isset($htmlCache[$string])){* >>>> * $string = $htmlCache[$string];* >>>> * }else{* >>>> * if($inUTF8)* >>>> * $string = htmlentities($string, ENT_QUOTES, >>>> $default_charset);* >>>> * else* >>>> * $string = preg_replace(array('//', '/"/'), >>>> array('<', '>', '"'), $string);* >>>> >>>> * $htmlCache[$string] = $string;* >>>> * }* >>>> * }* >>>> * }* >>>> * return $string;* >>>> *}* >>>> >>> >>> Please let me know if I missed any thing in here. >>> Thank you >>> >>> >>> >>> >>> >>> On Fri, Jul 18, 2014 at 6:34 PM, Alan Bell >>> wrote: >>> >>>> turns out that most of what to_html is processing is very repetitive, >>>> if it just populates an array as it goes along and then checks in that >>>> array it is a lot faster than doing htmlentities on the string every time. >>>> >>>> global $htmlcache;//store the stripped HTML as we go along, a lot of >>>> the time we are processing the same strings >>>> function to_html($string, $encode=true) >>>> { >>>> global $doconvert; >>>> global $default_charset; >>>> global $htmlcache; >>>> if($doconvert){ >>>> if(isset($htmlcache[$string])){ >>>> return $htmlcache[$string]; >>>> }else{ >>>> $clean= htmlentities($string, ENT_QUOTES, >>>> $default_charset);//we don't care if it is a string or not, faster not to >>>> care >>>> $htmlcache[$string]=$clean; >>>> return $clean; >>>> } >>>> }else{ >>>> return $string; >>>> } >>>> >>>> >>>> } >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> >>> -- >>> Regards, >>> Siva >>> Vtiger >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.brummell at btinternet.com Tue Oct 6 10:18:42 2015 From: m.brummell at btinternet.com (M Brummell) Date: Tue, 6 Oct 2015 11:18:42 +0100 Subject: [Vtigercrm-developers] Source.download (Uma S) Message-ID: <005801d10020$6219b360$264d1a20$@btinternet.com> Hi Uma, That is what I am using and I get the following error: Checkout from http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/6.4.0, revision HEAD, Fully recursive, Externals included Unable to connect to a repository at URL 'http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/6.4.0' XML Parsing failed: Unexpected root element 'html' Mel From lajeeshk at gmail.com Tue Oct 6 10:41:39 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Tue, 6 Oct 2015 16:11:39 +0530 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling Message-ID: Hi, I would like to hear from you about your experience with its4you email maker for sending mass emails. Now vtiger email hangs when I send more than 200 email. ps: I have sendgrid integration for updating email status Regards, Lajeesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From manu.k at vtiger.com Tue Oct 6 11:19:23 2015 From: manu.k at vtiger.com (Manu urs) Date: Tue, 6 Oct 2015 16:49:23 +0530 Subject: [Vtigercrm-developers] Source.download (Uma S) In-Reply-To: <005801d10020$6219b360$264d1a20$@btinternet.com> References: <005801d10020$6219b360$264d1a20$@btinternet.com> Message-ID: Hi Please checkout from the below link . As 6.4.0 is not a stable release,we recommend 6.3.0. http://trac.vtiger.com/svn/vtiger/vtigercrm/branches/ Regards, Manu Urs On Tue, Oct 6, 2015 at 3:48 PM, M Brummell wrote: > Hi Uma, > > That is what I am using and I get the following error: > > Checkout from > http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/6.4.0, > revision HEAD, Fully recursive, Externals included > Unable to connect to a repository at URL > 'http://trac.vtiger.com/cgi-bin/trac.cgi/browser/vtigercrm/branches/6.4.0 > ' > XML Parsing failed: Unexpected root element 'html' > > Mel > > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Tue Oct 6 11:27:02 2015 From: alanslists at gmail.com (Alan Lord) Date: Tue, 6 Oct 2015 12:27:02 +0100 Subject: [Vtigercrm-developers] Source.download In-Reply-To: References: Message-ID: On 06/10/15 10:01, m.brummell wrote: > Hi > > I am trying.to.download source files for 6.4 to test.via.tortoisesvn > but.it.fails.every.time now.with.a.webdav error message. Works for me: # svn export http://trac.vtiger.com/svn/vtiger/vtigercrm/branches/6.4.0/ vt64 as does # svn co http://trac.vtiger.com/svn/vtiger/vtigercrm/branches/6.4.0/ vt64 Al From simonetravaglini at gmail.com Tue Oct 6 11:32:46 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 13:32:46 +0200 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: consider also this solution: http://genius-crm.com/vtiger-resources/vtiger-add-on/email-marketing-module-newsletter-for-vtiger-6 it's in evolution! 2015-10-06 12:41 GMT+02:00 lajeesh k : > Hi, > > I would like to hear from you about your experience with its4you email > maker for sending mass emails. Now vtiger email hangs when I send more than > 200 email. > ps: I have sendgrid integration for updating email status > > Regards, > Lajeesh > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From micker at free.fr Tue Oct 6 11:36:43 2015 From: micker at free.fr (micker) Date: Tue, 6 Oct 2015 04:36:43 -0700 (PDT) Subject: [Vtigercrm-developers] email counter and reporting was broken 6.3 In-Reply-To: References: <1444115050829-17560.post@n4.nabble.com> Message-ID: <1444131403291-17581.post@n4.nabble.com> it's perfect !!! thanks -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-email-counter-and-reporting-was-broken-6-3-tp17560p17581.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From simonetravaglini at gmail.com Tue Oct 6 12:17:15 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 14:17:15 +0200 Subject: [Vtigercrm-developers] user_previleges In-Reply-To: References: Message-ID: Hi Alan, really thanks for your script that resolved our issue! Fantastic! 2015-10-06 10:13 GMT+02:00 Alan Lord (News) : > On 06/10/15 09:07, Simone Travaglini wrote: > >> Hi, >> update on problem, maybe someone have an idea... >> now if I create a new HIGHER permission user can see data of LOWER >> permission user, as expected. But if I create a new LOWER permission >> user, his record are not accessible from HIGER permission user created >> before of him. So the problem is that when I create a new user something >> go wrong with permission calculation... >> > > > First make sure the webserver can write to all files in your vtiger > directory. > > For debian based hosts that would be something like: > > sudo chown -R www-data:www-data * > > > Then I would run the following script using a web browser or php command > line running as the apache user: > > > $Vtiger_Utils_Log = true; >> require_once('include/utils/CommonUtils.php'); >> >> echo ("Regerating tabdata files ...
" . PHP_EOL); >> perform_post_migration_activities(); >> echo ("Done
" . PHP_EOL); >> echo "Recalculate Sharing Rules" . PHP_EOL; >> RecalculateSharingRules(); >> echo "Done" . PHP_EOL; >> > > > This normally fixes most of these kinds of issues I come across. > > HTH > > Al > > -- > Libertus Solutions > http://www.libertus.co.uk > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Tue Oct 6 12:29:08 2015 From: alanslists at gmail.com (Alan Lord) Date: Tue, 6 Oct 2015 13:29:08 +0100 Subject: [Vtigercrm-developers] user_previleges In-Reply-To: References: Message-ID: On 06/10/15 13:17, Simone Travaglini wrote: > Hi Alan, > really thanks for your script that resolved our issue! Glad to hear it ;-) I use it all the time when moving instances of vtiger. Al From greg7vas at gmail.com Tue Oct 6 12:32:46 2015 From: greg7vas at gmail.com (Greg Vas) Date: Tue, 6 Oct 2015 15:32:46 +0300 Subject: [Vtigercrm-developers] Repeated event and change of time zone Message-ID: I have made a repeated event Monday-Wednesday-Friday 12.30-13.30 When the time zone changes at 25 october the events are converted into 11,30-12,30 Thats a big mistake and i want to change it so everything will be strictly 12.30-13.30 How can i do that? -------------- next part -------------- An HTML attachment was scrubbed... URL: From apcloic at gmail.com Tue Oct 6 12:38:41 2015 From: apcloic at gmail.com (apcloic) Date: Tue, 6 Oct 2015 05:38:41 -0700 (PDT) Subject: [Vtigercrm-developers] Feature to edit recurring events ? Message-ID: <1444135121051-17585.post@n4.nabble.com> Hi, On the following page, you will find a vTiger enhancement regarding the ability to edit recurring events whenever you make changes to the Calendar records : https://wiki.vtiger.com/vtiger6/index.php/4th_August_2014_Highlights I've just try on a VT6.3 instance and it's not there, so I suppose this is only available for On Demand. Do you plan to release this feature on Open Source edition ? Regards, -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Feature-to-edit-recurring-events-tp17585.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From info at its4you.sk Tue Oct 6 13:12:34 2015 From: info at its4you.sk (IT-Solutions4You) Date: Tue, 6 Oct 2015 15:12:34 +0200 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: I suppose this problem is related to mailserver limit. Email Maker allows you to set hourly limitt, Date and Time when you will start you Email Campains. Yes, I'm from ITS4You company, but I use it daily and it works for me ;-) Matus ITS4You D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): > Hi, > > I would like to hear from you about your experience with its4you email > maker for sending mass emails. Now vtiger email hangs when I send more > than 200 email. > ps: I have sendgrid integration for updating email status > > Regards, > Lajeesh > > > _______________________________________________ > http://www.vtiger.com/ > From manu.k at vtiger.com Tue Oct 6 14:15:36 2015 From: manu.k at vtiger.com (Manu urs) Date: Tue, 6 Oct 2015 19:45:36 +0530 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: References: Message-ID: Hi On default every Time period will be saving to database in the UTC format and it will be render back to UI according to the user timezone. So after changing the Timezone all time values in the CRM will be displayed according to the new format. Regards, Manu Urs On Tue, Oct 6, 2015 at 6:02 PM, Greg Vas wrote: > I have made a repeated event Monday-Wednesday-Friday 12.30-13.30 > > When the time zone changes at 25 october the events are converted into > 11,30-12,30 > > Thats a big mistake and i want to change it so everything will be strictly > 12.30-13.30 > > > How can i do that? > > > > > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Tue Oct 6 14:34:45 2015 From: alanslists at gmail.com (Alan Lord) Date: Tue, 6 Oct 2015 15:34:45 +0100 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: References: Message-ID: On 06/10/15 15:15, Manu urs wrote: > Hi > > On default every Time period will be saving to database in the UTC > format and it will be render back to UI according to the user timezone. > So after changing the Timezone all time values in the CRM will be > displayed according to the new format. Say what? Do you mean to say when daylight saving time comes into effect at the end of this month every calendar entries are going to show a different time than they did the day before? That cannot be right. Alan From lajeeshk at gmail.com Tue Oct 6 14:52:34 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Tue, 6 Oct 2015 20:22:34 +0530 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: If we send it from lead list view ? the compose email page is not loading if we selected large number of records Regards, Lajeesh On Tue, Oct 6, 2015 at 6:42 PM, IT-Solutions4You wrote: > I suppose this problem is related to mailserver limit. Email Maker allows > you to set hourly limitt, Date and Time when you will start you Email > Campains. > Yes, I'm from ITS4You company, but I use it daily and it works for me ;-) > > > Matus > ITS4You > > > D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): > >> Hi, >> >> I would like to hear from you about your experience with its4you email >> maker for sending mass emails. Now vtiger email hangs when I send more >> than 200 email. >> ps: I have sendgrid integration for updating email status >> >> Regards, >> Lajeesh >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From greg7vas at gmail.com Tue Oct 6 15:10:27 2015 From: greg7vas at gmail.com (Greg Vas) Date: Tue, 6 Oct 2015 18:10:27 +0300 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: References: Message-ID: And whats the solution to that issue then? On Tue, Oct 6, 2015 at 5:34 PM, Alan Lord wrote: > On 06/10/15 15:15, Manu urs wrote: > >> Hi >> >> On default every Time period will be saving to database in the UTC >> format and it will be render back to UI according to the user timezone. >> So after changing the Timezone all time values in the CRM will be >> displayed according to the new format. >> > > Say what? > > Do you mean to say when daylight saving time comes into effect at the end > of this month every calendar entries are going to show a different time > than they did the day before? > > That cannot be right. > > Alan > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 6 15:35:09 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 17:35:09 +0200 Subject: [Vtigercrm-developers] bug: impossible delete filter in document module Message-ID: Hi, tested also in demo.vtiger.com if you create a filter then you try to delete you get: {"success":false,"error":{"code":"Invalid request","message":"Invalid request"}} -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From rslemer at gmail.com Tue Oct 6 15:38:32 2015 From: rslemer at gmail.com (Ranieri) Date: Tue, 6 Oct 2015 12:38:32 -0300 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: how much this module? 2015-10-06 8:32 GMT-03:00 Simone Travaglini : > consider also this solution: > http://genius-crm.com/vtiger-resources/vtiger-add-on/email-marketing-module-newsletter-for-vtiger-6 > it's in evolution! > > 2015-10-06 12:41 GMT+02:00 lajeesh k : > >> Hi, >> >> I would like to hear from you about your experience with its4you email >> maker for sending mass emails. Now vtiger email hangs when I send more than >> 200 email. >> ps: I have sendgrid integration for updating email status >> >> Regards, >> Lajeesh >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 6 15:49:35 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 6 Oct 2015 17:49:35 +0200 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: Hi pricing is the following, code is not encripted but you can't resell to third part. So Flat mean you can use with all your cloud customers as example: Update and support1 LicenceFlat3 month 1494991 year 249699Lifetime399999 I want to say that module is in evolution and all money get from selling will be reinvested. 2015-10-06 17:38 GMT+02:00 Ranieri : > how much this module? > > 2015-10-06 8:32 GMT-03:00 Simone Travaglini : > >> consider also this solution: >> http://genius-crm.com/vtiger-resources/vtiger-add-on/email-marketing-module-newsletter-for-vtiger-6 >> it's in evolution! >> >> 2015-10-06 12:41 GMT+02:00 lajeesh k : >> >>> Hi, >>> >>> I would like to hear from you about your experience with its4you email >>> maker for sending mass emails. Now vtiger email hangs when I send more than >>> 200 email. >>> ps: I have sendgrid integration for updating email status >>> >>> Regards, >>> Lajeesh >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From manu.k at vtiger.com Tue Oct 6 16:10:17 2015 From: manu.k at vtiger.com (Manu urs) Date: Tue, 6 Oct 2015 21:40:17 +0530 Subject: [Vtigercrm-developers] bug: impossible delete filter in document module In-Reply-To: References: Message-ID: Hi We have fixed this issue. Please look into this trac link . http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8533 Regards, Manu urs On 6 Oct 2015 21:09, "Simone Travaglini" wrote: > Hi, > tested also in demo.vtiger.com > if you create a filter then you try to delete you get: > > {"success":false,"error":{"code":"Invalid request","message":"Invalid request"}} > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernard.bailey at timezone.co.nz Tue Oct 6 21:34:34 2015 From: bernard.bailey at timezone.co.nz (Bernard Bailey) Date: Wed, 7 Oct 2015 10:34:34 +1300 Subject: [Vtigercrm-developers] Duplicate filter function In-Reply-To: Message-ID: Hi developers, Yet again today, I came to a filter on Organisations, which I need to duplicate. So I checked the latest 6.3 build and no I couldn't find the function there. :-{ So sad. I went into my OnDemand instance and even a basic subscription has this function available. Sreenivas or Pratim, are there plans to make this in the O/S version anytime soon? Regards Bernard G Bailey From info at its4you.sk Wed Oct 7 07:44:09 2015 From: info at its4you.sk (IT-Solutions4You) Date: Wed, 7 Oct 2015 09:44:09 +0200 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: This is next issue. The leads id's are pushed with GET request and this is limited, I think arround 2000 characters. Matus IST4You D?a 6. 10. 2015 o 16:52 lajeesh k nap?sal(a): > If we send it from lead list view ? > > the compose email page is not loading if we selected large number of records > > > > Regards, > Lajeesh > > On Tue, Oct 6, 2015 at 6:42 PM, IT-Solutions4You > > wrote: > > I suppose this problem is related to mailserver limit. Email Maker > allows you to set hourly limitt, Date and Time when you will start > you Email Campains. > Yes, I'm from ITS4You company, but I use it daily and it works for > me ;-) > > > Matus > ITS4You > > > D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): > > Hi, > > I would like to hear from you about your experience with its4you > email > maker for sending mass emails. Now vtiger email hangs when I > send more > than 200 email. > ps: I have sendgrid integration for updating email status > > Regards, > Lajeesh > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > > > > _______________________________________________ > http://www.vtiger.com/ > From info at its4you.sk Wed Oct 7 07:45:36 2015 From: info at its4you.sk (IT-Solutions4You) Date: Wed, 7 Oct 2015 09:45:36 +0200 Subject: [Vtigercrm-developers] Duplicate filter function In-Reply-To: References: Message-ID: You can buy this nice addon: https://marketplace.vtiger.com/app/listings?id=110 Matus D?a 6. 10. 2015 o 23:34 Bernard Bailey nap?sal(a): > Hi developers, > > Yet again today, I came to a filter on Organisations, which I need to > duplicate. So I checked the latest 6.3 build and no I couldn't find the > function there. :-{ So sad. > > I went into my OnDemand instance and even a basic subscription has this > function available. > > Sreenivas or Pratim, are there plans to make this in the O/S version anytime > soon? > > Regards > Bernard G Bailey > _______________________________________________ > http://www.vtiger.com/ > From lajeeshk at gmail.com Wed Oct 7 08:41:25 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 7 Oct 2015 14:11:25 +0530 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: Hi Matus, email maker is not available for some users. not visible in menu. if access the path index.php?module=EMAILMaker&view=List directly from browser getting error "EMAILMaker Not Accessible". please check attached screenshot Regards, Lajeesh On Wed, Oct 7, 2015 at 1:14 PM, IT-Solutions4You wrote: > This is next issue. The leads id's are pushed with GET request and this is > limited, I think arround 2000 characters. > > Matus > IST4You > > D?a 6. 10. 2015 o 16:52 lajeesh k nap?sal(a): > >> If we send it from lead list view ? >> >> the compose email page is not loading if we selected large number of >> records >> >> >> >> Regards, >> Lajeesh >> >> On Tue, Oct 6, 2015 at 6:42 PM, IT-Solutions4You >> > > wrote: >> >> I suppose this problem is related to mailserver limit. Email Maker >> allows you to set hourly limitt, Date and Time when you will start >> you Email Campains. >> Yes, I'm from ITS4You company, but I use it daily and it works for >> me ;-) >> >> >> Matus >> ITS4You >> >> >> D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): >> >> Hi, >> >> I would like to hear from you about your experience with its4you >> email >> maker for sending mass emails. Now vtiger email hangs when I >> send more >> than 200 email. >> ps: I have sendgrid integration for updating email status >> >> Regards, >> Lajeesh >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: emailmaker-error.png Type: image/png Size: 107737 bytes Desc: not available URL: From info at its4you.sk Wed Oct 7 09:11:28 2015 From: info at its4you.sk (IT-Solutions4You) Date: Wed, 7 Oct 2015 11:11:28 +0200 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: Can you please check Profile setting for Email Maker module. We can't handle it vtiger standard way, because it's Extensions not Module. http://www.its4you.sk/en/images/extensions/EmailMaker/manual/Email_Maker_for_vtiger_CRM_6.pdf 7.1 Manage profiles.......................................57 If this not work, can you please create a Ticket for it in Customer Portal, so we don't spam this discusions. Matus D?a 7. 10. 2015 o 10:41 lajeesh k nap?sal(a): > Hi Matus, > > email maker is not available for some users. not visible in menu. > if access the path index.php?module=EMAILMaker&view=List directly from > browser > getting error "EMAILMaker Not Accessible". > please check attached screenshot > > > Regards, > Lajeesh > > On Wed, Oct 7, 2015 at 1:14 PM, IT-Solutions4You > > wrote: > > This is next issue. The leads id's are pushed with GET request and > this is limited, I think arround 2000 characters. > > Matus > IST4You > > D?a 6. 10. 2015 o 16:52 lajeesh k nap?sal(a): > > If we send it from lead list view ? > > the compose email page is not loading if we selected large > number of records > > > > Regards, > Lajeesh > > On Tue, Oct 6, 2015 at 6:42 PM, IT-Solutions4You > > >> wrote: > > I suppose this problem is related to mailserver limit. > Email Maker > allows you to set hourly limitt, Date and Time when you > will start > you Email Campains. > Yes, I'm from ITS4You company, but I use it daily and it > works for > me ;-) > > > Matus > ITS4You > > > D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): > > Hi, > > I would like to hear from you about your experience > with its4you > email > maker for sending mass emails. Now vtiger email hangs > when I > send more > than 200 email. > ps: I have sendgrid integration for updating email status > > Regards, > Lajeesh > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > > > > _______________________________________________ > http://www.vtiger.com/ > From lajeeshk at gmail.com Wed Oct 7 09:13:26 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 7 Oct 2015 14:43:26 +0530 Subject: [Vtigercrm-developers] its4you Email maker vs vtiger email for mass emailling In-Reply-To: References: Message-ID: Fixed this issue by just editing and saving user role. Regards, Lajeesh On Wed, Oct 7, 2015 at 2:11 PM, lajeesh k wrote: > Hi Matus, > > email maker is not available for some users. not visible in menu. > if access the path index.php?module=EMAILMaker&view=List directly from > browser > getting error "EMAILMaker Not Accessible". > please check attached screenshot > > > Regards, > Lajeesh > > On Wed, Oct 7, 2015 at 1:14 PM, IT-Solutions4You wrote: > >> This is next issue. The leads id's are pushed with GET request and this >> is limited, I think arround 2000 characters. >> >> Matus >> IST4You >> >> D?a 6. 10. 2015 o 16:52 lajeesh k nap?sal(a): >> >>> If we send it from lead list view ? >>> >>> the compose email page is not loading if we selected large number of >>> records >>> >>> >>> >>> Regards, >>> Lajeesh >>> >>> On Tue, Oct 6, 2015 at 6:42 PM, IT-Solutions4You >>> >> > wrote: >>> >>> I suppose this problem is related to mailserver limit. Email Maker >>> allows you to set hourly limitt, Date and Time when you will start >>> you Email Campains. >>> Yes, I'm from ITS4You company, but I use it daily and it works for >>> me ;-) >>> >>> >>> Matus >>> ITS4You >>> >>> >>> D?a 6. 10. 2015 o 12:41 lajeesh k nap?sal(a): >>> >>> Hi, >>> >>> I would like to hear from you about your experience with its4you >>> email >>> maker for sending mass emails. Now vtiger email hangs when I >>> send more >>> than 200 email. >>> ps: I have sendgrid integration for updating email status >>> >>> Regards, >>> Lajeesh >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> >> >> _______________________________________________ >> http://www.vtiger.com/ > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Wed Oct 7 09:44:36 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 7 Oct 2015 15:14:36 +0530 Subject: [Vtigercrm-developers] performance and profiling In-Reply-To: References: <53C7DA53.9070803@libertus.co.uk> <53C91B45.9060306@libertus.co.uk> Message-ID: function vtranslate executed more than 1 lacks of time . its in detailview fetching one record. there might be some bad code Regards, Lajeesh On Tue, Oct 6, 2015 at 3:13 PM, Conrado Maggi wrote: > Hi, > > getPicklistValues is slow because is has to check for each picklist value > whether the login users has access to it or not. > > Probably there is a way to cache that info. Since only changes when you > update the picklist values. > > Cheers, > Conrado > > On Tue, Oct 6, 2015 at 10:36 AM, lajeesh k wrote: > >> applied to_html changes, still detail view taking 20 seconds to load >> page. summery view loading quickly >> >> I have used xdebud and webgrind for profiling. I am a newbie in profiling >> while checking vtranslate function inside >> Vtiger_Field_Model->getPicklistValues is one of the reason for this slownes >> I have attached webgrind screenshot, it might help someone to identify >> the bottleneck >> >> >> >> >> >> Regards, >> Lajeesh >> >> On Mon, Oct 5, 2015 at 10:25 PM, lajeesh k wrote: >> >>> seems these suggestions from Alan is not included in vtiger 6.3. >>> when i used xdebug profiling, this to_html function is called 226985 >>> times. calling this function increases as number of records increases >>> I couldn't understand how to apply these changes by Alan and >>> Sivakumar.if Anyone can provide these modified file for vtiger 6.3, then it >>> will be really helpfull >>> >>> >>> >>> Regards, >>> Lajeesh >>> >>> On Tue, Jul 22, 2014 at 6:23 PM, SivaKumar J >>> wrote: >>> >>>> Hi Alan, >>>> >>>> Thank you very much for your contribution on to_html() function calls >>>> to improve performance. >>>> After analyzing to_html() function, we got that some of those checks >>>> what we are checking in that are not required any more in Vtiger6. >>>> >>>> at line 366 >>>> >>>>> *if($_REQUEST['module'] != 'Settings' && $_REQUEST['file'] != >>>>> 'ListView' && $_REQUEST['module'] != 'Portal' && $_REQUEST['module'] != >>>>> "Reports")// && $_REQUEST['module'] != 'Emails')* >>>>> * $ajax_action = $_REQUEST['module'].'Ajax';* >>>>> >>>> The above check is to identify whether the current request is AJAX or >>>> not. If so, we are setting that as *$_REQUEST['module'].'Ajax'. *But, >>>> there are not AJAX file in Vtiger6 in that structure. So, we don't need >>>> this. >>>> >>>> at line 371 >>>> >>>>> *if($action != 'CustomView' && $action != 'Export' && $action != >>>>> $ajax_action && $action != 'LeadConvertToEntities' && $action != >>>>> 'CreatePDF' && $action != 'ConvertAsFAQ' && $_REQUEST['module'] != >>>>> 'Dashboard' && $action != 'CreateSOPDF' && $action != 'SendPDFMail' && >>>>> (!isset($_REQUEST['submode'])) )* >>>>> * {* >>>>> * $doconvert = true;* >>>>> * }* >>>> >>>> In this check, except "Export" we don't have any actions like what we >>>> are comparing, so no need of this comparision. Earlier there is an action >>>> called Export for Exporting record in Vtiger5.4.0, but now we are using >>>> ExportData.php for this action. While Exporting record, at >>>> *modules/Vtiger/actions/ExportData.php* we are sanitizing all values >>>> which will decode those values with decode_html() on line 243. So, there is >>>> no use of encoding with to_html() for Export as well. We can remove this >>>> also. Else, we need to add this here and remove decode_html() where we are >>>> doing in sanitize values. >>>> >>>> >>>> After doing all these modification, finally my code is like this. >>>> >>>> */*** >>>>> * * Function to decide whether to_html should convert values or not >>>>> for a request* >>>>> * * @global type $doconvert* >>>>> * * @global type $inUTF8* >>>>> * * @global type $default_charset* >>>>> * */* >>>>> *function decide_to_html(){* >>>>> * global $doconvert,$inUTF8,$default_charset; * >>>>> * $action = $_REQUEST['action']; * >>>>> >>>>> * $inUTF8 = (strtoupper($default_charset) == 'UTF-8'); * >>>>> >>>>> * $doconvert = true; * >>>>> >>>>> >>>> >>>> // Need to remove decode_html() which we are doing while exporting >>>>> records from list/Detail view on ExportData.php line 243 >>>>> >>>> * if($action == 'ExportData'){* >>>>> * $doconvert = false; * >>>>> * }* >>>>> *}* >>>>> // Execute this function when this file got included >>>>> *decide_to_html();* >>>>> >>>>> */** Function to convert the given string to html* >>>>> * * @param $string -- string:: Type string* >>>>> * * @param $ecnode -- boolean:: Type boolean* >>>>> * * @returns $string -- string:: Type string* >>>>> * */* >>>>> *function to_html($string, $encode=true) {* >>>>> * // For optimization - default_charset can be either upper / lower >>>>> case.* >>>>> * global $doconvert,$inUTF8,$default_charset,$htmlCache;* >>>>> >>>>> * if(is_string($string)) {* >>>>> * // In vtiger5 ajax request are treated specially and the data >>>>> is encoded* >>>>> * if ($doconvert == true) {* >>>>> * if(isset($htmlCache[$string])){* >>>>> * $string = $htmlCache[$string];* >>>>> * }else{* >>>>> * if($inUTF8)* >>>>> * $string = htmlentities($string, ENT_QUOTES, >>>>> $default_charset);* >>>>> * else* >>>>> * $string = preg_replace(array('//', >>>>> '/"/'), array('<', '>', '"'), $string);* >>>>> >>>>> * $htmlCache[$string] = $string;* >>>>> * }* >>>>> * }* >>>>> * }* >>>>> * return $string;* >>>>> *}* >>>>> >>>> >>>> Please let me know if I missed any thing in here. >>>> Thank you >>>> >>>> >>>> >>>> >>>> >>>> On Fri, Jul 18, 2014 at 6:34 PM, Alan Bell >>>> wrote: >>>> >>>>> turns out that most of what to_html is processing is very repetitive, >>>>> if it just populates an array as it goes along and then checks in that >>>>> array it is a lot faster than doing htmlentities on the string every time. >>>>> >>>>> global $htmlcache;//store the stripped HTML as we go along, a lot of >>>>> the time we are processing the same strings >>>>> function to_html($string, $encode=true) >>>>> { >>>>> global $doconvert; >>>>> global $default_charset; >>>>> global $htmlcache; >>>>> if($doconvert){ >>>>> if(isset($htmlcache[$string])){ >>>>> return $htmlcache[$string]; >>>>> }else{ >>>>> $clean= htmlentities($string, ENT_QUOTES, >>>>> $default_charset);//we don't care if it is a string or not, faster not to >>>>> care >>>>> $htmlcache[$string]=$clean; >>>>> return $clean; >>>>> } >>>>> }else{ >>>>> return $string; >>>>> } >>>>> >>>>> >>>>> } >>>>> >>>>> _______________________________________________ >>>>> http://www.vtiger.com/ >>>>> >>>> >>>> >>>> >>>> -- >>>> Regards, >>>> Siva >>>> Vtiger >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeneliiardi at gmail.com Wed Oct 7 13:46:30 2015 From: zeneliiardi at gmail.com (ardi zeneli) Date: Wed, 7 Oct 2015 15:46:30 +0200 Subject: [Vtigercrm-developers] Uitype 53 empty default value Message-ID: Hello, i have added a series of uitype 53 fields in the Accounts module that work fine but the problem is that i want them to not have a default value, which in the case of this fields is the user that is logged in the crm. Is there a way to leave this field empty unless i choose another value? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From l.digirolamo at websonica.net Wed Oct 7 17:57:02 2015 From: l.digirolamo at websonica.net (lucia digirolamo) Date: Wed, 7 Oct 2015 19:57:02 +0200 Subject: [Vtigercrm-developers] edit field type Message-ID: <56155CEE.5010806@websonica.net> Hi, A while ago I created a custom field for my Organizations module to hold the vat number. Now I just realized that this custom field does not keep the leading zeros. I don't remember what type I used, probably integer, since vat number contains no letters, but surely is not a text type, because I creating a new text field for testing purpose and if I enter here a number starting with zero, the zero is kept. But I cannot simply delete the existing field and substitute it with a new text field because if I do I would lose all the data that have been already inserted. So I have to change the type of this custom field from whatever it is now (that doesn't keep zeros) to a text field (which keeps zeros). Is there a way I can achieve this? thanks From joe at tsolucio.com Wed Oct 7 21:51:26 2015 From: joe at tsolucio.com (Joe Bordes) Date: Wed, 7 Oct 2015 23:51:26 +0200 Subject: [Vtigercrm-developers] edit field type In-Reply-To: <56155CEE.5010806@websonica.net> References: <56155CEE.5010806@websonica.net> Message-ID: <561593DE.3050406@tsolucio.com> You can try this: - create custom field with the correct definition: cf_{SupportZeros} - go to database and copy values from one to the other: update vtiger_accountcf set cf_{SupportZeros} = cf_{DoesNotSupportZeros} you can even get really fancy and use substrings and length to fill in missing zeros right in the SQL - access the application and make sure the values are all correct - delete cf_{DoesNotSupportZeros} --------------- Alternatively you can change the structure of the field cf_{DoesNotSupportZeros} in the table and and in vtiger_field, that should work too: change it to varchar and for vtiger_field change uitype and typeofdata (copy the corresponding values from cf_{SupportZeros}) Joe TSolucio El 07/10/15 a las 19:57, lucia digirolamo escribi?: > Hi, > > A while ago I created a custom field for my Organizations module to > hold the vat number. Now I just realized that this custom field does > not keep the leading zeros. I don't remember what type I used, > probably integer, since vat number contains no letters, but surely is > not a text type, because I creating a new text field for testing > purpose and if I enter here a number starting with zero, the zero is > kept. But I cannot simply delete the existing field and substitute it > with a new text field because if I do I would lose all the data that > have been already inserted. So I have to change the type of this > custom field from whatever it is now (that doesn't keep zeros) to a > text field (which keeps zeros). > > Is there a way I can achieve this? > > thanks > > _______________________________________________ > http://www.vtiger.com/ From stacey.johnson110 at gmail.com Thu Oct 8 00:28:04 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Thu, 8 Oct 2015 07:28:04 +0700 Subject: [Vtigercrm-developers] Strict standards Message-ID: One of installed 6.2 shows lots of errors such as: includes/http/Session.php on line 44 Strict Standards: Non-static method HTTP_Session::isExpired() should not be called statically in..... where this issue comes from? Thanks for help :) Stacey -------------- next part -------------- An HTML attachment was scrubbed... URL: From 1250572980 at qq.com Thu Oct 8 03:22:13 2015 From: 1250572980 at qq.com (=?gb18030?B?c3Vubnk=?=) Date: Thu, 8 Oct 2015 11:22:13 +0800 Subject: [Vtigercrm-developers] which file or code send the name and price from popup to list Message-ID: like the following picture,I want to know which file or code control the value sent: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 436B3031 at A1631B04.65E11556.png Type: application/octet-stream Size: 67296 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: QQ??20151008111929.png Type: application/octet-stream Size: 67296 bytes Desc: not available URL: From preexo at googlemail.com Thu Oct 8 04:45:53 2015 From: preexo at googlemail.com (Preexo) Date: Wed, 7 Oct 2015 21:45:53 -0700 (PDT) Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module Message-ID: <1444279553881-17608.post@n4.nabble.com> I was very very naive (very frustrated by now) and thought I could just use the module designer to add calendar events to a new module. This didn't work at all. The outcome was a stuck user interface whenever I selected the related events of the related module. I then tried using the VGSRelatedFields Plugin to add my custom module to the events module. This didn't work either. Obviously the calendar events module is doing everything different and no standardized solution works here. I find some bits and pieces on the net on how to add a custom field with uitype 10 to the events module but nothing has really worked. Has anyone come up with a working procedure to this by now or should we maybe start adding the bits and pieces to create a full working procedure. The goal is: Add a custom field with uitype 10 to the calendar events module. Thanks for any help or input on this in advance, best regards! -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/add-custom-field-with-uitype-10-field-to-calendar-events-module-tp17608.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alanslists at gmail.com Thu Oct 8 07:28:45 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 8 Oct 2015 08:28:45 +0100 Subject: [Vtigercrm-developers] edit field type In-Reply-To: <56155CEE.5010806@websonica.net> References: <56155CEE.5010806@websonica.net> Message-ID: On 07/10/15 18:57, lucia digirolamo wrote: > Hi, > > A while ago I created a custom field for my Organizations module to hold > the vat number. Now I just realized that this custom field does not keep > the leading zeros. I don't remember what type I used, probably integer, > since vat number contains no letters, but surely is not a text type, > because I creating a new text field for testing purpose and if I enter > here a number starting with zero, the zero is kept. But I cannot simply > delete the existing field and substitute it with a new text field > because if I do I would lose all the data that have been already > inserted. So I have to change the type of this custom field from > whatever it is now (that doesn't keep zeros) to a text field (which > keeps zeros). You can do the following (work on a backup system first if you are unsure what your doing) Change the UIType in vtiger field... If your field is called cf_123 then edit the row in vtiger_field where the fieldname = cf_123 and change the UIType from 7 (or whatever it is) to 1. You might also need to review the information in the typeofdata column too. You probably want something like N~O (or even maybe I~O). Try making some changes and see how it affects your ability to populate the field. Find the column of the real field in the database. If your field is called cf_123 and it is for the Organization module then in the table vtiger_accountscf will be a column called cf_123. Look at the structure of that column and see if you need to change it. You can change some types such as from INT or DECIMAL() to VARCHAR() but it might not work the other way around. You probably want it to be type VARCHAR if it needs to store leading zeros. INT, by definition, cannot. HTH Al From alanslists at gmail.com Thu Oct 8 07:45:08 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 8 Oct 2015 08:45:08 +0100 Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: <1444279553881-17608.post@n4.nabble.com> References: <1444279553881-17608.post@n4.nabble.com> Message-ID: On 08/10/15 05:45, Preexo wrote: > > Has anyone come up with a working procedure to this by now or should we > maybe start adding the bits and pieces to create a full working procedure. > The goal is: > Add a custom field with uitype 10 to the calendar events module. The vtiger Calendar module is so non-standard it hurts ;-) It is much improved in vtiger version 6 than v5 but it still requires a fair bit of hacking. Too much of the Calendar module, and its relations, have hardcoded assumptions. If you want to relate Events and Tasks with another module you must add your module name to the vtiger_ws_referencetype table, e.g. > INSERT INTO vtiger_ws_referencetype(fieldtypeid,type) VALUES(34,$MODULENAME) (This assumes that UIType 66 has a fieldtypeid of 34 in vtiger_ws_fieldtype - do check) Then you can use the standard vtlib setRelatedList() function to create the related list in your target module using the get_activities function name. These two things will add your module to the picklist of modules in the Related To block of Events and Tasks. The other bit will create the related list of activities in your Module's Detail View. HTH Al From apcloic at gmail.com Thu Oct 8 07:42:35 2015 From: apcloic at gmail.com (apcloic) Date: Thu, 8 Oct 2015 00:42:35 -0700 (PDT) Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: <1444279553881-17608.post@n4.nabble.com> References: <1444279553881-17608.post@n4.nabble.com> Message-ID: <1444290155487-17611.post@n4.nabble.com> Hi, Yes, I've been able to add a UItype 10 field to the Calendar/Events module : http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-VT6-vtlib-calendar-tp9815p9931.html hope it helps ;) Regards, -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/add-custom-field-with-uitype-10-field-to-calendar-events-module-tp17608p17611.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alanslists at gmail.com Thu Oct 8 08:10:57 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 8 Oct 2015 09:10:57 +0100 Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: <1444290155487-17611.post@n4.nabble.com> References: <1444279553881-17608.post@n4.nabble.com> <1444290155487-17611.post@n4.nabble.com> Message-ID: On 08/10/15 08:42, apcloic wrote: > Yes, I've been able to add a UItype 10 field to the Calendar/Events module : > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-VT6-vtlib-calendar-tp9815p9931.html Great thread! I'd forgotten about all that... :-D There's some good info in there to fix all the oddities. Al From stacey.johnson110 at gmail.com Thu Oct 8 12:40:48 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Thu, 8 Oct 2015 19:40:48 +0700 Subject: [Vtigercrm-developers] Strict standards In-Reply-To: References: Message-ID: :-) To make it more clear please see screen log: Strict Standards: Non-static method LoggerLoggingEvent::getStartTime() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/libraries/log4php.debug/spi/LoggerLoggingEvent.php on line 382 Strict Standards: Non-static method LoggerManager::getLogger() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/include/database/PearDatabase.php on line 20 Strict Standards: Non-static method LoggerManager::getLoggerRepository() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/libraries/log4php.debug/LoggerManager.php on line 91 Strict Standards: Non-static method LoggerHierarchy::singleton() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/libraries/log4php.debug/LoggerManager.php on line 103 Strict Standards: Non-static method LoggerManager::getLogger() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/include/database/PearDatabase.php on line 21 Strict Standards: Non-static method LoggerManager::getLoggerRepository() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/libraries/log4php.debug/LoggerManager.php on line 91 Strict Standards: Non-static method LoggerHierarchy::singleton() should not be called statically in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/libraries/log4php.debug/LoggerManager.php on line 103 Strict Standards: Declaration of Users::saveentity() should be compatible with CRMEntity::saveentity($module, $fileid = '') in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/modules/Users/Users.php on line 1652 Strict Standards: Declaration of Users::insertIntoEntityTable() should be compatible with CRMEntity::insertIntoEntityTable($table_name, $module, $fileid = '') in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/modules/Users/Users.php on line 1652 Strict Standards: Declaration of Users::save() should be compatible with CRMEntity::save($module_name, $fileid = '') in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/modules/Users/Users.php on line 1652 Strict Standards: Declaration of Users::get_column_value() should be compatible with CRMEntity::get_column_value($columnname, $fldvalue, $fieldname, $uitype, $datatype = '') in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/modules/Users/Users.php on line 1652 Strict Standards: Declaration of Activity::get_full_list() should be compatible with CRMEntity::get_full_list($order_by = '', $where = '') in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/modules/Calendar/Activity.php on line 1125 Strict Standards: Declaration of Vtiger_LanguageExport::__initExport() should be compatible with Vtiger_PackageExport::__initExport($module, $moduleInstance) in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/vtlib/Vtiger/LanguageExport.php on line 16 Strict Standards: Declaration of Vtiger_LanguageExport::export_Dependencies() should be compatible with Vtiger_PackageExport::export_Dependencies($moduleInstance) in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/vtlib/Vtiger/LanguageExport.php on line 16 Strict Standards: Declaration of Vtiger_LanguageImport::initImport() should be compatible with Vtiger_PackageImport::initImport($zipfile, $overwrite = true) in /home/mydomain/domains/ mydomain.com/public_html/translation/vtigercrm/vtlib/Vtiger/LanguageImport.php on line 16 Sorry! Attempt to access restricted file. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at markcox.co.uk Thu Oct 8 12:44:24 2015 From: mark at markcox.co.uk (cryptic) Date: Thu, 8 Oct 2015 05:44:24 -0700 (PDT) Subject: [Vtigercrm-developers] Strict standards In-Reply-To: References: Message-ID: <1444308264439-17614.post@n4.nabble.com> Although the following article refers to Joomla I think it will help you identify the cause of your problem-: https://www.gavick.com/documentation/joomla/strict-standards-error-fix I think you just need to modify the php error reporting on the server side (error_reporting in php.ini) -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Strict-standards-tp17606p17614.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From stacey.johnson110 at gmail.com Thu Oct 8 13:09:50 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Thu, 8 Oct 2015 20:09:50 +0700 Subject: [Vtigercrm-developers] Strict standards In-Reply-To: <1444308264439-17614.post@n4.nabble.com> References: <1444308264439-17614.post@n4.nabble.com> Message-ID: I thing I removed from any config files "E_STRICT" adjacent to "error_reporting = " Despite that, still errors. Actually without log on screen/file it shows "Sorry! Attempt to access restricted file" but behind that is mentioned issue i guess regards On Thu, Oct 8, 2015 at 7:44 PM, cryptic wrote: > > Although the following article refers to Joomla I think it will help you > identify the cause of your problem-: > > https://www.gavick.com/documentation/joomla/strict-standards-error-fix > > I think you just need to modify the php error reporting on the server side > (error_reporting in php.ini) > > > > > > > > -- > View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Strict-standards-tp17606p17614.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Thu Oct 8 13:16:04 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Thu, 8 Oct 2015 14:16:04 +0100 Subject: [Vtigercrm-developers] Strict standards In-Reply-To: References: <1444308264439-17614.post@n4.nabble.com> Message-ID: <56166C94.4080406@libertus.co.uk> what you need is "~E_STRICT" which excludes strict warnings, the ~ is important. You have display errors on, and your error level is E_ALL but you need it to be E_ALL ~E_STRICT and you might want ~E_WARN or some of the other stuff turned off too. Alternatively dive in and fix all the problems! Alan. On 08/10/15 14:09, Stacey Johnson wrote: > I thing I removed from any config files "E_STRICT" adjacent to > "error_reporting = " > Despite that, still errors. Actually without log on screen/file it > shows "Sorry! Attempt to access restricted file" but behind that is > mentioned issue i guess > > > regards > > > > > On Thu, Oct 8, 2015 at 7:44 PM, cryptic > wrote: > > > > Although the following article refers to Joomla I think it will help you > > identify the cause of your problem-: > > > > https://www.gavick.com/documentation/joomla/strict-standards-error-fix > > > > I think you just need to modify the php error reporting on the > server side > > (error_reporting in php.ini) > > > > > > > > > > > > > > > > -- > > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Strict-standards-tp17606p17614.html > > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > > _______________________________________________ > > http://www.vtiger.com/ > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at markcox.co.uk Thu Oct 8 13:06:35 2015 From: mark at markcox.co.uk (cryptic) Date: Thu, 8 Oct 2015 06:06:35 -0700 (PDT) Subject: [Vtigercrm-developers] Strict standards In-Reply-To: References: <1444308264439-17614.post@n4.nabble.com> Message-ID: <1444309595652-17616.post@n4.nabble.com> Can you post the your error_reporting setting? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Strict-standards-tp17606p17616.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From l.digirolamo at websonica.net Thu Oct 8 13:59:20 2015 From: l.digirolamo at websonica.net (lucia digirolamo) Date: Thu, 8 Oct 2015 15:59:20 +0200 Subject: [Vtigercrm-developers] edit field type In-Reply-To: References: <56155CEE.5010806@websonica.net> Message-ID: <561676B8.7010800@websonica.net> Thanks, Unfortunately, change the type didn't work, so I had to create a new field with type text, then copy existing data to new field with sql query provided by Joe update vtiger_accountscf set cf_{newfield} = cf_{oldfield} then delete old field. Now leading zeros are kept but, oddly, only if I save the record during edit mode. So: If I try to quickly edit the record by simply clicking on the field, the leading zero is not kept. If I modify the record by clicking on the 'edit' button, then adding the zero, then click on green 'save' button, then the zero is kept. Really odd isn't it? lou On 08/10/2015 09:28, Alan Lord wrote: > On 07/10/15 18:57, lucia digirolamo wrote: >> Hi, >> >> A while ago I created a custom field for my Organizations module to hold >> the vat number. Now I just realized that this custom field does not keep >> the leading zeros. I don't remember what type I used, probably integer, >> since vat number contains no letters, but surely is not a text type, >> because I creating a new text field for testing purpose and if I enter >> here a number starting with zero, the zero is kept. But I cannot simply >> delete the existing field and substitute it with a new text field >> because if I do I would lose all the data that have been already >> inserted. So I have to change the type of this custom field from >> whatever it is now (that doesn't keep zeros) to a text field (which >> keeps zeros). > > You can do the following (work on a backup system first if you are > unsure what your doing) > > Change the UIType in vtiger field... > > If your field is called cf_123 then edit the row in vtiger_field where > the fieldname = cf_123 and change the UIType from 7 (or whatever it > is) to 1. > > You might also need to review the information in the typeofdata column > too. You probably want something like N~O (or even maybe I~O). Try > making some changes and see how it affects your ability to populate > the field. > > Find the column of the real field in the database. If your field is > called cf_123 and it is for the Organization module then in the table > vtiger_accountscf will be a column called cf_123. > > Look at the structure of that column and see if you need to change it. > You can change some types such as from INT or DECIMAL() to VARCHAR() > but it might not work the other way around. > > You probably want it to be type VARCHAR if it needs to store leading > zeros. INT, by definition, cannot. > > > HTH > > Al > > > _______________________________________________ > http://www.vtiger.com/ > From greg7vas at gmail.com Fri Oct 9 08:43:16 2015 From: greg7vas at gmail.com (Greg Vas) Date: Fri, 9 Oct 2015 11:43:16 +0300 Subject: [Vtigercrm-developers] Service contracts and contacts Message-ID: In the service contracts when i choose to put a contact it has 2 options (organisations and contacts) and the default is organisations. How can i change the default option to contacts? Thank you!! -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at its4you.sk Fri Oct 9 09:03:41 2015 From: info at its4you.sk (IT-Solutions4You) Date: Fri, 9 Oct 2015 11:03:41 +0200 Subject: [Vtigercrm-developers] Service contracts and contacts In-Reply-To: References: Message-ID: You need change sequence in vtiger_fieldmodulerel table. Please seachr for seq. in Service module: SELECT * FROM `vtiger_fieldmodulerel` WHERE `module` LIKE '%service%' and change the sequence Matus ITS4You D?a 9. 10. 2015 o 10:43 Greg Vas nap?sal(a): > In the service contracts when i choose to put a contact it has 2 options > (organisations and contacts) > and the default is organisations. > > How can i change the default option to contacts? > > Thank you!! > > > _______________________________________________ > http://www.vtiger.com/ > From zeneliiardi at gmail.com Fri Oct 9 09:24:29 2015 From: zeneliiardi at gmail.com (ardi zeneli) Date: Fri, 9 Oct 2015 11:24:29 +0200 Subject: [Vtigercrm-developers] No data sent in vtiger_portalinfo Message-ID: Hello, Usually when checking the portal check-box in the Contacts module the login data are sent in the db in vtiger_portalinfo table. In my case no data are sent in the database. I have alredy checked the files crmentity.php and contacsthandler.php in the Contacts module and the save entity functions seem to be ok, but i guess that they aren't triggered in order to pupulate the table in the db since no request gets sent to the db. Is there anything else that i can check or do? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Fri Oct 9 09:15:56 2015 From: preexo at googlemail.com (Preexo) Date: Fri, 9 Oct 2015 02:15:56 -0700 (PDT) Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: References: <1444279553881-17608.post@n4.nabble.com> <1444290155487-17611.post@n4.nabble.com> Message-ID: <1444382156454-17622.post@n4.nabble.com> thanks, both hints combined helped a lot! I got it to work now with the following code in the createRelatedLists function of my custom module: and also taking the get_activities function from the helpdesk module into my custom module. Then I had to change the query so it would actually find the activities. I have one more problem. When I click the create event button in the related list of my custom module, it doesn't take my module entity id into the new even form field. Any idea for that? Alan Lord (News) wrote > On 08/10/15 08:42, apcloic wrote: >> Yes, I've been able to add a UItype 10 field to the Calendar/Events >> module : >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-VT6-vtlib-calendar-tp9815p9931.html > > Great thread! I'd forgotten about all that... :-D > > There's some good info in there to fix all the oddities. > > Al > > > _______________________________________________ > http://www.vtiger.com/ -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/add-custom-field-with-uitype-10-field-to-calendar-events-module-tp17608p17622.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From a.mahoutchian at setuda.ir Fri Oct 9 14:07:56 2015 From: a.mahoutchian at setuda.ir (Ali Mahoutchian) Date: Fri, 09 Oct 2015 17:37:56 +0330 Subject: [Vtigercrm-developers] Vtiger Astersik Connector Message-ID: <4d48190.1d1029c.13841f87.40fb@setuda.ir> Hi I have a big problem for more than 1 year? I want to connect My PBX ( Elastix 2.5 ? Asterisk 11.x ) to Vtiger 6.3 ( Open Source ) First main questions is : is this possible ??? I have install JAVA and asterisk vtiger connector 1.4 and run it with sh start.sh Wb page at the port http://ip:8383 is ok But click to dial, dial it self, and no popup or any log displayed ?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Fri Oct 9 14:11:16 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Fri, 9 Oct 2015 07:11:16 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <4d48190.1d1029c.13841f87.40fb@setuda.ir> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> Message-ID: <1444399876396-17625.post@n4.nabble.com> other informations /* * Copyright (C) www.vtiger.com. All rights reserved. * @license Proprietary */ // Location where the application server will be running. ServerIP = 0.0.0.0 ServerPort = 8380 // Call Recordings storage path StorageDir = // Enable(true) or Disable(false) call recordings Recording = false // Location where the applications database files will be stored. AsteriskAppDBPath = /usr/local/VtigerAsteriskConnector/db // Asterisk Server Details AsteriskServerPublicIP = 192.168.33.10 AsteriskServerIP = 127.0.0.1 AsteriskServerPort = 5038 AsteriskUsername = vtiger AsteriskPassword = password // Vtiger CRM URL VtigerURL = http://crm.domainforcrm.org/vtigercrm VtigerSecretKey = 146676517aaacbc57b8e861 //Enable(true) or Disable(false) Asterisk Events and Database Logs in Connector AsteriskLog = false DatabaseLog = false and log : 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.Server - jetty-8.1.14.v20131031 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.AbstractConnector - Started SelectChannelConnector at 0.0.0.0:8380 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Outbound Call 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Asterisk Login Successfull 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Successfully Authenticated Vtiger Secret Key 2015-10-10 00:59:30 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connecting to 127.0.0.1:5038 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connected via Asterisk Call Manager/1.3 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.ManagerConnectionImpl - Unsupported protocol version 'Asterisk Call Manager/1.3'. Use at your own risk. 2015-10-10 00:59:30 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Successfully logged in 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'fullybooted', attributes: {status=Fully Booted, event=FullyBooted, privilege=system,all}. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:32 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Determined Asterisk version: Asterisk 1.6 2015-10-10 00:59:32 [qtp8619379-14] INFO a - Sending call originate request to asterisk 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Context:from-internal 2015-10-10 00:59:35 [qtp8619379-14] INFO a - From: 2186 -> To: 02166751688 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Outgoing Call Response: Success 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Asterisk Response: Originate successfully queued 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to '' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'class' to 'default' on org.asteriskjava.manager.event.MusicOnHoldEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:49 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'hanguprequest', attributes: {uniqueid=1444426175.5, event=HangupRequest, privilege=call,all, channel=SIP/2186-00000004}. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:49 [Asterisk-Java -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17625.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alex at theclearsource.com Fri Oct 9 14:24:35 2015 From: alex at theclearsource.com (Alex Martin) Date: Fri, 9 Oct 2015 14:24:35 +0000 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1444399876396-17625.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> Message-ID: <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> Your Asterisklog and database log is commented out at the bottom so there's one issue. Did you create the context in your asterisk server for the calls? -----Original Message----- From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of mahoutchian Sent: Friday, October 9, 2015 10:11 AM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Vtiger Astersik Connector other informations /* * Copyright (C) www.vtiger.com. All rights reserved. * @license Proprietary */ // Location where the application server will be running. ServerIP = 0.0.0.0 ServerPort = 8380 // Call Recordings storage path StorageDir = // Enable(true) or Disable(false) call recordings Recording = false // Location where the applications database files will be stored. AsteriskAppDBPath = /usr/local/VtigerAsteriskConnector/db // Asterisk Server Details AsteriskServerPublicIP = 192.168.33.10 AsteriskServerIP = 127.0.0.1 AsteriskServerPort = 5038 AsteriskUsername = vtiger AsteriskPassword = password // Vtiger CRM URL VtigerURL = http://crm.domainforcrm.org/vtigercrm VtigerSecretKey = 146676517aaacbc57b8e861 //Enable(true) or Disable(false) Asterisk Events and Database Logs in Connector AsteriskLog = false DatabaseLog = false and log : 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.Server - jetty-8.1.14.v20131031 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.AbstractConnector - Started SelectChannelConnector at 0.0.0.0:8380 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Outbound Call 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Asterisk Login Successfull 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Successfully Authenticated Vtiger Secret Key 2015-10-10 00:59:30 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connecting to 127.0.0.1:5038 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connected via Asterisk Call Manager/1.3 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.ManagerConnectionImpl - Unsupported protocol version 'Asterisk Call Manager/1.3'. Use at your own risk. 2015-10-10 00:59:30 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Successfully logged in 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'fullybooted', attributes: {status=Fully Booted, event=FullyBooted, privilege=system,all}. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:32 [qtp8619379-14] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Determined Asterisk version: Asterisk 1.6 2015-10-10 00:59:32 [qtp8619379-14] INFO a - Sending call originate request to asterisk 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Context:from-internal 2015-10-10 00:59:35 [qtp8619379-14] INFO a - From: 2186 -> To: 02166751688 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Outgoing Call Response: Success 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Asterisk Response: Originate successfully queued 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to '' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'class' to 'default' on org.asteriskjava.manager.event.MusicOnHoldEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:49 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'hanguprequest', attributes: {uniqueid=1444426175.5, event=HangupRequest, privilege=call,all, channel=SIP/2186-00000004}. Please report at http://jira.reucon.org/browse/AJ 2015-10-10 00:59:49 [Asterisk-Java -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17625.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. _______________________________________________ http://www.vtiger.com/ From michele.mastropieri at gmail.com Sat Oct 10 07:32:00 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Sat, 10 Oct 2015 09:32:00 +0200 Subject: [Vtigercrm-developers] How link pbx calls to tickets. Message-ID: Hi to all, I've a need. I want, in some way, associate PBX Calls from my contact (vtiger asterisk connector is working well) to new or existent ticket. In a perfect world I will be great if when a call terminate vtiger automatically create a ticket associated to contact, but it will be good also if I can link tickets to calls after some time. So, the workflow will be: 1. Incoming call is happening. 2. If caller is a pre-esistent vtiger contact, a new ticket is created. 3. When the call is completed I will edit the ticket with additional information. But, also the simplest scenario will be accettable. 1. Incoming call is happening. 2. I do the conversation and call is tracked into PBX Manager. 3. I create or edit ticket and I associate 1 or more calls to it. Any ideas? Regards. -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Sat Oct 10 07:33:23 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Sat, 10 Oct 2015 09:33:23 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> Message-ID: Please copy and past your /etc/asterisk/manager.conf, extensions.conf, vtiger asterisk settings... 2015-10-09 16:24 GMT+02:00 Alex Martin : > Your Asterisklog and database log is commented out at the bottom so > there's one issue. > > Did you create the context in your asterisk server for the calls? > > > -----Original Message----- > From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of mahoutchian > Sent: Friday, October 9, 2015 10:11 AM > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Vtiger Astersik Connector > > other informations > > /* > * Copyright (C) www.vtiger.com. All rights reserved. > * @license Proprietary > */ > > // Location where the application server will be running. > ServerIP = 0.0.0.0 > ServerPort = 8380 > > // Call Recordings storage path > StorageDir = > > // Enable(true) or Disable(false) call recordings Recording = false > > // Location where the applications database files will be stored. > AsteriskAppDBPath = /usr/local/VtigerAsteriskConnector/db > > // Asterisk Server Details > AsteriskServerPublicIP = 192.168.33.10 > AsteriskServerIP = 127.0.0.1 > AsteriskServerPort = 5038 > AsteriskUsername = vtiger > AsteriskPassword = password > > // Vtiger CRM URL > VtigerURL = http://crm.domainforcrm.org/vtigercrm > VtigerSecretKey = 146676517aaacbc57b8e861 > > //Enable(true) or Disable(false) Asterisk Events and Database Logs in > Connector AsteriskLog = false DatabaseLog = false > > > > and log : > > 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.Server - > jetty-8.1.14.v20131031 > 2015-10-10 00:58:32 [main] INFO > org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for > /, did not find org.apache.jasper.servlet.JspServlet > 2015-10-10 00:58:32 [main] INFO org.eclipse.jetty.server.AbstractConnector > - Started SelectChannelConnector at 0.0.0.0:8380 > 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Outbound Call > 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Asterisk Login Successfull > 2015-10-10 00:59:30 [qtp8619379-14] INFO a - Successfully Authenticated > Vtiger Secret Key > 2015-10-10 00:59:30 [qtp8619379-14] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Connecting to > 127.0.0.1:5038 > 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Connected via > Asterisk Call Manager/1.3 > 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.ManagerConnectionImpl - Unsupported > protocol version 'Asterisk Call Manager/1.3'. Use at your own risk. > 2015-10-10 00:59:30 [qtp8619379-14] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Successfully > logged in > 2015-10-10 00:59:30 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.EventBuilderImpl - No event class > registered for event type 'fullybooted', attributes: {status=Fully Booted, > event=FullyBooted, privilege=system,all}. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:32 [qtp8619379-14] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Determined > Asterisk version: Asterisk 1.6 > 2015-10-10 00:59:32 [qtp8619379-14] INFO a - Sending call originate > request to asterisk > 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Context:from-internal > 2015-10-10 00:59:35 [qtp8619379-14] INFO a - From: 2186 -> To: > 02166751688 > 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Outgoing Call Response: > Success > 2015-10-10 00:59:35 [qtp8619379-14] INFO a - Asterisk Response: > Originate successfully queued > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinename' to '' on > org.asteriskjava.manager.event.DialEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.DialEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:35 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:44 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property 'class' to 'default' on > org.asteriskjava.manager.event.MusicOnHoldEvent: no setter. Please report > at http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:49 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.EventBuilderImpl - No event class > registered for event type 'hanguprequest', attributes: > {uniqueid=1444426175.5, event=HangupRequest, privilege=call,all, > channel=SIP/2186-00000004}. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-10 00:59:49 [Asterisk-Java > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17625.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Sun Oct 11 00:53:34 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Sun, 11 Oct 2015 07:53:34 +0700 Subject: [Vtigercrm-developers] Field mandatory if= Message-ID: Looking for a way to make some fields mandatory but after value of some picklist gets specified number. Anybody resolved similar issue? Stacey -------------- next part -------------- An HTML attachment was scrubbed... URL: From rslemer at gmail.com Sun Oct 11 09:44:23 2015 From: rslemer at gmail.com (Ranieri) Date: Sun, 11 Oct 2015 06:44:23 -0300 Subject: [Vtigercrm-developers] Field mandatory if= In-Reply-To: References: Message-ID: In marketplace there are two solution ( payed ) 2015-10-10 21:53 GMT-03:00 Stacey Johnson : > Looking for a way to make some fields mandatory but after value of some > picklist gets specified number. Anybody resolved similar issue? > > Stacey > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bernard.bailey at timezone.co.nz Sun Oct 11 22:28:57 2015 From: bernard.bailey at timezone.co.nz (Bernard Bailey) Date: Mon, 12 Oct 2015 11:28:57 +1300 Subject: [Vtigercrm-developers] Cannot find/let alone edit the email content of Tickets In-Reply-To: Message-ID: Hi developers, I am sure this has been asked before. (perhaps some one can answer how to search the archives with windows/linux) I would like to modify the standard email sent out by MailScanner(?) as a result of any changes in a Ticket. In particular I would like it to show the user name of the person who modified the record. All assistance is appreciated. Regards Bernard G Bailey From preexo at googlemail.com Mon Oct 12 04:04:39 2015 From: preexo at googlemail.com (Preexo) Date: Sun, 11 Oct 2015 21:04:39 -0700 (PDT) Subject: [Vtigercrm-developers] Strict standards In-Reply-To: <56166C94.4080406@libertus.co.uk> References: <1444308264439-17614.post@n4.nabble.com> <56166C94.4080406@libertus.co.uk> Message-ID: <1444622679840-17632.post@n4.nabble.com> What is the reason for ignoring all the warnings, stricts and deprecated issues? Why don't they get addressed properly and resolved in one of the upcoming versions? Switching off the notifications is not solving the issue that the software is doing dodgy or deprecated stuff... -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Strict-standards-tp17606p17632.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From rlstanek at gmail.com Mon Oct 12 04:33:21 2015 From: rlstanek at gmail.com (Rebecca Stanek) Date: Sun, 11 Oct 2015 21:33:21 -0700 Subject: [Vtigercrm-developers] Cannot find/let alone edit the email content of Tickets In-Reply-To: References: Message-ID: You'll find the emails in the workflows. When you edit the workflow through the admin section you'll find a section to edit the email. On Oct 11, 2015 3:30 PM, "Bernard Bailey" wrote: > Hi developers, > > I am sure this has been asked before. (perhaps some one can answer how to > search the archives with windows/linux) > > I would like to modify the standard email sent out by MailScanner(?) as a > result of any changes in a Ticket. > > In particular I would like it to show the user name of the person who > modified > the record. > > All assistance is appreciated. > > Regards > Bernard G Bailey > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Mon Oct 12 09:55:45 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Mon, 12 Oct 2015 11:55:45 +0200 Subject: [Vtigercrm-developers] PBX Manager - Duration Calls. Message-ID: Hi to all, when I open PBX Manager module I can see all pbx calls. The problem is that the duration is always 60 seconds. But the actual duration is minimum 10 minutes or more. How resolve? -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Mon Oct 12 18:29:45 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Mon, 12 Oct 2015 11:29:45 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> Message-ID: <1444674585014-17635.post@n4.nabble.com> problem is : in outgoing call ( click to call) my extention ringing and show a have a call from clicked number , but after pick up my phone system dial myself(my extention) again , not my clicked number !!!! after running sh start.sh ... report file 1 in vtigerasteriskconnector log folder : 2015-10-13 03:43:45 [main] INFO org.asteriskjava.fastagi.DefaultAgiServer - Listening on *:4573. report file 2 in vtigerasteriskconnector log folder : 2015-10-13 04:29:03 [main] INFO org.eclipse.jetty.server.Server - jetty-8.1.14.v20131031 2015-10-13 04:29:03 [main] INFO org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for /, did not find org.apache.jasper.servlet.JspServlet 2015-10-13 04:29:03 [main] INFO org.eclipse.jetty.server.AbstractConnector - Started SelectChannelConnector at 0.0.0.0:8380 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Outbound Call 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Asterisk Login Successfull 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Successfully Authenticated Vtiger Secret Key 2015-10-13 04:34:28 [qtp8619379-17] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connecting to 127.0.0.1:5038 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Connected via Asterisk Call Manager/1.3 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.ManagerConnectionImpl - Unsupported protocol version 'Asterisk Call Manager/1.3'. Use at your own risk. 2015-10-13 04:34:28 [qtp8619379-17] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Successfully logged in 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'fullybooted', attributes: {status=Fully Booted, event=FullyBooted, privilege=system,all}. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:30 [qtp8619379-17] INFO org.asteriskjava.manager.internal.ManagerConnectionImpl - Determined Asterisk version: Asterisk 1.6 2015-10-13 04:34:30 [qtp8619379-17] INFO a - Sending call originate request to asterisk 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Context:from-internal 2015-10-13 04:34:36 [qtp8619379-17] INFO a - From: 2186 -> To: 02166751688 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Outgoing Call Response: Success 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Asterisk Response: Originate successfully queued 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to '' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.DialEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'class' to 'default' on org.asteriskjava.manager.event.MusicOnHoldEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:44 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'hanguprequest', attributes: {uniqueid=1444698276.1353, event=HangupRequest, privilege=call,all, channel=SIP/2186-00000316}. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.HangupEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '02166751688' on org.asteriskjava.manager.event.HangupEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] INFO org.asteriskjava.manager.internal.EventBuilderImpl - No event class registered for event type 'softhanguprequest', attributes: {cause=16, uniqueid=1444698270.1352, event=SoftHangupRequest, privilege=call,all, channel=SIP/2186-00000315}. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinename' to 'SETUDA Technical' on org.asteriskjava.manager.event.HangupEvent: no setter. Please report at http://jira.reucon.org/browse/AJ 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set property 'connectedlinenum' to '2186' on org.asteriskjava.manager.event.HangupEvent: no setter. Please report at http://jira.reucon.org/browse/AJ web site at this address : ip:8380 {ok} Directory: / agi.sh 339 bytes Feb 10, 2015 6:48:15 PM start.sh 228 bytes Feb 10, 2015 6:48:15 PM stop.sh 115 bytes Feb 10, 2015 6:48:15 PM webapp.sh 377 bytes Feb 10, 2015 6:48:15 PM manager.conf file is : [general] enabled = yes port = 5038 bindaddr = 0.0.0.0 displayconnects=no ;only effects 1.6+ [admin] secret = PVoip1394 deny=0.0.0.0/0.0.0.0 permit=127.0.0.1/255.255.255.0 read = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate write = system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate writetimeout = 5000 #include manager_additional.conf #include manager_custom.conf cdr.conf is : [general] ; Define whether or not to use CDR logging. Setting this to "no" will override ; any loading of backend CDR modules. Default is "yes". enable=yes cdr_manager.conf is : ; ; Asterisk Call Management CDR ; [general] enabled = yes extentions_custom.conf is : [from-internal-custom] exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for outgoing with more than 5 digits } [from-pstn-custom] exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for incoming with more than 5 digits } Vtiger setting is : Vtiger Asterisk App URL http://192.168.33.10:8380 Outbound Context from-internal Outbound Trunk OUTVTIGER Vtiger Secret Key 146676517655cbc57b8e861 -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17635.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From socialboostdk at gmail.com Tue Oct 13 07:50:03 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Tue, 13 Oct 2015 09:50:03 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? Message-ID: Hi there, It looks like there is no LDAP integration in vTiger? I found this featuring a migration from 5.4 to 6.0: https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 I also found this instruction (translated to english by Chrome): http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ Does anyone here have any experiences with it? I'd preferrably be using vTiger 6.3 :-) Thanks, Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Tue Oct 13 08:02:25 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 13 Oct 2015 10:02:25 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1444674585014-17635.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> Message-ID: The content of extensions.conf? 2015-10-12 20:29 GMT+02:00 mahoutchian : > problem is : > > in outgoing call ( click to call) > my extention ringing and show a have a call from clicked number , but after > pick up my phone system dial myself(my extention) again , not my clicked > number !!!! > > after running sh start.sh ... > > report file 1 > in vtigerasteriskconnector log folder : > > 2015-10-13 03:43:45 [main] INFO org.asteriskjava.fastagi.DefaultAgiServer > - Listening on *:4573. > > report file 2 > in vtigerasteriskconnector log folder : > 2015-10-13 04:29:03 [main] INFO org.eclipse.jetty.server.Server - > jetty-8.1.14.v20131031 > 2015-10-13 04:29:03 [main] INFO > org.eclipse.jetty.webapp.StandardDescriptorProcessor - NO JSP Support for > /, did not find org.apache.jasper.servlet.JspServlet > 2015-10-13 04:29:03 [main] INFO org.eclipse.jetty.server.AbstractConnector > - Started SelectChannelConnector at 0.0.0.0:8380 > 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Outbound Call > 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Asterisk Login Successfull > 2015-10-13 04:34:28 [qtp8619379-17] INFO a - Successfully Authenticated > Vtiger Secret Key > 2015-10-13 04:34:28 [qtp8619379-17] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Connecting to > 127.0.0.1:5038 > 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Connected via > Asterisk Call Manager/1.3 > 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.ManagerConnectionImpl - Unsupported > protocol version 'Asterisk Call Manager/1.3'. Use at your own risk. > 2015-10-13 04:34:28 [qtp8619379-17] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Successfully > logged in > 2015-10-13 04:34:28 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.EventBuilderImpl - No event class > registered for event type 'fullybooted', attributes: {status=Fully Booted, > event=FullyBooted, privilege=system,all}. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:30 [qtp8619379-17] INFO > org.asteriskjava.manager.internal.ManagerConnectionImpl - Determined > Asterisk version: Asterisk 1.6 > 2015-10-13 04:34:30 [qtp8619379-17] INFO a - Sending call originate > request to asterisk > 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Context:from-internal > 2015-10-13 04:34:36 [qtp8619379-17] INFO a - From: 2186 -> To: > 02166751688 > 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Outgoing Call Response: > Success > 2015-10-13 04:34:36 [qtp8619379-17] INFO a - Asterisk Response: Originate > successfully queued > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinename' to '' on > org.asteriskjava.manager.event.DialEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.DialEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:36 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.NewStateEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:41 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'class' to 'default' on org.asteriskjava.manager.event.MusicOnHoldEvent: no > setter. Please report at http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:44 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.EventBuilderImpl - No event class > registered for event type 'hanguprequest', attributes: > {uniqueid=1444698276.1353, event=HangupRequest, privilege=call,all, > channel=SIP/2186-00000316}. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.HangupEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '02166751688' on > org.asteriskjava.manager.event.HangupEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] INFO > org.asteriskjava.manager.internal.EventBuilderImpl - No event class > registered for event type 'softhanguprequest', attributes: {cause=16, > uniqueid=1444698270.1352, event=SoftHangupRequest, privilege=call,all, > channel=SIP/2186-00000315}. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinename' to 'SETUDA Technical' on > org.asteriskjava.manager.event.HangupEvent: no setter. Please report at > http://jira.reucon.org/browse/AJ > 2015-10-13 04:34:45 [Asterisk-Java ManagerConnection-0-Reader-0] WARN > org.asteriskjava.manager.internal.EventBuilderImpl - Unable to set > property > 'connectedlinenum' to '2186' on org.asteriskjava.manager.event.HangupEvent: > no setter. Please report at http://jira.reucon.org/browse/AJ > > > web site at this address : ip:8380 {ok} > > Directory: / > > agi.sh 339 bytes Feb 10, 2015 6:48:15 PM > start.sh 228 bytes Feb 10, 2015 6:48:15 PM > stop.sh 115 bytes Feb 10, 2015 6:48:15 PM > webapp.sh 377 bytes Feb 10, 2015 6:48:15 PM > > manager.conf file is : > > [general] > enabled = yes > port = 5038 > bindaddr = 0.0.0.0 > displayconnects=no ;only effects 1.6+ > > [admin] > secret = PVoip1394 > deny=0.0.0.0/0.0.0.0 > permit=127.0.0.1/255.255.255.0 > read = > > system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate > write = > > system,call,log,verbose,command,agent,user,config,command,dtmf,reporting,cdr,dialplan,originate > writetimeout = 5000 > > #include manager_additional.conf > #include manager_custom.conf > > cdr.conf is : > > [general] > > ; Define whether or not to use CDR logging. Setting this to "no" will > override > ; any loading of backend CDR modules. Default is "yes". > enable=yes > > cdr_manager.conf is : > > ; > ; Asterisk Call Management CDR > ; > [general] > enabled = yes > > extentions_custom.conf is : > > [from-internal-custom] > > exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for outgoing with more > than 5 digits } > > [from-pstn-custom] > exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for incoming with more > than 5 digits } > > Vtiger setting is : > > Vtiger Asterisk App URL http://192.168.33.10:8380 > Outbound Context from-internal > Outbound Trunk OUTVTIGER > Vtiger Secret Key 146676517655cbc57b8e861 > > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17635.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.krzaczkowski at yetiforce.com Tue Oct 13 08:54:56 2015 From: m.krzaczkowski at yetiforce.com (Mariusz Krzaczkowski) Date: Tue, 13 Oct 2015 10:54:56 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: Hi Chris, If you want an easy solution for LDAP integration then check how we solved it in our system. The entire authorization is in one file: https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 [4] And the management panel you can see here: https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 [5] --- Z powa?aniem / Regards MARIUSZ KRZACZKOWSKI _Director of Product Development_ M: +48 884-998-123 E: m.krzaczkowski at yetiforce.com ------------------------- We created an innovative open source project called YetiForceCRM. You can test it here [6], download [7] it for free or read its documentation [8]. Follow us on Twitter [9] to get real-time info about new functionalities and articles. W dniu 2015-10-13 09:50, socialboostdk napisa?(a): > Hi there, > > It looks like there is no LDAP integration in vTiger? > > I found this featuring a migration from 5.4 to 6.0: https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 [1] > > I also found this instruction (translated to english by Chrome): http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ [2] > > Does anyone here have any experiences with it? I'd preferrably be using vTiger 6.3 :-) > > Thanks, > Chris > > _______________________________________________ > http://www.vtiger.com/ [3] Links: ------ [1] https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 [2] http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ [3] http://www.vtiger.com/ [4] https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 [5] https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 [6] https://test.yetiforce.com/ [7] https://github.com/YetiForceCompany/YetiForceCRM [8] https://yetiforce.com/en/documentation.html [9] https://twitter.com/YetiForceEN -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Tue Oct 13 10:28:48 2015 From: preexo at googlemail.com (Preexo) Date: Tue, 13 Oct 2015 03:28:48 -0700 (PDT) Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: <1444382156454-17622.post@n4.nabble.com> References: <1444279553881-17608.post@n4.nabble.com> <1444290155487-17611.post@n4.nabble.com> <1444382156454-17622.post@n4.nabble.com> Message-ID: <1444732128459-17640.post@n4.nabble.com> ok, I have more problems... the calendar is still a pain in .... When I create an event and add the system(custom module) to the field right away while creating the new entity event, it doesn't save any relation to the vtiger_seactivity table. If I edit the already created event and add the custom module field value then, it does add an entry to vtiger_seactivity. Anyone an idea why? also I have problems with the buttons in the related list in my custom module. I don't want to show the "add task" button. But how do I get rid of it? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/add-custom-field-with-uitype-10-field-to-calendar-events-module-tp17608p17640.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From michele.mastropieri at gmail.com Tue Oct 13 10:40:40 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 13 Oct 2015 12:40:40 +0200 Subject: [Vtigercrm-developers] PBX Manager - Duration Calls. In-Reply-To: References: Message-ID: Solved manually, I've create a mysql trigger before update into table vtigerpbxmanager 2015-10-12 11:55 GMT+02:00 Michele Mastropieri < michele.mastropieri at gmail.com>: > Hi to all, > > when I open PBX Manager module I can see all pbx calls. The problem is > that the duration is always 60 seconds. But the actual duration is minimum > 10 minutes or more. > > How resolve? > > -- > > ------------------------------ > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Tue Oct 13 10:32:34 2015 From: preexo at googlemail.com (Preexo) Date: Tue, 13 Oct 2015 03:32:34 -0700 (PDT) Subject: [Vtigercrm-developers] individual taxes not working Message-ID: <1444732354091-17642.post@n4.nabble.com> When I switch to individual taxes and click on the tax link at a position, it comes up with a popup, with a missing translation and a error message, please see in the screenshot uploaded at nabble: What can I do about this, how is it supposed to work, where can I find any documentation about the individual taxes feature? Thanks for any help! -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alanslists at gmail.com Tue Oct 13 10:54:18 2015 From: alanslists at gmail.com (Alan Lord) Date: Tue, 13 Oct 2015 11:54:18 +0100 Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: <1444732128459-17640.post@n4.nabble.com> References: <1444279553881-17608.post@n4.nabble.com> <1444290155487-17611.post@n4.nabble.com> <1444382156454-17622.post@n4.nabble.com> <1444732128459-17640.post@n4.nabble.com> Message-ID: On 13/10/15 11:28, Preexo wrote: > > also I have problems with the buttons in the related list in my custom > module. I don't want to show the "add task" button. But how do I get rid of > it? You need to comment out the Add Task item in the $calendarActionLinks array in the DetailView Model of *each* of the affected modules... You will also need to "hack" the QuickCreate template file, the Vtiger RelationListView Model, and hide the vtiger_relatedlist entries for the "Calendar" tabid - not the "Events" tabid. The Calendar is a bloody mess. :-D HTH Al From sailsfast at gmail.com Tue Oct 13 13:25:08 2015 From: sailsfast at gmail.com (Doug) Date: Tue, 13 Oct 2015 09:25:08 -0400 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: When you came out with your stuff I was impressed... That was until we were all poorly treated by your team. Please take your marbles and go home. Or when your attitude towards the community improves, or your leader replaced let is know. But please post on your own mailing list. Oppps. You don't have one because you choose to delete. :-/ On Oct 13, 2015 4:51 AM, "Mariusz Krzaczkowski" < m.krzaczkowski at yetiforce.com> wrote: > > > Hi Chris, > > If you want an easy solution for LDAP integration then check how we solved > it in our system. > > The entire authorization is in one file: > https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 > > And the management panel you can see here: > https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 > --- > > Z powa?aniem / Regards > *Mariusz Krzaczkowski* > *Director of Product Development* > M: +48 884-998-123 > E: m.krzaczkowski at yetiforce.com > ------------------------------ > We created an innovative open source project called YetiForceCRM. You can > test it here , download > it for free or read > its documentation . Follow > us on Twitter to get real-time info > about new functionalities and articles. > > W dniu 2015-10-13 09:50, socialboostdk napisa?(a): > > Hi there, > > It looks like there is no LDAP integration in vTiger? > > I found this featuring a migration from 5.4 to 6.0: > https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 > > I also found this instruction (translated to english by Chrome): > http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ > > Does anyone here have any experiences with it? I'd preferrably be using > vTiger 6.3 :-) > > Thanks, > Chris > > _______________________________________________ > http://www.vtiger.com/ > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From socialboostdk at gmail.com Tue Oct 13 13:42:18 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Tue, 13 Oct 2015 15:42:18 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: Hi Mariusz, Thank you! This looks very interesting, and would be spot-on-perfect on what I need :-) Is it something that is portable to VT? Thanks! Cheers, Chris On 13 October 2015 at 10:54, Mariusz Krzaczkowski < m.krzaczkowski at yetiforce.com> wrote: > > > Hi Chris, > > If you want an easy solution for LDAP integration then check how we solved > it in our system. > > The entire authorization is in one file: > https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 > > And the management panel you can see here: > https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 > --- > > Z powa?aniem / Regards > *Mariusz Krzaczkowski* > *Director of Product Development* > M: +48 884-998-123 > E: m.krzaczkowski at yetiforce.com > ------------------------------ > We created an innovative open source project called YetiForceCRM. You can > test it here , download > it for free or read > its documentation . Follow > us on Twitter to get real-time info > about new functionalities and articles. > > W dniu 2015-10-13 09:50, socialboostdk napisa?(a): > > Hi there, > > It looks like there is no LDAP integration in vTiger? > > I found this featuring a migration from 5.4 to 6.0: > https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 > > I also found this instruction (translated to english by Chrome): > http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ > > Does anyone here have any experiences with it? I'd preferrably be using > vTiger 6.3 :-) > > Thanks, > Chris > > _______________________________________________ > http://www.vtiger.com/ > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pobrien at boruapps.com Tue Oct 13 14:42:36 2015 From: pobrien at boruapps.com (boruapps) Date: Tue, 13 Oct 2015 07:42:36 -0700 (PDT) Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: fyi - we have an LDAP integration module http://www.boruapps.com/shop/other-integrations/ldap-authentication-module/ Patrick O'Brien Boru, Inc. More Sales, Better Service - Results for Small Business Work 312-878-6461, Ext 1 Mobile 312-282-4561 Follow us on Twitter Like us on Facebook On Tue, Oct 13, 2015 at 8:33 AM, socialboostdk [via vtiger CRM] < ml-node+s2324883n17645h66 at n4.nabble.com> wrote: > Hi Mariusz, > > Thank you! This looks very interesting, and would be spot-on-perfect on > what I need :-) > > Is it something that is portable to VT? > > Thanks! > > Cheers, > Chris > > On 13 October 2015 at 10:54, Mariusz Krzaczkowski <[hidden email] > > wrote: > >> >> >> Hi Chris, >> >> If you want an easy solution for LDAP integration then check how we >> solved it in our system. >> >> The entire authorization is in one file: >> https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 >> >> And the management panel you can see here: >> https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 >> --- >> >> Z powa?aniem / Regards >> *Mariusz Krzaczkowski* >> *Director of Product Development* >> M: > target="_blank">+48 884-998-123 >> E: [hidden email] >> ------------------------------ >> We created an innovative open source project called YetiForceCRM. You can >> test it here , download >> it for free or read >> its documentation . Follow >> us on Twitter to get real-time info >> about new functionalities and articles. >> >> W dniu 2015-10-13 09:50, socialboostdk napisa?(a): >> >> Hi there, >> >> It looks like there is no LDAP integration in vTiger? >> >> I found this featuring a migration from 5.4 to 6.0: >> https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 >> >> I also found this instruction (translated to english by Chrome): >> http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ >> >> Does anyone here have any experiences with it? I'd preferrably be using >> vTiger 6.3 :-) >> >> Thanks, >> Chris >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-LDAP-integration-in-vTiger-6-x-tp17637p17645.html > To start a new topic under vtigercrm-developers, email > ml-node+s2324883n4h95 at n4.nabble.com > To unsubscribe from vtiger CRM, click here > > . > NAML > > -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-LDAP-integration-in-vTiger-6-x-tp17637p17646.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pobrien at boruapps.com Tue Oct 13 14:47:49 2015 From: pobrien at boruapps.com (boruapps) Date: Tue, 13 Oct 2015 07:47:49 -0700 (PDT) Subject: [Vtigercrm-developers] PM module? In-Reply-To: References: Message-ID: here is what we did: Create new user in VT automatically adds as a user in slack: On any record in VT, click to add a new slack (topic) channel, add users (now or later), click save. A link to the channel is saved on that screen for later display of the linked slack conversations. For example, On an organization screen, any user could click the button and add users that might be interested in staying In touch with what happens to that company. Users can add themselves from the slack side as well. The topic would be available looking on the slack side or looking on the vTiger side in the slack widget on the organization screen. Preview of the linked slack topic/channel in VT on screen that is linked to the channel. We can do this as a widget on summary screens. Patrick O'Brien Boru, Inc. More Sales, Better Service - Results for Small Business Work 312-878-6461, Ext 1 Mobile 312-282-4561 Follow us on Twitter Like us on Facebook On Fri, Oct 2, 2015 at 1:07 PM, socialboostdk [via vtiger CRM] < ml-node+s2324883n17536h87 at n4.nabble.com> wrote: > Hi there - do tell me more about the slack / vtiger integration? > > :) > > On 1 October 2015 at 22:23, boruapps <[hidden email] > > wrote: > >> We did some work to integrate Slack with vtiger. Let me know if you want >> more info. >> >> Patrick O'Brien >> Boru, Inc. >> More Sales, Better Service - Results for Small Business >> Work 312-878-6461, Ext 1 >> Mobile 312-282-4561 >> Follow us on Twitter >> Like us on Facebook >> >> On Thu, Oct 1, 2015 at 3:03 PM, socialboostdk [via vtiger CRM] <[hidden >> email] > wrote: >> >>> Hi there, >>> >>> Has anyone heard of any private messaging module in vtiger? >>> >>> And/or any reliable chat modules? >>> >>> Thanks :D >>> >>> //Chrs >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> ------------------------------ >>> If you reply to this email, your message will be added to the discussion >>> below: >>> >>> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-PM-module-tp17521.html >>> To start a new topic under vtigercrm-developers, email [hidden email] >>> >>> To unsubscribe from vtiger CRM, click here. >>> NAML >>> >>> >> >> >> ------------------------------ >> View this message in context: Re: [Vtigercrm-developers] PM module? >> >> Sent from the vtigercrm-developers mailing list archive >> >> at Nabble.com. >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://vtiger-crm.2324883.n4.nabble.com/Re-Vtigercrm-developers-PM-module-tp17522p17536.html > To start a new topic under vtigercrm-developers, email > ml-node+s2324883n4h95 at n4.nabble.com > To unsubscribe from vtiger CRM, click here > > . > NAML > > -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Re-Vtigercrm-developers-PM-module-tp17522p17647.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From vladimir at kosacrta.hr Tue Oct 13 15:04:03 2015 From: vladimir at kosacrta.hr (=?UTF-8?Q?Vladimir_Kara=C5=BEija?=) Date: Tue, 13 Oct 2015 17:04:03 +0200 Subject: [Vtigercrm-developers] PBX Manager - Duration Calls. In-Reply-To: References: Message-ID: Hi Michele, would you be so kind to share solution for this problem? regards, Vladimir Vladimir Kara?ija Kosa crta d.o.o. Jagnedje 1 10090 Zagreb OIB: 57724075047 t. +385 1 777 33 85 m. +385 91 122 0511 www.kosacrta.hr On Oct 13, 2015 12:41 PM, "Michele Mastropieri" < michele.mastropieri at gmail.com> wrote: > Solved manually, I've create a mysql trigger before update into table > vtigerpbxmanager > > 2015-10-12 11:55 GMT+02:00 Michele Mastropieri < > michele.mastropieri at gmail.com>: > >> Hi to all, >> >> when I open PBX Manager module I can see all pbx calls. The problem is >> that the duration is always 60 seconds. But the actual duration is minimum >> 10 minutes or more. >> >> How resolve? >> >> -- >> >> ------------------------------ >> dott. Michele Mastropieri >> Email: michele.mastropieri at gmail.com >> Skype: thebookison >> Mobile: 3403050591 >> Fax: 1782280825 >> Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. >> N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. >> >> > > > -- > > ------------------------------ > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Tue Oct 13 15:34:15 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 13 Oct 2015 17:34:15 +0200 Subject: [Vtigercrm-developers] PBX Manager - Duration Calls. In-Reply-To: References: Message-ID: This is for update duration (in minutes). delimiter |CREATE TRIGGER `end_time_update` BEFORE UPDATE ON `vtiger_pbxmanager` FOR EACH ROWBEGIN set NEW.endtime = now(); set NEW.duration = TIMESTAMPDIFF(SECOND, NEW.starttime, NEW.endtime);END| delimiter ; Additionally, you can create this trigger for UTC time sync, this is because vtiger store times as UTC (+0) delimiter |CREATE TRIGGER `end_time_update` BEFORE UPDATE ON `mytable` FOR EACH ROWBEGIN set NEW.starttime = UTC_TIMESTAMP();END| delimiter ; 2015-10-13 17:04 GMT+02:00 Vladimir Kara?ija : > Hi Michele, > > would you be so kind to share solution for this problem? > > regards, Vladimir > > Vladimir Kara?ija > > Kosa crta d.o.o. > Jagnedje 1 > 10090 Zagreb > OIB: 57724075047 > > t. +385 1 777 33 85 > m. +385 91 122 0511 > www.kosacrta.hr > > > On Oct 13, 2015 12:41 PM, "Michele Mastropieri" < > michele.mastropieri at gmail.com> wrote: > >> Solved manually, I've create a mysql trigger before update into table >> vtigerpbxmanager >> >> 2015-10-12 11:55 GMT+02:00 Michele Mastropieri < >> michele.mastropieri at gmail.com>: >> >>> Hi to all, >>> >>> when I open PBX Manager module I can see all pbx calls. The problem is >>> that the duration is always 60 seconds. But the actual duration is minimum >>> 10 minutes or more. >>> >>> How resolve? >>> >>> -- >>> >>> ------------------------------ >>> dott. Michele Mastropieri >>> Email: michele.mastropieri at gmail.com >>> Skype: thebookison >>> Mobile: 3403050591 >>> Fax: 1782280825 >>> Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. >>> N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. >>> >>> >> >> >> -- >> >> ------------------------------ >> dott. Michele Mastropieri >> Email: michele.mastropieri at gmail.com >> Skype: thebookison >> Mobile: 3403050591 >> Fax: 1782280825 >> Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. >> N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Tue Oct 13 15:40:59 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 13 Oct 2015 17:40:59 +0200 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. Message-ID: Hi to all, if I answer to an incoming call and thus I transfer it to other extension, the module store information about the call but it keep only information about pre-trasfer. Let me explain better with an example. 1. Incoming call is answered by extension num 101. 2. 101 transfer call to 102 extension. 3. After 10 minutes 102 hung up. 4. Into record list I have only 1 record: the initial conversation between 101 and external customer. I lost the information about the entire conversation that is 10minutes call. How solve it? -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Tue Oct 13 19:48:18 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Wed, 14 Oct 2015 08:48:18 +1300 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: <561D6002.4010103@tw.co.nz> We are using 6.3 and authenticate against an openldap server. To be honest I did not think that I did any custom work to achieve this, but if this really isn't in the base let me know and I'll dig out whatever it is I did to achieve this, was definitely no big deal or I would remember doing it. On 14/10/15 03:42, boruapps wrote: > fyi - we have an LDAP integration module > > http://www.boruapps.com/shop/other-integrations/ldap-authentication-module/ > > Patrick O'Brien > Boru, Inc. > More Sales, Better Service - Results for Small Business > Work 312-878-6461, Ext 1 > Mobile 312-282-4561 > Follow us on Twitter > Like us on Facebook > > On Tue, Oct 13, 2015 at 8:33 AM, socialboostdk [via vtiger CRM] > <[hidden email] > wrote: > > Hi Mariusz, > > Thank you! This looks very interesting, and would be > spot-on-perfect on what I need :-) > > Is it something that is portable to VT? > > Thanks! > > Cheers, > Chris > > On 13 October 2015 at 10:54, Mariusz Krzaczkowski <[hidden email] > > wrote: > > Hi Chris, > > If you want an easy solution for LDAP integration then check > how we solved it in our system. > > The entire authorization is in one file: > https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 > > And the management panel you can see here: > https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 > > --- > > Z powa?aniem / Regards > > *Mariusz Krzaczkowski* > /Director of Product Development/ > M: target="_blank">+48884998123" target="_blank"> href="tel:%2B48%20884-998-123" value="+48884998123" > target="_blank">+48 884-998-123 > E: [hidden email] > > ------------------------------------------------------------------------ > We created an innovative open source project called > YetiForceCRM. You can test it here > , download > it for free > or read its documentation > . Follow us on > Twitter to get real-time info > about new functionalities and articles. > > W dniu 2015-10-13 09:50, socialboostdk napisa?(a): > >> Hi there, >> It looks like there is no LDAP integration in vTiger? >> I found this featuring a migration from 5.4 to 6.0: >> https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 >> I also found this instruction (translated to english by >> Chrome): >> http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ >> Does anyone here have any experiences with it? I'd >> preferrably be using vTiger 6.3 :-) >> >> Thanks, >> Chris >> >> _______________________________________________ >> http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > ------------------------------------------------------------------------ > If you reply to this email, your message will be added to the > discussion below: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-LDAP-integration-in-vTiger-6-x-tp17637p17645.html > > To start a new topic under vtigercrm-developers, email [hidden > email] > To unsubscribe from vtiger CRM, click here. > NAML > > > > > > ------------------------------------------------------------------------ > View this message in context: Re: LDAP integration in vTiger 6.x? > > Sent from the vtigercrm-developers mailing list archive > > at Nabble.com. > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Tue Oct 13 20:15:09 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Wed, 14 Oct 2015 09:15:09 +1300 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: <561D65D9.8030408@tw.co.nz> References: <561D6002.4010103@tw.co.nz> <561D65D9.8030408@tw.co.nz> Message-ID: <561D664D.1050402@tw.co.nz> Sent this to a user direct instead of list.. oops. On 14/10/15 09:13, Richard Hills - Technologywise wrote: > Looks like 6.3 release misses the file modules/Users/authTypes/LDAP.php ? > > I'm not entirely sure where our version came from (it is very ugly so > it's possible I did do this in a rush and forgot about it, or maybe > it's from an earlier version?), it is at least working for us. Not > sure if more is required... > > http://pastebin.com/1jWiMZRk > > Apart from adding this, I believe all the config required is in > config.inc.php: > >> $AUTHCFG['authType'] = 'LDAP'; >> $AUTHCFG['ldap_host'] = ''; >> $AUTHCFG['ldap_port'] = ''; >> $AUTHCFG['ldap_basedn'] = ''; >> $AUTHCFG['ldap_uid'] = 'uid'; //can be CN or UID depending on ldap >> install >> $AUTHCFG['ldap_username'] = ''; >> $AUTHCFG['ldap_pass'] = ''; > > Happy to do some more digging if this is still not enough to get it to > work for you. > >> >> >> On 13 October 2015 at 21:48, Richard Hills - Technologywise >> wrote: >> >> We are using 6.3 and authenticate against an openldap server. To >> be honest I did not think that I did any custom work to achieve >> this, but if this really isn't in the base let me know and I'll >> dig out whatever it is I did to achieve this, was definitely no >> big deal or I would remember doing it. >> >> >> On 14/10/15 03:42, boruapps wrote: >>> fyi - we have an LDAP integration module >>> >>> http://www.boruapps.com/shop/other-integrations/ldap-authentication-module/ >>> >>> Patrick O'Brien >>> Boru, Inc. >>> More Sales, Better Service - Results for Small Business >>> Work 312-878-6461, Ext 1 >>> Mobile 312-282-4561 >>> Follow us on Twitter >>> Like us on Facebook >>> >>> On Tue, Oct 13, 2015 at 8:33 AM, socialboostdk [via vtiger CRM] >>> <[hidden email] >>> > wrote: >>> >>> Hi Mariusz, >>> >>> Thank you! This looks very interesting, and would be >>> spot-on-perfect on what I need :-) >>> >>> Is it something that is portable to VT? >>> >>> Thanks! >>> >>> Cheers, >>> Chris >>> >>> On 13 October 2015 at 10:54, Mariusz Krzaczkowski <[hidden >>> email] >>> > wrote: >>> >>> Hi Chris, >>> >>> If you want an easy solution for LDAP integration then >>> check how we solved it in our system. >>> >>> The entire authorization is in one file: >>> https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 >>> >>> And the management panel you can see here: >>> https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 >>> >>> --- >>> >>> Z powa?aniem / Regards >>> >>> *Mariusz Krzaczkowski* >>> /Director of Product Development/ >>> M: +48884998123 >>> " target="_blank">>> href="tel:%2B48%20884-998-123" value="+48884998123 >>> " target="_blank">+48 884-998-123 >>> E: [hidden email] >>> >>> ------------------------------------------------------------------------ >>> We created an innovative open source project called >>> YetiForceCRM. You can test it here >>> , download >>> it for >>> free or read its documentation >>> . Follow us >>> on Twitter to get >>> real-time info about new functionalities and articles. >>> >>> W dniu 2015-10-13 09:50, socialboostdk napisa?(a): >>> >>>> Hi there, >>>> It looks like there is no LDAP integration in vTiger? >>>> I found this featuring a migration from 5.4 to 6.0: >>>> https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 >>>> I also found this instruction (translated to english by >>>> Chrome): >>>> http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ >>>> Does anyone here have any experiences with it? I'd >>>> preferrably be using vTiger 6.3 :-) >>>> >>>> Thanks, >>>> Chris >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> ------------------------------------------------------------------------ >>> If you reply to this email, your message will be added to >>> the discussion below: >>> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-LDAP-integration-in-vTiger-6-x-tp17637p17645.html >>> >>> To start a new topic under vtigercrm-developers, email >>> [hidden email] >>> >>> To unsubscribe from vtiger CRM, click here. >>> NAML >>> >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> View this message in context: Re: LDAP integration in vTiger >>> 6.x? >>> >>> Sent from the vtigercrm-developers mailing list archive >>> >>> at Nabble.com. >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >> >> -- >> Richard Hills >> TechnologyWise Ltd, Tauranga, NZ >> richard at tw.co.nz >> www.technologywise.co.nz >> ph:+64 (0)7 571 1060 >> fax:+64 (0)7 571 1061 >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZ > richard at tw.co.nz > www.technologywise.co.nz > ph: +64 (0)7 571 1060 > fax: +64 (0)7 571 1061 -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 -------------- next part -------------- An HTML attachment was scrubbed... URL: From socialboostdk at gmail.com Tue Oct 13 20:45:40 2015 From: socialboostdk at gmail.com (socialboostdk) Date: Tue, 13 Oct 2015 22:45:40 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: <561D664D.1050402@tw.co.nz> References: <561D6002.4010103@tw.co.nz> <561D65D9.8030408@tw.co.nz> <561D664D.1050402@tw.co.nz> Message-ID: Perfect - thanks, I'll check it out and get back to you :) On 13 October 2015 at 22:15, Richard Hills - Technologywise < richard at tw.co.nz> wrote: > Sent this to a user direct instead of list.. oops. > > On 14/10/15 09:13, Richard Hills - Technologywise wrote: > > Looks like 6.3 release misses the file modules/Users/authTypes/LDAP.php ? > > I'm not entirely sure where our version came from (it is very ugly so it's > possible I did do this in a rush and forgot about it, or maybe it's from an > earlier version?), it is at least working for us. Not sure if more is > required... > > http://pastebin.com/1jWiMZRk > > Apart from adding this, I believe all the config required is in > config.inc.php: > > $AUTHCFG['authType'] = 'LDAP'; > $AUTHCFG['ldap_host'] = ''; > $AUTHCFG['ldap_port'] = ''; > $AUTHCFG['ldap_basedn'] = ''; > $AUTHCFG['ldap_uid'] = 'uid'; //can be CN or UID depending on ldap install > $AUTHCFG['ldap_username'] = ''; > $AUTHCFG['ldap_pass'] = ''; > > > Happy to do some more digging if this is still not enough to get it to > work for you. > > > > On 13 October 2015 at 21:48, Richard Hills - Technologywise < > richard at tw.co.nz> wrote: > >> We are using 6.3 and authenticate against an openldap server. To be >> honest I did not think that I did any custom work to achieve this, but if >> this really isn't in the base let me know and I'll dig out whatever it is I >> did to achieve this, was definitely no big deal or I would remember doing >> it. >> >> >> On 14/10/15 03:42, boruapps wrote: >> >> fyi - we have an LDAP integration module >> >> >> http://www.boruapps.com/shop/other-integrations/ldap-authentication-module/ >> >> Patrick O'Brien >> Boru, Inc. >> More Sales, Better Service - Results for Small Business >> Work 312-878-6461, Ext 1 >> Mobile 312-282-4561 >> Follow us on Twitter >> Like us on Facebook >> >> On Tue, Oct 13, 2015 at 8:33 AM, socialboostdk [via vtiger CRM] <[hidden >> email] > wrote: >> >>> Hi Mariusz, >>> >>> Thank you! This looks very interesting, and would be spot-on-perfect on >>> what I need :-) >>> >>> Is it something that is portable to VT? >>> >>> Thanks! >>> >>> Cheers, >>> Chris >>> >>> On 13 October 2015 at 10:54, Mariusz Krzaczkowski <[hidden email] >>> > wrote: >>> >>>> >>>> >>>> Hi Chris, >>>> >>>> If you want an easy solution for LDAP integration then check how we >>>> solved it in our system. >>>> >>>> The entire authorization is in one file: >>>> >>>> https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 >>>> >>>> And the management panel you can see here: >>>> >>>> https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 >>>> --- >>>> >>>> Z powa?aniem / Regards >>>> *Mariusz Krzaczkowski* >>>> *Director of Product Development* >>>> M: >>>> +48884998123" target="_blank">+48 884-998-123 >>>> E: [hidden email] >>>> ------------------------------ >>>> We created an innovative open source project called YetiForceCRM. You >>>> can test it here , download >>>> it for free or read >>>> its documentation . >>>> Follow us on Twitter to get >>>> real-time info about new functionalities and articles. >>>> >>>> W dniu 2015-10-13 09:50, socialboostdk napisa?(a): >>>> >>>> Hi there, >>>> >>>> It looks like there is no LDAP integration in vTiger? >>>> >>>> I found this featuring a migration from 5.4 to 6.0: >>>> >>>> https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 >>>> >>>> I also found this instruction (translated to english by Chrome): >>>> >>>> http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ >>>> >>>> Does anyone here have any experiences with it? I'd preferrably be using >>>> vTiger 6.3 :-) >>>> >>>> Thanks, >>>> Chris >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >>> ------------------------------ >>> If you reply to this email, your message will be added to the discussion >>> below: >>> >>> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-LDAP-integration-in-vTiger-6-x-tp17637p17645.html >>> To start a new topic under vtigercrm-developers, email [hidden email] >>> >>> To unsubscribe from vtiger CRM, click here. >>> NAML >>> >>> >> >> >> ------------------------------ >> View this message in context: Re: LDAP integration in vTiger 6.x? >> >> Sent from the vtigercrm-developers mailing list archive >> >> at Nabble.com. >> >> >> _______________________________________________http://www.vtiger.com/ >> >> >> -- >> Richard Hills >> TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz >> ph: +64 (0)7 571 1060 >> fax: +64 (0)7 571 1061 >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz > ph: +64 (0)7 571 1060 > fax: +64 (0)7 571 1061 > > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz > ph: +64 (0)7 571 1060 > fax: +64 (0)7 571 1061 > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From john at reetspetit.net Wed Oct 14 01:26:11 2015 From: john at reetspetit.net (John Crisp) Date: Wed, 14 Oct 2015 03:26:11 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: <561DAF33.4030001@reetspetit.net> On 13/10/15 15:25, Doug wrote: > When you came out with your stuff I was impressed... > That was until we were all poorly treated by your team. > Please take your marbles and go home. +1 > > Or when your attitude towards the community improves, or your leader > replaced let is know. +1 > > But please post on your own mailing list. > +1 > Oppps. You don't have one because you choose to delete. :-/ > ROFLMAO -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 490 bytes Desc: OpenPGP digital signature URL: From bernard.bailey at timezone.co.nz Wed Oct 14 05:06:58 2015 From: bernard.bailey at timezone.co.nz (Bernard Bailey) Date: Wed, 14 Oct 2015 18:06:58 +1300 Subject: [Vtigercrm-developers] Cannot find/let alone edit the email content of Tickets In-Reply-To: Message-ID: Hi developers, > 3. Re: Cannot find/let alone edit the email content of Tickets - (Rebecca Stanek) >Subject: Re: [Vtigercrm-developers] Cannot find/let alone edit the email content of Tickets >You'll find the emails in the workflows. When you edit the workflow through the admin section you'll find a section to edit the email. Thanks Rebecca, You started me on a trail through HelpDesk workflows which do have template development functions. I was trying to find the source of the email which is sent on adding a new ticket from the HelpDesk module only, not the portal. I found the code in C:\Program Files\vtigercrm-5.4.0\apache\htdocs\yourCRMname\modules\HelpDesk\HelpDesk.php. I was able to make some changes to the email detail, but could not get the 'created by' field (smcreatorid in vtiger_crmentity)/User Name to show up in the email after the 'Solution :' field data. Can anyone point me in the right direction for this? Cheers Bernard From b.pabiszczak at yetiforce.com Wed Oct 14 06:29:37 2015 From: b.pabiszczak at yetiforce.com (=?UTF-8?Q?B=C5=82a=C5=BCej_Pabiszczak?=) Date: Wed, 14 Oct 2015 08:29:37 +0200 Subject: [Vtigercrm-developers] LDAP integration in vTiger 6.x? In-Reply-To: References: Message-ID: <7c0a6272f9b332c7f3a8cc7a7df8784b@yetiforce.com> Chris: A good programmer should be able to migrate it to vtiger 6.3 within 1 - 3 hours. The problem is that it requires modifying a system file. Doug: You're one of these people who can just criticize and bring no substantive value to the discussion. Unlike us, you never contributed to the vtiger community or to the development of the program itself. We reported hundreds of errors for many years, we created several free modules, and we helped many users. What you're presenting is typical completely worthless trolling. --- Z powa?aniem / Regards B?A?EJ PABISZCZAK _Chief Executive Officer_ M: +48.884999123 E: b.pabiszczak at yetiforce.com W dniu 2015-10-13 15:42, socialboostdk napisa?(a): > Hi Mariusz, > > Thank you! This looks very interesting, and would be spot-on-perfect on what I need :-) > > Is it something that is portable to VT? > > Thanks! > > Cheers, > Chris > > On 13 October 2015 at 10:54, Mariusz Krzaczkowski wrote: > > Hi Chris, > > If you want an easy solution for LDAP integration then check how we solved it in our system. > > The entire authorization is in one file: https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 [1] > > And the management panel you can see here: https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 [2] > --- > Z powa?aniem / Regards > MARIUSZ KRZACZKOWSKI > _Director of Product Development_ > M: +48 884-998-123 [3] > E: m.krzaczkowski at yetiforce.com > ------------------------- > > We created an innovative open source project called YetiForceCRM. You can test it here [4], download [5] it for free or read its documentation [6]. Follow us on Twitter [7] to get real-time info about new functionalities and articles. > > W dniu 2015-10-13 09:50, socialboostdk napisa?(a): > > Hi there, > > It looks like there is no LDAP integration in vTiger? > > I found this featuring a migration from 5.4 to 6.0: https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 [8] > > I also found this instruction (translated to english by Chrome): http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ [9] > > Does anyone here have any experiences with it? I'd preferrably be using vTiger 6.3 :-) > > Thanks, > Chris > _______________________________________________ > http://www.vtiger.com/ [10] > _______________________________________________ > http://www.vtiger.com/ [10] _______________________________________________ http://www.vtiger.com/ [10] Links: ------ [1] https://github.com/YetiForceCompany/YetiForceCRM/blob/master/modules/Users/Users.php#L333 [2] https://gitdeveloper.yetiforce.com/index.php?module=Users&view=Auth&parent=Settings&block=1&fieldid=85 [3] tel:%2B48%20884-998-123 [4] https://test.yetiforce.com/ [5] https://github.com/YetiForceCompany/YetiForceCRM [6] https://yetiforce.com/en/documentation.html [7] https://twitter.com/YetiForceEN [8] https://discussions.vtiger.com/index.php?p=/discussion/168752/vtiger-crm-6-0-rc-ldapad-auth/p1 [9] http://adminberlin.de/vtiger-crm-6-active-directory-authentication/ [10] http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From 1250572980 at qq.com Wed Oct 14 08:39:52 2015 From: 1250572980 at qq.com (=?gb18030?B?c3Vubnk=?=) Date: Wed, 14 Oct 2015 16:39:52 +0800 Subject: [Vtigercrm-developers] how to set SharedCalendar Message-ID: I have set to public: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 436F33EE at 33D62E37.D8141E56.png Type: application/octet-stream Size: 7197 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 316E460E at 33D62E37.D8141E56.png Type: application/octet-stream Size: 23972 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 2F65460F at 33D62E37.D8141E56.png Type: application/octet-stream Size: 20563 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: QQ??20151014163549.png Type: application/octet-stream Size: 23972 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: QQ??20151014163620.png Type: application/octet-stream Size: 20563 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: QQ??20151014163928.png Type: application/octet-stream Size: 7197 bytes Desc: not available URL: From simonetravaglini at gmail.com Wed Oct 14 12:02:21 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Wed, 14 Oct 2015 14:02:21 +0200 Subject: [Vtigercrm-developers] how to set SharedCalendar In-Reply-To: References: Message-ID: Hi, TODO are not shown in shared calendar. It's normal behaviour. 2015-10-14 10:39 GMT+02:00 sunny <1250572980 at qq.com>: > I have set to public: > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 436F33EE at 33D62E37.D8141E56.png Type: application/octet-stream Size: 7197 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 316E460E at 33D62E37.D8141E56.png Type: application/octet-stream Size: 23972 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 2F65460F at 33D62E37.D8141E56.png Type: application/octet-stream Size: 20563 bytes Desc: not available URL: From a.mahoutchian at setuda.ir Wed Oct 14 12:19:52 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Wed, 14 Oct 2015 05:19:52 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> Message-ID: <1444825192960-17659.post@n4.nabble.com> extentions_custom.conf included in extentions.conf and is : [from-internal-custom] exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for outgoing with more than 5 digits } [from-pstn-custom] exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for incoming with more than 5 digits } -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17659.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From lajeeshk at gmail.com Wed Oct 14 13:27:11 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 14 Oct 2015 18:57:11 +0530 Subject: [Vtigercrm-developers] list view send email bug Message-ID: There is a bug in vtiger send email the bug is in query generated using list view query generator can reproduce this issue like this create a filter in leads with at least one condition(for ex:created time > 2014) while we are in this filter search leadstatus = cold or anything from top searchbox select all listed result (clicking select all is mandatory even if these only one result) then click send mail, then it will give you a mysql error. enable peardatabase loging to see the error query generated is SELECT vtiger_leaddetails.company, vtiger_leaddetails.leadstatus, vtiger_leadaddress.city, vtiger_leadaddress.state, vtiger_leaddetails.lastname, vtiger_leadaddress.phone, vtiger_leaddetails.email, vtiger_leadaddress.mobile, vtiger_leadscf.cf_861, vtiger_leadscf.cf_910, vtiger_leaddetails.leadid FROM vtiger_leaddetails INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = vtiger_crmentity.crmid INNER JOIN vtiger_leadaddress ON vtiger_leaddetails.leadid = vtiger_leadaddress.leadaddressid INNER JOIN vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid WHERE vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( vtiger_leaddetails.leadsource = 'Band List 2015') and ( vtiger_crmentity.createdtime > '2014-12-15 18:29:58') )) (( vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 and the error is You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(( vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 ' at line 1 Its4you emailmaker also has error due to this bug Regards, Lajeesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From sshhocckk at gmail.com Wed Oct 14 13:39:56 2015 From: sshhocckk at gmail.com (PlaymaN Tepes) Date: Wed, 14 Oct 2015 15:39:56 +0200 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing Message-ID: Hi, There is somewhere some book, documentation, guide... about this? Im very lost trying to setup users permissions because there are a lot of possibilities and Im worried about possible conflicts. Thanks a lot. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Wed Oct 14 13:48:01 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 14 Oct 2015 19:18:01 +0530 Subject: [Vtigercrm-developers] list view send email bug In-Reply-To: References: Message-ID: this function is making this bug private function makeGroupSqlReplacements($fieldSqlList, $groupSql) { echo "
";
print_r($fieldSqlList);//echo $groupSql;
$pos = 0;
$nextOffset = 0;
foreach ($fieldSqlList as $index => $fieldSql) {
$pos = strpos($groupSql, $index.'', $nextOffset);
if($pos !== false) {
$beforeStr = substr($groupSql,0,$pos);echo $beforeStr."
"; $afterStr = substr($groupSql, $pos + strlen($index)); $nextOffset = strlen($beforeStr.$fieldSql); $groupSql = $beforeStr.$fieldSql.$afterStr; } }echo $groupSql."
"; return $groupSql; } Regards, Lajeesh On Wed, Oct 14, 2015 at 6:57 PM, lajeesh k wrote: > There is a bug in vtiger send email > the bug is in query generated using list view query generator > > can reproduce this issue like this > > create a filter in leads with at least one condition(for ex:created time > > 2014) > while we are in this filter search leadstatus = cold or anything from top > searchbox > select all listed result (clicking select all is mandatory even if these > only one result) > then click send mail, then it will give you a mysql error. enable > peardatabase loging > to see the error > > > query generated is > > SELECT vtiger_leaddetails.company, vtiger_leaddetails.leadstatus, > vtiger_leadaddress.city, vtiger_leadaddress.state, > vtiger_leaddetails.lastname, vtiger_leadaddress.phone, > vtiger_leaddetails.email, vtiger_leadaddress.mobile, vtiger_leadscf.cf_861, > vtiger_leadscf.cf_910, vtiger_leaddetails.leadid FROM vtiger_leaddetails > INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = > vtiger_crmentity.crmid INNER JOIN vtiger_leadaddress ON > vtiger_leaddetails.leadid = vtiger_leadaddress.leadaddressid INNER JOIN > vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid WHERE > vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( > vtiger_leaddetails.leadsource = 'Band List 2015') and ( > vtiger_crmentity.createdtime > '2014-12-15 18:29:58') )) (( > vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 > > > and the error is > > You have an error in your SQL syntax; check the manual that corresponds to > your MySQL server version for the right syntax to use near '(( > vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 > ' at line 1 > > > Its4you emailmaker also has error due to this bug > > Regards, > Lajeesh > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Wed Oct 14 14:06:09 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Wed, 14 Oct 2015 16:06:09 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1444825192960-17659.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> Message-ID: Where is from-trunk context? 2015-10-14 14:19 GMT+02:00 mahoutchian : > extentions_custom.conf included in extentions.conf and is : > > [from-internal-custom] > > exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for outgoing with more > than 5 digits } > > [from-pstn-custom] > exten => _XXXX.,1,Agi(agi://0.0.0.0/incoming.agi) { for incoming with more > than 5 digits } > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17659.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Wed Oct 14 14:38:29 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Wed, 14 Oct 2015 16:38:29 +0200 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. In-Reply-To: References: Message-ID: Guys, no ideas? 2015-10-13 17:40 GMT+02:00 Michele Mastropieri < michele.mastropieri at gmail.com>: > Hi to all, > > if I answer to an incoming call and thus I transfer it to other extension, > the module store information about the call but it keep only information > about pre-trasfer. > > Let me explain better with an example. > > 1. Incoming call is answered by extension num 101. > 2. 101 transfer call to 102 extension. > 3. After 10 minutes 102 hung up. > 4. Into record list I have only 1 record: the initial conversation between > 101 and external customer. I lost the information about the entire > conversation that is 10minutes call. > > How solve it? > > -- > > ------------------------------ > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Wed Oct 14 14:38:34 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Wed, 14 Oct 2015 20:08:34 +0530 Subject: [Vtigercrm-developers] list view send email bug In-Reply-To: References: Message-ID: issue is before calling above function groupInfo value is no correct and the groupInfo is created from addCondition function Regards, Lajeesh On Wed, Oct 14, 2015 at 7:18 PM, lajeesh k wrote: > this function is making this bug > > private function makeGroupSqlReplacements($fieldSqlList, $groupSql) { > echo "
";
> print_r($fieldSqlList);//echo $groupSql;
> $pos = 0;
> $nextOffset = 0;
> foreach ($fieldSqlList as $index => $fieldSql) {
> $pos = strpos($groupSql, $index.'', $nextOffset);
> if($pos !== false) {
> $beforeStr = substr($groupSql,0,$pos);echo $beforeStr."
"; > $afterStr = substr($groupSql, $pos + strlen($index)); > $nextOffset = strlen($beforeStr.$fieldSql); > $groupSql = $beforeStr.$fieldSql.$afterStr; > } > }echo $groupSql."
"; > return $groupSql; > } > > > Regards, > Lajeesh > > On Wed, Oct 14, 2015 at 6:57 PM, lajeesh k wrote: > >> There is a bug in vtiger send email >> the bug is in query generated using list view query generator >> >> can reproduce this issue like this >> >> create a filter in leads with at least one condition(for ex:created time >> > 2014) >> while we are in this filter search leadstatus = cold or anything from top >> searchbox >> select all listed result (clicking select all is mandatory even if these >> only one result) >> then click send mail, then it will give you a mysql error. enable >> peardatabase loging >> to see the error >> >> >> query generated is >> >> SELECT vtiger_leaddetails.company, vtiger_leaddetails.leadstatus, >> vtiger_leadaddress.city, vtiger_leadaddress.state, >> vtiger_leaddetails.lastname, vtiger_leadaddress.phone, >> vtiger_leaddetails.email, vtiger_leadaddress.mobile, vtiger_leadscf.cf_861, >> vtiger_leadscf.cf_910, vtiger_leaddetails.leadid FROM vtiger_leaddetails >> INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = >> vtiger_crmentity.crmid INNER JOIN vtiger_leadaddress ON >> vtiger_leaddetails.leadid = vtiger_leadaddress.leadaddressid INNER JOIN >> vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid WHERE >> vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( >> vtiger_leaddetails.leadsource = 'Band List 2015') and ( >> vtiger_crmentity.createdtime > '2014-12-15 18:29:58') )) (( >> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >> >> >> and the error is >> >> You have an error in your SQL syntax; check the manual that corresponds >> to your MySQL server version for the right syntax to use near '(( >> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >> ' at line 1 >> >> >> Its4you emailmaker also has error due to this bug >> >> Regards, >> Lajeesh >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at theclearsource.com Wed Oct 14 15:09:29 2015 From: alex at theclearsource.com (Alex Martin) Date: Wed, 14 Oct 2015 15:09:29 +0000 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. In-Reply-To: References: Message-ID: I?m going to test this on one of our systems later today to see if I can see whats happening. I?ll get back to you Alex From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Michele Mastropieri Sent: Wednesday, October 14, 2015 10:38 AM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] PBX Manager - Record calls transfers. Guys, no ideas? 2015-10-13 17:40 GMT+02:00 Michele Mastropieri >: Hi to all, if I answer to an incoming call and thus I transfer it to other extension, the module store information about the call but it keep only information about pre-trasfer. Let me explain better with an example. 1. Incoming call is answered by extension num 101. 2. 101 transfer call to 102 extension. 3. After 10 minutes 102 hung up. 4. Into record list I have only 1 record: the initial conversation between 101 and external customer. I lost the information about the entire conversation that is 10minutes call. How solve it? -- ________________________________ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -- ________________________________ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Wed Oct 14 15:16:30 2015 From: alanslists at gmail.com (Alan Lord) Date: Wed, 14 Oct 2015 16:16:30 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... Message-ID: This has failed on several migrations and I am not quite sure I get what it is supposed to be doing... This code is from 540_to_600RC.php: > //Calendar and Events module clean up > $calendarTabId = getTabid('Calendar'); > $eventTabId = getTabid('Events'); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel ="LBL_DESCRIPTION_INFORMATION" WHERE blockid=20',array()); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype=1 WHERE fieldname="location" AND tabid = ?', array($calendarTabId)); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype=1 WHERE fieldname="visibility" AND tabid = ?', array($eventTabId)); > > $eventBlockId = getBlockId($eventTabId, 'LBL_EVENT_INFORMATION'); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? WHERE block = 41', array($eventBlockId)); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = "LBL_REMINDER_INFORMATION", show_title = 0 WHERE blockid = 40',array()); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = "LBL_DESCRIPTION_INFORMATION", show_title = 0 WHERE blockid = 41',array()); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = 41 WHERE fieldname = "description" AND tabid = ?',array($eventTabId)); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? WHERE fieldname = "contact_id" AND tabid = ?', array($eventBlockId, $eventTabId)); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype = 3 WHERE fieldname = ? AND tabid = ?', array('notime', $eventTabId)); > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype = 3 WHERE fieldname = ? AND tabid = ?', array('duration_hours', $eventTabId)); Note the hardcoded Block IDs in here "40" and "41". On some systems (which came from 5.3.0 or earlier) this part of the process fails because the hardcoded Block IDs are not what is expected. Block ID 40 is actually for tabid 15 (Faq) and has a label of 'LBL_COMMENT_INFORMATION'. Block ID 41 is is for tabid 16 (Events) and has a label of 'LBL_EVENT_INFORMATION'. So this line: >> Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? WHERE block = 41', array($eventBlockId)); Does nothing at all. This line: >> Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = "LBL_REMINDER_INFORMATION", show_title = 0 WHERE blockid = 40',array()); Changes the Comment Information block of the FAQ module to be the Reminder Information block (but without changing the tab??? The end result of this little part of code is you have Calendar/Event fields which are tied to invalid or invisible blocks. Then I get confused and end up manually fixing the Calendar fields after the migration has completed.. Al From michele.mastropieri at gmail.com Wed Oct 14 15:19:01 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Wed, 14 Oct 2015 17:19:01 +0200 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. In-Reply-To: References: Message-ID: Thanks man! 2015-10-14 17:09 GMT+02:00 Alex Martin : > I?m going to test this on one of our systems later today to see if I can > see whats happening. I?ll get back to you > > > > Alex > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Michele > Mastropieri > *Sent:* Wednesday, October 14, 2015 10:38 AM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] PBX Manager - Record calls > transfers. > > > > Guys, no ideas? > > > > 2015-10-13 17:40 GMT+02:00 Michele Mastropieri < > michele.mastropieri at gmail.com>: > > Hi to all, > > > > if I answer to an incoming call and thus I transfer it to other extension, > the module store information about the call but it keep only information > about pre-trasfer. > > > > Let me explain better with an example. > > > > 1. Incoming call is answered by extension num 101. > > 2. 101 transfer call to 102 extension. > > 3. After 10 minutes 102 hung up. > > 4. Into record list I have only 1 record: the initial conversation between > 101 and external customer. I lost the information about the entire > conversation that is 10minutes call. > > > > How solve it? > > > > -- > > ------------------------------ > > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > > > > -- > > ------------------------------ > > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Wed Oct 14 15:27:22 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Wed, 14 Oct 2015 22:27:22 +0700 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: Book hours for testing. Good luck :-) Sss On Wed, Oct 14, 2015 at 8:39 PM, PlaymaN Tepes wrote: > Hi, > > There is somewhere some book, documentation, guide... about this? > > Im very lost trying to setup users permissions because there are a lot of > possibilities and Im worried about possible conflicts. > > Thanks a lot. > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Wed Oct 14 15:30:17 2015 From: alanslists at gmail.com (Alan Lord) Date: Wed, 14 Oct 2015 16:30:17 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 14/10/15 16:16, Alan Lord wrote: > This has failed on several migrations and I am not quite sure I get what > it is supposed to be doing... Just to back-up what I am talking about, check out the two screenshots of the vtiger_blocks table attached. One is from a vtiger 5.3.0 system (the 4 blocks with no labels) and the other is from a 5.4.0 system. Al -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2015-10-14 16:27:45.png Type: image/png Size: 70009 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2015-10-14 16:26:58.png Type: image/png Size: 84672 bytes Desc: not available URL: From alanslists at gmail.com Wed Oct 14 15:33:04 2015 From: alanslists at gmail.com (Alan Lord) Date: Wed, 14 Oct 2015 16:33:04 +0100 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: On 14/10/15 14:39, PlaymaN Tepes wrote: > Hi, > > There is somewhere some book, documentation, guide... about this? I assume you have looked at the wiki? https://wiki.vtiger.com/vtiger6/index.php/User_Administration (For On-Demand but it's pretty close to the Open Source system too) The old wiki: https://wiki.vtiger.com/index.php/Users_And_Access_Management HTH Al From a.mahoutchian at setuda.ir Wed Oct 14 22:15:08 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Wed, 14 Oct 2015 15:15:08 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> Message-ID: <1444860908978-17672.post@n4.nabble.com> file extentions.conf is : ; from-trunk: ; ; Context is really just an aliax of from-pstn ; [from-trunk] include => from-pstn ; Entry context for calls from the outside world to hit FreePBX [from-pstn] include => from-pstn-custom ; create this context in extensions_custom.conf to include customizations include => ext-did include => ext-did-post-custom include => from-did-direct include => ext-did-catchall ; THIS MUST COME AFTER ext-did -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17672.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From info at its4you.sk Thu Oct 15 06:54:54 2015 From: info at its4you.sk (IT-Solutions4You) Date: Thu, 15 Oct 2015 08:54:54 +0200 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: See Discusions on: https://discussions.vtiger.com/ There is "vtiger CRM manual for v6.3.0" https://discussions.vtiger.com/index.php?p=/discussion/177973/vtiger-crm-manual-for-v6-3-0 Matus ITS4You D?a 14. 10. 2015 o 15:39 PlaymaN Tepes nap?sal(a): > Hi, > > There is somewhere some book, documentation, guide... about this? > > Im very lost trying to setup users permissions because there are a lot > of possibilities and Im worried about possible conflicts. > > Thanks a lot. > > > _______________________________________________ > http://www.vtiger.com/ > From uma.s at vtiger.com Thu Oct 15 07:17:31 2015 From: uma.s at vtiger.com (Uma S) Date: Thu, 15 Oct 2015 12:47:31 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Hi Alan, We have checked your query against vtiger 530 and vtiger 540 database. Where block-label value for block-id 20, 40 and 41 is empty. So we are depending on block-id values directly in query for operations. We had found a way to resolve this issue where by passing block-id with module instance we can generate block instance, which can be used during query operations. I will update this query using block object here in trac ticket, which should be manually updated by user in migration script. On Wed, Oct 14, 2015 at 8:46 PM, Alan Lord wrote: > This has failed on several migrations and I am not quite sure I get what > it is supposed to be doing... > > This code is from 540_to_600RC.php: > > //Calendar and Events module clean up >> > > $calendarTabId = getTabid('Calendar'); >> > > $eventTabId = getTabid('Events'); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel >> ="LBL_DESCRIPTION_INFORMATION" WHERE blockid=20',array()); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype=1 >> WHERE fieldname="location" AND tabid = ?', array($calendarTabId)); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype=1 >> WHERE fieldname="visibility" AND tabid = ?', array($eventTabId)); >> > > >> > $eventBlockId = getBlockId($eventTabId, 'LBL_EVENT_INFORMATION'); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? >> WHERE block = 41', array($eventBlockId)); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = >> "LBL_REMINDER_INFORMATION", show_title = 0 WHERE blockid = 40',array()); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = >> "LBL_DESCRIPTION_INFORMATION", show_title = 0 WHERE blockid = 41',array()); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = 41 >> WHERE fieldname = "description" AND tabid = ?',array($eventTabId)); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? >> WHERE fieldname = "contact_id" AND tabid = ?', array($eventBlockId, >> $eventTabId)); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype = >> 3 WHERE fieldname = ? AND tabid = ?', array('notime', $eventTabId)); >> > > Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET displaytype = >> 3 WHERE fieldname = ? AND tabid = ?', array('duration_hours', $eventTabId)); >> > > Note the hardcoded Block IDs in here "40" and "41". > > On some systems (which came from 5.3.0 or earlier) this part of the > process fails because the hardcoded Block IDs are not what is expected. > > Block ID 40 is actually for tabid 15 (Faq) and has a label of > 'LBL_COMMENT_INFORMATION'. > > Block ID 41 is is for tabid 16 (Events) and has a label of > 'LBL_EVENT_INFORMATION'. > > So this line: > >> Migration_Index_View::ExecuteQuery('UPDATE vtiger_field SET block = ? >>> WHERE block = 41', array($eventBlockId)); >>> >> Does nothing at all. > > This line: > >> Migration_Index_View::ExecuteQuery('UPDATE vtiger_blocks SET blocklabel = >>> "LBL_REMINDER_INFORMATION", show_title = 0 WHERE blockid = 40',array()); >>> >> Changes the Comment Information block of the FAQ module to be the > Reminder Information block (but without changing the tab??? > > The end result of this little part of code is you have Calendar/Event > fields which are tied to invalid or invisible blocks. > > Then I get confused and end up manually fixing the Calendar fields after > the migration has completed.. > > Al > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 07:51:00 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 08:51:00 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 15/10/15 08:17, Uma S wrote: > Hi Alan, > > We have checked your query against vtiger 530 and vtiger 540 database. > Where block-label value for block-id 20, 40 and 41 is empty. So we are > depending on block-id values directly in query for operations. > > We had found a way to resolve this issue where by passing block-id with > module instance we can generate block instance, which can be used during > query operations. I will update this query using block object here in > trac ticket, which > should be manually updated by user in migration script. Thanks Uma, There are lots of issues with the migration scripts, many of which I have reported on here over the past year or more. This is the first one that anyone from vtiger seems to have been interested in addressing... Alan From lajeeshk at gmail.com Thu Oct 15 08:08:17 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Thu, 15 Oct 2015 13:38:17 +0530 Subject: [Vtigercrm-developers] list view send email bug In-Reply-To: References: Message-ID: fixed the issue The reason is missing "AND" operator in query modules/CustomView/models/Record.php around line 187 $searchParams = $this->get('search_params'); if(empty($searchParams)) { $searchParams = array(); } //added by lajeesh to fix email issue $glue = ""; if(count($queryGenerator->getWhereFields()) > 0 && (count($searchParams[0])) > 0) { $glue = QueryGenerator::$AND; } $transformedSearchParams = Vtiger_Util_Helper::transferListSearchParamsToFilterCondition($searchParams, $moduleModel); $queryGenerator->parseAdvFilterList($transformedSearchParams,$glue); Regards, Lajeesh On Wed, Oct 14, 2015 at 8:08 PM, lajeesh k wrote: > issue is before calling above function > groupInfo value is no correct > and the groupInfo is created from addCondition function > > > > > Regards, > Lajeesh > > On Wed, Oct 14, 2015 at 7:18 PM, lajeesh k wrote: > >> this function is making this bug >> >> private function makeGroupSqlReplacements($fieldSqlList, $groupSql) { >> echo "
";
>> print_r($fieldSqlList);//echo $groupSql;
>> $pos = 0;
>> $nextOffset = 0;
>> foreach ($fieldSqlList as $index => $fieldSql) {
>> $pos = strpos($groupSql, $index.'', $nextOffset);
>> if($pos !== false) {
>> $beforeStr = substr($groupSql,0,$pos);echo $beforeStr."
"; >> $afterStr = substr($groupSql, $pos + strlen($index)); >> $nextOffset = strlen($beforeStr.$fieldSql); >> $groupSql = $beforeStr.$fieldSql.$afterStr; >> } >> }echo $groupSql."
"; >> return $groupSql; >> } >> >> >> Regards, >> Lajeesh >> >> On Wed, Oct 14, 2015 at 6:57 PM, lajeesh k wrote: >> >>> There is a bug in vtiger send email >>> the bug is in query generated using list view query generator >>> >>> can reproduce this issue like this >>> >>> create a filter in leads with at least one condition(for ex:created time >>> > 2014) >>> while we are in this filter search leadstatus = cold or anything from >>> top searchbox >>> select all listed result (clicking select all is mandatory even if these >>> only one result) >>> then click send mail, then it will give you a mysql error. enable >>> peardatabase loging >>> to see the error >>> >>> >>> query generated is >>> >>> SELECT vtiger_leaddetails.company, vtiger_leaddetails.leadstatus, >>> vtiger_leadaddress.city, vtiger_leadaddress.state, >>> vtiger_leaddetails.lastname, vtiger_leadaddress.phone, >>> vtiger_leaddetails.email, vtiger_leadaddress.mobile, vtiger_leadscf.cf_861, >>> vtiger_leadscf.cf_910, vtiger_leaddetails.leadid FROM vtiger_leaddetails >>> INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = >>> vtiger_crmentity.crmid INNER JOIN vtiger_leadaddress ON >>> vtiger_leaddetails.leadid = vtiger_leadaddress.leadaddressid INNER JOIN >>> vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid WHERE >>> vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( >>> vtiger_leaddetails.leadsource = 'Band List 2015') and ( >>> vtiger_crmentity.createdtime > '2014-12-15 18:29:58') )) (( >>> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >>> >>> >>> and the error is >>> >>> You have an error in your SQL syntax; check the manual that corresponds >>> to your MySQL server version for the right syntax to use near '(( >>> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >>> ' at line 1 >>> >>> >>> Its4you emailmaker also has error due to this bug >>> >>> Regards, >>> Lajeesh >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 08:09:15 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 09:09:15 +0100 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: References: Message-ID: vtiger developers... Can you please confirm what is going to happen next week? On the 25th October in the UK we switch from British Summer Time back to GMT (-1 hour). From the user's perspective what is going to happen to all the existing calendar entries stored in vtiger? Will they be different to what they were showing on the 24th October? For example, say I create an event in my Calendar now for a meeting I have booked on the 27th October at 10:00am. From Manu's description it sounds to me like when I log into my vtiger on Monday the 26th, it is going to tell me my meeting is at 9:00am? Or does the user's timezone calculation take into account the local changes in daylight saving time? Thanks Alan On 06/10/15 15:34, Alan Lord wrote: > On 06/10/15 15:15, Manu urs wrote: >> Hi >> >> On default every Time period will be saving to database in the UTC >> format and it will be render back to UI according to the user timezone. >> So after changing the Timezone all time values in the CRM will be >> displayed according to the new format. > > Say what? > > Do you mean to say when daylight saving time comes into effect at the > end of this month every calendar entries are going to show a different > time than they did the day before? > > That cannot be right. From preexo at googlemail.com Thu Oct 15 08:02:58 2015 From: preexo at googlemail.com (Preexo) Date: Thu, 15 Oct 2015 01:02:58 -0700 (PDT) Subject: [Vtigercrm-developers] individual taxes not working In-Reply-To: <1444732354091-17642.post@n4.nabble.com> References: <1444732354091-17642.post@n4.nabble.com> Message-ID: <1444896178735-17678.post@n4.nabble.com> no one using this feature, no one having the same trouble? What am I doing wrong? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642p17678.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From simonetravaglini at gmail.com Thu Oct 15 08:17:03 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Thu, 15 Oct 2015 10:17:03 +0200 Subject: [Vtigercrm-developers] individual taxes not working In-Reply-To: <1444732354091-17642.post@n4.nabble.com> References: <1444732354091-17642.post@n4.nabble.com> Message-ID: did you check if same error in demo.vtiger.com? 2015-10-13 12:32 GMT+02:00 Preexo : > When I switch to individual taxes and click on the tax link at a position, > it > comes up with a popup, with a missing translation and a error message, > please see in the screenshot uploaded at nabble: > < > http://vtiger-crm.2324883.n4.nabble.com/file/n17642/2015-10-13_18_39_53-Quotes.png > > > > What can I do about this, how is it supposed to work, where can I find any > documentation about the individual taxes feature? > Thanks for any help! > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From lajeeshk at gmail.com Thu Oct 15 08:25:14 2015 From: lajeeshk at gmail.com (lajeesh k) Date: Thu, 15 Oct 2015 13:55:14 +0530 Subject: [Vtigercrm-developers] list view send email bug In-Reply-To: References: Message-ID: created ticket for this issue with bug fix http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8642 Regards, Lajeesh On Thu, Oct 15, 2015 at 1:38 PM, lajeesh k wrote: > fixed the issue > The reason is missing "AND" operator in query > > modules/CustomView/models/Record.php around line 187 > > $searchParams = $this->get('search_params'); > if(empty($searchParams)) { > $searchParams = array(); > } > //added by lajeesh to fix email issue > $glue = ""; > if(count($queryGenerator->getWhereFields()) > 0 && > (count($searchParams[0])) > 0) { > $glue = QueryGenerator::$AND; > } > > $transformedSearchParams = > Vtiger_Util_Helper::transferListSearchParamsToFilterCondition($searchParams, > $moduleModel); > > $queryGenerator->parseAdvFilterList($transformedSearchParams,$glue); > > > > > Regards, > Lajeesh > > On Wed, Oct 14, 2015 at 8:08 PM, lajeesh k wrote: > >> issue is before calling above function >> groupInfo value is no correct >> and the groupInfo is created from addCondition function >> >> >> >> >> Regards, >> Lajeesh >> >> On Wed, Oct 14, 2015 at 7:18 PM, lajeesh k wrote: >> >>> this function is making this bug >>> >>> private function makeGroupSqlReplacements($fieldSqlList, $groupSql) { >>> echo "
";
>>> print_r($fieldSqlList);//echo $groupSql;
>>> $pos = 0;
>>> $nextOffset = 0;
>>> foreach ($fieldSqlList as $index => $fieldSql) {
>>> $pos = strpos($groupSql, $index.'', $nextOffset);
>>> if($pos !== false) {
>>> $beforeStr = substr($groupSql,0,$pos);echo $beforeStr."
"; >>> $afterStr = substr($groupSql, $pos + strlen($index)); >>> $nextOffset = strlen($beforeStr.$fieldSql); >>> $groupSql = $beforeStr.$fieldSql.$afterStr; >>> } >>> }echo $groupSql."
"; >>> return $groupSql; >>> } >>> >>> >>> Regards, >>> Lajeesh >>> >>> On Wed, Oct 14, 2015 at 6:57 PM, lajeesh k wrote: >>> >>>> There is a bug in vtiger send email >>>> the bug is in query generated using list view query generator >>>> >>>> can reproduce this issue like this >>>> >>>> create a filter in leads with at least one condition(for ex:created >>>> time > 2014) >>>> while we are in this filter search leadstatus = cold or anything from >>>> top searchbox >>>> select all listed result (clicking select all is mandatory even if >>>> these only one result) >>>> then click send mail, then it will give you a mysql error. enable >>>> peardatabase loging >>>> to see the error >>>> >>>> >>>> query generated is >>>> >>>> SELECT vtiger_leaddetails.company, vtiger_leaddetails.leadstatus, >>>> vtiger_leadaddress.city, vtiger_leadaddress.state, >>>> vtiger_leaddetails.lastname, vtiger_leadaddress.phone, >>>> vtiger_leaddetails.email, vtiger_leadaddress.mobile, vtiger_leadscf.cf_861, >>>> vtiger_leadscf.cf_910, vtiger_leaddetails.leadid FROM vtiger_leaddetails >>>> INNER JOIN vtiger_crmentity ON vtiger_leaddetails.leadid = >>>> vtiger_crmentity.crmid INNER JOIN vtiger_leadaddress ON >>>> vtiger_leaddetails.leadid = vtiger_leadaddress.leadaddressid INNER JOIN >>>> vtiger_leadscf ON vtiger_leaddetails.leadid = vtiger_leadscf.leadid WHERE >>>> vtiger_crmentity.deleted=0 and vtiger_leaddetails.converted=0 AND ( (( >>>> vtiger_leaddetails.leadsource = 'Band List 2015') and ( >>>> vtiger_crmentity.createdtime > '2014-12-15 18:29:58') )) (( >>>> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >>>> >>>> >>>> and the error is >>>> >>>> You have an error in your SQL syntax; check the manual that corresponds >>>> to your MySQL server version for the right syntax to use near '(( >>>> vtiger_leaddetails.leadstatus = 'Cold') ) AND vtiger_leaddetails.leadid > 0 >>>> ' at line 1 >>>> >>>> >>>> Its4you emailmaker also has error due to this bug >>>> >>>> Regards, >>>> Lajeesh >>>> >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sardoj at gmail.com Thu Oct 15 08:26:50 2015 From: sardoj at gmail.com (Jonathan Sardo) Date: Thu, 15 Oct 2015 10:26:50 +0200 Subject: [Vtigercrm-developers] individual taxes not working In-Reply-To: References: <1444732354091-17642.post@n4.nabble.com> Message-ID: Hello, To activate the field to set up the vat rate, you have to activate begore the vat on the related products. Regards, Jonathan SARDO 2015-10-15 10:17 GMT+02:00 Simone Travaglini : > did you check if same error in demo.vtiger.com? > > 2015-10-13 12:32 GMT+02:00 Preexo : > >> When I switch to individual taxes and click on the tax link at a >> position, it >> comes up with a popup, with a missing translation and a error message, >> please see in the screenshot uploaded at nabble: >> < >> http://vtiger-crm.2324883.n4.nabble.com/file/n17642/2015-10-13_18_39_53-Quotes.png >> > >> >> What can I do about this, how is it supposed to work, where can I find any >> documentation about the individual taxes feature? >> Thanks for any help! >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Thu Oct 15 08:46:05 2015 From: uma.s at vtiger.com (Uma S) Date: Thu, 15 Oct 2015 14:16:05 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Thank you! Alan. I have updated the trac with changes made to rely on block object to perform modifications with respect to blocks instead of hard-coded values. Please do update me for any changes. On Thu, Oct 15, 2015 at 1:21 PM, Alan Lord wrote: > On 15/10/15 08:17, Uma S wrote: > >> Hi Alan, >> >> We have checked your query against vtiger 530 and vtiger 540 database. >> Where block-label value for block-id 20, 40 and 41 is empty. So we are >> depending on block-id values directly in query for operations. >> >> We had found a way to resolve this issue where by passing block-id with >> module instance we can generate block instance, which can be used during >> query operations. I will update this query using block object here in >> trac ticket, which >> should be manually updated by user in migration script. >> > > Thanks Uma, > > There are lots of issues with the migration scripts, many of which I have > reported on here over the past year or more. This is the first one that > anyone from vtiger seems to have been interested in addressing... > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 09:01:27 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 10:01:27 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 15/10/15 09:46, Uma S wrote: > Thank you! Alan. > > I have updated the trac > with changes made > to rely on block object to perform modifications with respect to blocks > instead of hard-coded values. Please do update me for any changes. I don't understand... You have included these two lines: > $reminderBlock = Vtiger_Block_Model::getInstance(40, $eventInstance); > $descriptionBlock = Vtiger_Block_Model::getInstance(41, $eventInstance); Yet, in several of our installations we have migrated, Block ID 40 is the 'LBL_COMMENT_INFORMATION' for the FAQ module (so I don't think this will return anything). Block ID 41 is already 'LBL_EVENT_INFORMATION' for the Events module. So I do not see how this has changed anything? Did you look at the two screenshots I attached on the earlier message? Alan From michele.mastropieri at gmail.com Thu Oct 15 09:31:45 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Thu, 15 Oct 2015 11:31:45 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1444860908978-17672.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> Message-ID: Try to add agi script into from-trunk context 2015-10-15 0:15 GMT+02:00 mahoutchian : > file extentions.conf is : > > ; from-trunk: > ; > ; Context is really just an aliax of from-pstn > ; > [from-trunk] > include => from-pstn > > ; Entry context for calls from the outside world to hit FreePBX > [from-pstn] > include => from-pstn-custom ; create this context in > extensions_custom.conf > to include customizations > include => ext-did > include => ext-did-post-custom > include => from-did-direct > include => ext-did-catchall ; THIS MUST COME AFTER ext-did > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17672.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Thu Oct 15 10:03:39 2015 From: uma.s at vtiger.com (Uma S) Date: Thu, 15 Oct 2015 15:33:39 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Alan, I have made the changes according to the clean installation database of vtiger 530 and 540 database, where block-id 40 and 41 is related to Events module. I hope the changes of Block ID 40 pointing to "LBL_COMMENT_INFORMATION" might be because of customer instance changes? Initial clean database doesn't point reference to FAQ module at block-id 40. On Thu, Oct 15, 2015 at 2:31 PM, Alan Lord wrote: > On 15/10/15 09:46, Uma S wrote: > >> Thank you! Alan. >> >> I have updated the trac >> with changes made >> to rely on block object to perform modifications with respect to blocks >> instead of hard-coded values. Please do update me for any changes. >> > > I don't understand... > > You have included these two lines: > > $reminderBlock = Vtiger_Block_Model::getInstance(40, $eventInstance); >> $descriptionBlock = Vtiger_Block_Model::getInstance(41, $eventInstance); >> > > Yet, in several of our installations we have migrated, Block ID 40 is the > 'LBL_COMMENT_INFORMATION' for the FAQ module (so I don't think this will > return anything). > > Block ID 41 is already 'LBL_EVENT_INFORMATION' for the Events module. > > So I do not see how this has changed anything? Did you look at the two > screenshots I attached on the earlier message? > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 10:13:17 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 11:13:17 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 15/10/15 11:03, Uma S wrote: > > I hope the changes of Block ID 40 pointing to "LBL_COMMENT_INFORMATION" > might be because of customer instance changes? Initial clean database > doesn't point reference to FAQ module at block-id 40. No. This is certainly not due to a particular customers' instance. I have seen this problem occur in at least 3 or 4 different customers' systems. And they are *very* different customers with no relationship to each other. If you search this list I think you will see others have experienced the problem that this part of the migration creates - namely after a migration the "Reminder Details" block is not displayed in the Add Event form... (See attached) Alan -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2015-10-15 11:09:50.png Type: image/png Size: 52333 bytes Desc: not available URL: From sshhocckk at gmail.com Thu Oct 15 10:50:02 2015 From: sshhocckk at gmail.com (PlaymaN Tepes) Date: Thu, 15 Oct 2015 12:50:02 +0200 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: Thanks for this links but all info is outdated. By the way I have bought the book of hours of testing... I think is the only way. Thanks. 2015-10-14 17:33 GMT+02:00 Alan Lord : > On 14/10/15 14:39, PlaymaN Tepes wrote: > >> Hi, >> >> There is somewhere some book, documentation, guide... about this? >> > > I assume you have looked at the wiki? > > https://wiki.vtiger.com/vtiger6/index.php/User_Administration (For > On-Demand but it's pretty close to the Open Source system too) > > The old wiki: > > https://wiki.vtiger.com/index.php/Users_And_Access_Management > > HTH > > Al > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 11:11:06 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 12:11:06 +0100 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: On 15/10/15 11:50, PlaymaN Tepes wrote: > Thanks for this links but all info is outdated. Although the "look" of the interface might have changed a bit, very little has changed with regards to how Roles, Sharing Access, Profiles actually work for *ages*. Alan From uma.s at vtiger.com Thu Oct 15 11:48:21 2015 From: uma.s at vtiger.com (Uma S) Date: Thu, 15 Oct 2015 17:18:21 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Thanks! For sharing the details Alan. Will get back with better approach of solving this issue. On Oct 15, 2015 3:48 PM, "Alan Lord" wrote: > On 15/10/15 11:03, Uma S wrote: > >> >> I hope the changes of Block ID 40 pointing to "LBL_COMMENT_INFORMATION" >> might be because of customer instance changes? Initial clean database >> doesn't point reference to FAQ module at block-id 40. >> > > No. This is certainly not due to a particular customers' instance. > > I have seen this problem occur in at least 3 or 4 different customers' > systems. And they are *very* different customers with no relationship to > each other. > > If you search this list I think you will see others have experienced the > problem that this part of the migration creates - namely after a migration > the "Reminder Details" block is not displayed in the Add Event form... (See > attached) > > Alan > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Thu Oct 15 11:50:47 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 12:50:47 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 15/10/15 12:48, Uma S wrote: > Thanks! For sharing the details Alan. > > Will get back with better approach of solving this issue. Presumably you could just get the 2 Block IDs for tab 16 that have no label and order by blockid... Al From ptdesigner at gmail.com Thu Oct 15 12:59:08 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Thu, 15 Oct 2015 13:59:08 +0100 Subject: [Vtigercrm-developers] Bub Workflow repeated conditions Message-ID: <4CAC66B7-A6B0-44E4-A7D7-0ABCD6100986@gmail.com> Hello, I see this for a long time but only now remember to show you. In Tickets workflows, in "Ticket Creation From Portal : Send Email to Record Owner and Contact? in step conditions, there are two repeated conditions: 1= From Portal => is enabled 2= From Portal => is enabled This always happen in new installations since v6.0 and can be verified in official demo. Ticket Created in track http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8643 Sending image for better look Best Regards Manuel -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: example.jpg Type: image/jpeg Size: 61003 bytes Desc: not available URL: From a.mahoutchian at setuda.ir Thu Oct 15 13:37:16 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Thu, 15 Oct 2015 06:37:16 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> Message-ID: <1444916236127-17692.post@n4.nabble.com> no differece after including agi command in from-trunk incoming call popup is ok ( some times not closing !!! ) main problem is in click to call. after click on a number in vtiger, my extention ( ziper ) ringing. after pickup , it dial myself !!!! for example whe i click on number like 09121212022, my extention(2186), is ringing and auto dial 2186 !!! tanx -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17692.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alanslists at gmail.com Thu Oct 15 15:02:18 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 15 Oct 2015 16:02:18 +0100 Subject: [Vtigercrm-developers] Dynamically update "$tab_name" & "$tab_name_index"? In-Reply-To: References: Message-ID: Bump... Dear vtiger developers: On 23/09/15 13:59, Alan Lord wrote: > On 23/09/15 13:09, Alan Lord wrote: >> I'm thinking about ways to add a field to any entity module which >> displays a value from the libertus_geotools geocoder database... > > > >> Is there another way I could achieve this? I want the Administrator to >> be able to add or remove this field on any of their modules as they >> wish. I want them to be able to use this value to be able to find >> records that are either geocoded, or not, using any of their existing, >> or newly created filters. >> >> I _know_ I could do this by adding a new field and column to the module >> itself and then keep the value updated using an Event Handler or >> something but I was just wondering if I could this a bit more >> efficiently? > > Mostly To: vtiger developers > > Would there be any particular problem/reticence with a custom module > adding column to the vtiger_crmentity table...? > > I'm thinking I could add a bool to the crmentity table to indicate if a > record is geocoded or not. And all entity modules already join to this > table. > > So if the Administrator wants to add a field to his Leads module, for > example we have a button in the settings area where he can do this. And > it then points to the vtiger_crmentity.lsisgeocoded column, a bit like > the way the snownerid or creatorid works now. From prasad at vtiger.com Thu Oct 15 15:41:44 2015 From: prasad at vtiger.com (Prasad) Date: Thu, 15 Oct 2015 21:11:44 +0530 Subject: [Vtigercrm-developers] Dynamically update "$tab_name" & "$tab_name_index"? In-Reply-To: References: Message-ID: Letting module touch a table outside its scope gets over-used. So having the constraint is better. Regards, Prasad -- FB I Twit I LIn I Blog I Website On Thu, Oct 15, 2015 at 8:32 PM, Alan Lord wrote: > Bump... > > Dear vtiger developers: > > On 23/09/15 13:59, Alan Lord wrote: > >> On 23/09/15 13:09, Alan Lord wrote: >> >>> I'm thinking about ways to add a field to any entity module which >>> displays a value from the libertus_geotools geocoder database... >>> >> >> >> >> Is there another way I could achieve this? I want the Administrator to >>> be able to add or remove this field on any of their modules as they >>> wish. I want them to be able to use this value to be able to find >>> records that are either geocoded, or not, using any of their existing, >>> or newly created filters. >>> >>> I _know_ I could do this by adding a new field and column to the module >>> itself and then keep the value updated using an Event Handler or >>> something but I was just wondering if I could this a bit more >>> efficiently? >>> >> >> Mostly To: vtiger developers >> >> Would there be any particular problem/reticence with a custom module >> adding column to the vtiger_crmentity table...? >> >> I'm thinking I could add a bool to the crmentity table to indicate if a >> record is geocoded or not. And all entity modules already join to this >> table. >> >> So if the Administrator wants to add a field to his Leads module, for >> example we have a button in the settings area where he can do this. And >> it then points to the vtiger_crmentity.lsisgeocoded column, a bit like >> the way the snownerid or creatorid works now. >> > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Thu Oct 15 16:08:00 2015 From: uma.s at vtiger.com (Uma S) Date: Thu, 15 Oct 2015 21:38:00 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Thanks! For suggestion Alan. On Oct 15, 2015 5:23 PM, "Alan Lord" wrote: > On 15/10/15 12:48, Uma S wrote: > >> Thanks! For sharing the details Alan. >> >> Will get back with better approach of solving this issue. >> > > Presumably you could just get the 2 Block IDs for tab 16 that have no > label and order by blockid... > > Al > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Thu Oct 15 17:56:50 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Thu, 15 Oct 2015 18:56:50 +0100 Subject: [Vtigercrm-developers] Bub Workflow repeated conditions Message-ID: <853314E1-9432-446C-863D-955986CEBE3E@gmail.com> Also have in new installations two duplicated workflows which 2 of them have no tasks Workflow for Events when Send Notification is True Workflow for Events when Send Notification is True and Workflow for Calendar Todos when Send Notification is True Workflow for Calendar Todos when Send Notification is True Regards From richard at tw.co.nz Thu Oct 15 19:18:44 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Fri, 16 Oct 2015 08:18:44 +1300 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: References: Message-ID: <561FFC14.4090403@tw.co.nz> Hi Alan We went through daylight savings changes a couple of weeks back, I have just had a quick look and both events before and after the change are displaying correctly for us. That said, we have a non-standard config.inc.php setting for timezone (localised for NZ) which means I can not guarantee this is working for a standard UTC setup, but things look like they will "just work" for you. On 15/10/15 21:09, Alan Lord wrote: > vtiger developers... > > Can you please confirm what is going to happen next week? > > On the 25th October in the UK we switch from British Summer Time back > to GMT (-1 hour). > > From the user's perspective what is going to happen to all the > existing calendar entries stored in vtiger? Will they be different to > what they were showing on the 24th October? > > For example, say I create an event in my Calendar now for a meeting I > have booked on the 27th October at 10:00am. > > From Manu's description it sounds to me like when I log into my vtiger > on Monday the 26th, it is going to tell me my meeting is at 9:00am? Or > does the user's timezone calculation take into account the local > changes in daylight saving time? > > Thanks > > Alan > > > On 06/10/15 15:34, Alan Lord wrote: >> On 06/10/15 15:15, Manu urs wrote: >>> Hi >>> >>> On default every Time period will be saving to database in the UTC >>> format and it will be render back to UI according to the user >>> timezone. >>> So after changing the Timezone all time values in the CRM will be >>> displayed according to the new format. >> >> Say what? >> >> Do you mean to say when daylight saving time comes into effect at the >> end of this month every calendar entries are going to show a different >> time than they did the day before? >> >> That cannot be right. > > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 From preexo at googlemail.com Fri Oct 16 03:13:09 2015 From: preexo at googlemail.com (Preexo) Date: Thu, 15 Oct 2015 20:13:09 -0700 (PDT) Subject: [Vtigercrm-developers] individual taxes not working In-Reply-To: References: <1444732354091-17642.post@n4.nabble.com> Message-ID: <1444965189671-17699.post@n4.nabble.com> ah, here we go, that was it. we actually deactivated the tax field in the products, that's why no one ever bothered about it. Thanks for the help! -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642p17699.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From preexo at googlemail.com Fri Oct 16 03:45:01 2015 From: preexo at googlemail.com (Preexo) Date: Thu, 15 Oct 2015 20:45:01 -0700 (PDT) Subject: [Vtigercrm-developers] individual taxes not working In-Reply-To: <1444965189671-17699.post@n4.nabble.com> References: <1444732354091-17642.post@n4.nabble.com> <1444965189671-17699.post@n4.nabble.com> Message-ID: <1444967101824-17700.post@n4.nabble.com> Activating the field does not completely solve the issue, each product now needs a tax assigned, in our case default 0... not a completely trivial task with more than 1400 products already in the list. Having different users from different countries using the CRM makes it even more difficult what default to set. The tax engine is not very straight forward, it needs some improvements like country dependency and global default settings, any chance this will be improved sometime soon? the ondemand actually seems to already have a much better tax system, I'm wondering if that is going to be released for the OS version too? Preexo wrote > ah, here we go, that was it. we actually deactivated the tax field in the > products, that's why no one ever bothered about it. > Thanks for the help! -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/individual-taxes-not-working-tp17642p17700.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From ajstharsan at gmail.com Fri Oct 16 04:09:52 2015 From: ajstharsan at gmail.com (Sutharsan Jeganathan) Date: Fri, 16 Oct 2015 09:39:52 +0530 Subject: [Vtigercrm-developers] Multi user assignement Message-ID: Hi Anyone have a good solution of Multi user assignment to entity modules? If you have experience with this "Multi User Assignment" extension from vtiger store please share Thanks Sutharsan Jeganathan -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Fri Oct 16 05:46:25 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 11:16:25 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Hi Alan, I have updated the logic to handle empty block-label for events and calendar module in above mentioned trac ticket. Please do have a look and update me your observations. On Thu, Oct 15, 2015 at 9:38 PM, Uma S wrote: > Thanks! For suggestion Alan. > On Oct 15, 2015 5:23 PM, "Alan Lord" wrote: > >> On 15/10/15 12:48, Uma S wrote: >> >>> Thanks! For sharing the details Alan. >>> >>> Will get back with better approach of solving this issue. >>> >> >> Presumably you could just get the 2 Block IDs for tab 16 that have no >> label and order by blockid... >> >> Al >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 06:27:56 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 07:27:56 +0100 Subject: [Vtigercrm-developers] Repeated event and change of time zone In-Reply-To: <561FFC14.4090403@tw.co.nz> References: <561FFC14.4090403@tw.co.nz> Message-ID: On 15/10/15 20:18, Richard Hills - Technologywise wrote: > > That said, we have a non-standard config.inc.php setting for timezone > (localised for NZ) which means I can not guarantee this is working for a > standard UTC setup, but things look like they will "just work" for you. Thanks Richard. Fingers crossed ;-) Al From alanslists at gmail.com Fri Oct 16 06:40:18 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 07:40:18 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: On 16/10/15 06:46, Uma S wrote: > Hi Alan, > > I have updated the logic to handle empty block-label for events and > calendar module in above mentioned trac > ticket. Please do > have a look and update me your observations. Thanks Uma, That looks better - I will test it as soon as I get chance. Alan From info at its4you.sk Fri Oct 16 07:46:57 2015 From: info at its4you.sk (IT-Solutions4You) Date: Fri, 16 Oct 2015 09:46:57 +0200 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: + Another bug: in vtiger6.zip \modules\Migration\schema\540_to_600RC.php line 806 $label = $labelInfo[$row['crmid']]; should by $label = decode_html($labelInfo[$row['crmid']]); In many EU country (German, France, Italy, Slovak, Chzech, Polands, Hungary, .....) we use special chars so its necessary use decode_html() function everywhere. Is there any interface where can we track all issues with migration and add our solutions? We have done many migrations from 5.x to 6.x and each migration goes wrong. We also saw many wrong 6.x installations, the clients reports to us isseu with our extensions, but the problem was wrong 6.x migration. I suppose clear 5->6 migartion is very important part for vtiger Open Source too. I read all Alan emails arround mirgations bug, but yeah, first after 2 years someone from vtiger answer it. Matus ITS4You D?a 16. 10. 2015 o 8:40 Alan Lord nap?sal(a): > On 16/10/15 06:46, Uma S wrote: >> Hi Alan, >> >> I have updated the logic to handle empty block-label for events and >> calendar module in above mentioned trac >> ticket. Please do >> have a look and update me your observations. > > Thanks Uma, > > That looks better - I will test it as soon as I get chance. > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > From michele.mastropieri at gmail.com Fri Oct 16 07:53:11 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Fri, 16 Oct 2015 09:53:11 +0200 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. In-Reply-To: References: Message-ID: Hi to all, I've add the agi script also to xfer context in extensions.conf. Now also transfer call was recorded into vtiger pbxmanager. Only one problem remains: when an extension(e.g.104) transfer the incoming call to another extension(e.g.106), all extensions rings(100,101,102,103,104,105,106) until the 106 answer. 2015-10-14 17:09 GMT+02:00 Alex Martin : > I?m going to test this on one of our systems later today to see if I can > see whats happening. I?ll get back to you > > > > Alex > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Michele > Mastropieri > *Sent:* Wednesday, October 14, 2015 10:38 AM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* Re: [Vtigercrm-developers] PBX Manager - Record calls > transfers. > > > > Guys, no ideas? > > > > 2015-10-13 17:40 GMT+02:00 Michele Mastropieri < > michele.mastropieri at gmail.com>: > > Hi to all, > > > > if I answer to an incoming call and thus I transfer it to other extension, > the module store information about the call but it keep only information > about pre-trasfer. > > > > Let me explain better with an example. > > > > 1. Incoming call is answered by extension num 101. > > 2. 101 transfer call to 102 extension. > > 3. After 10 minutes 102 hung up. > > 4. Into record list I have only 1 record: the initial conversation between > 101 and external customer. I lost the information about the entire > conversation that is 10minutes call. > > > > How solve it? > > > > -- > > ------------------------------ > > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > > > > -- > > ------------------------------ > > dott. Michele Mastropieri > Email: michele.mastropieri at gmail.com > Skype: thebookison > Mobile: 3403050591 > Fax: 1782280825 > Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. > N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. > > > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Fri Oct 16 08:08:14 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Fri, 16 Oct 2015 10:08:14 +0200 Subject: [Vtigercrm-developers] How deactivate incoming popup Message-ID: Hi to all, I use vtiger connector for have the history of calls into vtiger pbxmanager module. I would like to continue using it but deactivate the incoming popup because it is unused. How do it? -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 08:13:01 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 09:13:01 +0100 Subject: [Vtigercrm-developers] How deactivate incoming popup In-Reply-To: References: Message-ID: On 16/10/15 09:08, Michele Mastropieri wrote: > Hi to all, > > I use vtiger connector for have the history of calls into vtiger > pbxmanager module. > > I would like to continue using it but deactivate the incoming popup > because it is unused. Comment out the registerEvents call in PBXManagerJS.js ;-) It also stops _every_ user's web browser polling vtiger and asking if they have a call every 3 seconds... Al From info at greenbitweb.com Fri Oct 16 08:18:49 2015 From: info at greenbitweb.com (Matteo Baranzoni) Date: Fri, 16 Oct 2015 10:18:49 +0200 Subject: [Vtigercrm-developers] Multi user assignement In-Reply-To: References: Message-ID: check this: https://marketplace.vtiger.com/app/listings?id=154 2015-10-16 6:09 GMT+02:00 Sutharsan Jeganathan : > Hi > > Anyone have a good solution of Multi user assignment to entity modules? > > If you have experience with this "Multi User Assignment" extension from > vtiger store please share > > > Thanks > Sutharsan Jeganathan > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Fri Oct 16 08:43:08 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Fri, 16 Oct 2015 10:43:08 +0200 Subject: [Vtigercrm-developers] How deactivate incoming popup In-Reply-To: References: Message-ID: Where is that js? So it deactivate only incoming call but I will be able to record calls, right? Thanks a lot! 2015-10-16 10:13 GMT+02:00 Alan Lord : > On 16/10/15 09:08, Michele Mastropieri wrote: > >> Hi to all, >> >> I use vtiger connector for have the history of calls into vtiger >> pbxmanager module. >> >> I would like to continue using it but deactivate the incoming popup >> because it is unused. >> > > Comment out the registerEvents call in PBXManagerJS.js ;-) > > It also stops _every_ user's web browser polling vtiger and asking if they > have a call every 3 seconds... > > Al > > > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Fri Oct 16 10:14:47 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 15:44:47 +0530 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Message-ID: Dear Developer, We are happy to announce GA release of Vtiger CRM 6.4.0. In this version, we addressed a key security vulnerability and 40 issues reported on trac. Thank you for sharing your valuable feedback. We would also like to extend special thanks to Benjamin Daniel Mussler for notifying us about SQL Injection and XSS Vulnerability issue. *Layouts* - Build your own app on 6.4 In 6.4, developers can create new layouts, and distribute them via the marketplace. Users can install layouts from the extension store. For an illustration on how to create marketplace-ready layouts, please click here This feature opens up many possibilities for developers to use their expertise and tailor Vtiger for specific domains, and even white-label it. You can download Vtiger CRM 6.4.0 from here: https://www.vtiger.com/open-source-downloads/ Please do access demo instance here. If you encounter any issues while using Vtiger 6.4.0, please report them on trac.vtiger.com (set target version to 6.4) -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Fri Oct 16 10:33:22 2015 From: ptdesigner at gmail.com (ptdesigner) Date: Fri, 16 Oct 2015 11:33:22 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Message-ID: How can you release a version with documents upload and company logo upload not working??Since you intruduced mime. Check this. Already sent ticket a few days ago on track. Regards.Manuel -------- Mensagem original -------- De : Uma S Data: 16/10/2015 11:14 (GMT+00:00) Para: vtigercrm-developers Assunto: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Dear Developer, We are happy to announce GA release of Vtiger CRM 6.4.0. In this version, we addressed a key security vulnerability and 40 issues reported on trac. Thank you for sharing your valuable feedback. We would also like to extend special thanks to Benjamin Daniel Mussler for notifying us about SQL Injection and XSS Vulnerability issue. Layouts - Build your own app on 6.4 In 6.4, developers can create new layouts, and distribute them via the marketplace. Users can install layouts from the extension store. For an illustration on how to create marketplace-ready layouts, please click here This feature opens up many possibilities for developers to use their expertise and tailor Vtiger for specific domains, and even white-label it. You can download Vtiger CRM 6.4.0 from here: https://www.vtiger.com/open-source-downloads/ Please do access demo instance here. If you encounter any issues while using Vtiger 6.4.0, please report them on trac.vtiger.com (set target version to 6.4) -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Fri Oct 16 10:52:23 2015 From: ptdesigner at gmail.com (ptdesigner) Date: Fri, 16 Oct 2015 11:52:23 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Message-ID: After read my last comment to this post, i realise that you may think i was complaining.? No, i wasn't. Just to advertise in case you whant to fix this and publish a new version. Best regards.? Manuel -------- Mensagem original -------- De : Uma S Data: 16/10/2015 11:14 (GMT+00:00) Para: vtigercrm-developers Assunto: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Dear Developer, We are happy to announce GA release of Vtiger CRM 6.4.0. In this version, we addressed a key security vulnerability and 40 issues reported on trac. Thank you for sharing your valuable feedback. We would also like to extend special thanks to Benjamin Daniel Mussler for notifying us about SQL Injection and XSS Vulnerability issue. Layouts - Build your own app on 6.4 In 6.4, developers can create new layouts, and distribute them via the marketplace. Users can install layouts from the extension store. For an illustration on how to create marketplace-ready layouts, please click here This feature opens up many possibilities for developers to use their expertise and tailor Vtiger for specific domains, and even white-label it. You can download Vtiger CRM 6.4.0 from here: https://www.vtiger.com/open-source-downloads/ Please do access demo instance here. If you encounter any issues while using Vtiger 6.4.0, please report them on trac.vtiger.com (set target version to 6.4) -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 11:08:16 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 12:08:16 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: On 16/10/15 11:33, ptdesigner wrote: > How can you release a version with documents upload and company logo > upload not working? > Since you intruduced mime. What do you mean exactly? I have a new 6.4.0 installation and have just changed the Company Logo and uploaded and saved a document just fine? Al > > Already sent ticket a few days ago on track. What's the ticket No.? From sardoj at gmail.com Fri Oct 16 11:13:23 2015 From: sardoj at gmail.com (Jonathan Sardo) Date: Fri, 16 Oct 2015 13:13:23 +0200 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: Hello, Thanks a lot for this new release. Please, don't forget to remove the broken image in Login.Default.tpl : [image: Images int?gr?es 1] Regards, Jonathan SARDO 2015-10-16 13:08 GMT+02:00 Alan Lord : > On 16/10/15 11:33, ptdesigner wrote: > >> How can you release a version with documents upload and company logo >> upload not working? >> Since you intruduced mime. >> > > What do you mean exactly? I have a new 6.4.0 installation and have just > changed the Company Logo and uploaded and saved a document just fine? > > Al > >> >> Already sent ticket a few days ago on track. >> > > What's the ticket No.? > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 44095 bytes Desc: not available URL: From ptdesigner at gmail.com Fri Oct 16 11:13:30 2015 From: ptdesigner at gmail.com (ptdesigner) Date: Fri, 16 Oct 2015 12:13:30 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Message-ID: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8637 Are you using .exe package or linux installation package? I tested in linux package and not working white screen. -------- Mensagem original -------- De : Alan Lord Data: 16/10/2015 12:08 (GMT+00:00) Para: vtigercrm-developers at lists.vtigercrm.com Assunto: Re: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. On 16/10/15 11:33, ptdesigner wrote: > How can you release a version with documents upload and company logo > upload not working? > Since you intruduced mime. What do you mean exactly? I have a new 6.4.0 installation and have just changed the Company Logo and uploaded and saved a document just fine? Al > > Already sent ticket a few days ago on track. What's the ticket No.? _______________________________________________ http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Fri Oct 16 11:19:58 2015 From: ptdesigner at gmail.com (ptdesigner) Date: Fri, 16 Oct 2015 12:19:58 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. Message-ID: <5vmnfept63wsqkx6awwjmuc0.1444994398861@email.android.com> Thank you for new release and all work. Since Changeset 14525, unless vtiger team changed without publish on track. Upload files was broken. Because i see no changes since i presume still broken. Will check and post back. -------- Mensagem original -------- De : Alan Lord Data: 16/10/2015 12:08 (GMT+00:00) Para: vtigercrm-developers at lists.vtigercrm.com Assunto: Re: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. On 16/10/15 11:33, ptdesigner wrote: > How can you release a version with documents upload and company logo > upload not working? > Since you intruduced mime. What do you mean exactly? I have a new 6.4.0 installation and have just changed the Company Logo and uploaded and saved a document just fine? Al > > Already sent ticket a few days ago on track. What's the ticket No.? _______________________________________________ http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 11:22:41 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 12:22:41 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: On 16/10/15 12:13, ptdesigner wrote: > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8637 That is not a very helpful bug report really... What does "not working" mean? To help any developer you should describe your scenario, the problem you have identified and the steps you need to take to reproduce the problem. "Not working" doesn't really mean anything I'm afraid :-( > Are you using .exe package or linux installation package? > > I tested in linux package and not working white screen. I just installed the source from svn last night (version 14548) on an Ubuntu server. Documents and Company Image appear to be working fine for me. Alan From uma.s at vtiger.com Fri Oct 16 11:44:55 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 17:14:55 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Thanks! Alan. On Fri, Oct 16, 2015 at 12:10 PM, Alan Lord wrote: > On 16/10/15 06:46, Uma S wrote: > >> Hi Alan, >> >> I have updated the logic to handle empty block-label for events and >> calendar module in above mentioned trac >> ticket. Please do >> have a look and update me your observations. >> > > Thanks Uma, > > That looks better - I will test it as soon as I get chance. > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Fri Oct 16 11:51:56 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 17:21:56 +0530 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: Hi Matus, Thanks! for the support on fixing migration bug from 540 to 600. Please report this on trac.vtiger.com and set target version as 6.4.0. Will keep track of this fix for successful migration of source to vtiger 6. On Fri, Oct 16, 2015 at 1:16 PM, IT-Solutions4You wrote: > + Another bug: > > in vtiger6.zip > \modules\Migration\schema\540_to_600RC.php > line 806 > $label = $labelInfo[$row['crmid']]; > should by > $label = decode_html($labelInfo[$row['crmid']]); > > In many EU country (German, France, Italy, Slovak, Chzech, Polands, > Hungary, .....) we use special chars so its necessary use decode_html() > function everywhere. > > > Is there any interface where can we track all issues with migration and > add our solutions? We have done many migrations from 5.x to 6.x and each > migration goes wrong. We also saw many wrong 6.x installations, the clients > reports to us isseu with our extensions, but the problem was wrong 6.x > migration. I suppose clear 5->6 migartion is very important part for vtiger > Open Source too. > > I read all Alan emails arround mirgations bug, but yeah, first after 2 > years someone from vtiger answer it. > > Matus > ITS4You > > > > D?a 16. 10. 2015 o 8:40 Alan Lord nap?sal(a): > > On 16/10/15 06:46, Uma S wrote: >> >>> Hi Alan, >>> >>> I have updated the logic to handle empty block-label for events and >>> calendar module in above mentioned trac >>> ticket. Please do >>> have a look and update me your observations. >>> >> >> Thanks Uma, >> >> That looks better - I will test it as soon as I get chance. >> >> Alan >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > _______________________________________________ > http://www.vtiger.com/ -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Fri Oct 16 11:57:21 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Fri, 16 Oct 2015 13:57:21 +0200 Subject: [Vtigercrm-developers] possible bug in filter Message-ID: I created 4 contact Contact A related to organizazion A Contact B related to organization B Contact C related to orgnaization C Contact Empty not related to any organization Then I've been created a filter with following condtion: [image: Immagine incorporata 1] My idea is that this mean show me contact that: ((org. name not contain A) AND (org. name not contain B)) OR (org. name not empty) So I expect to find: - Contact C (not contain A and B) - Contact Empty (becouse or condition) What I was doing wrong? Between the 2 block condition is AND? If I need to show this 2 contact (C and empty), what is right condition to set? ps. tested on demo.vtiger.com -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 183520 bytes Desc: not available URL: From alanslists at gmail.com Fri Oct 16 11:57:37 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 12:57:37 +0100 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports Message-ID: It's a shame something like this didn't get addressed in 6.4.0: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 In fact this is a pretty boring release with very little to warrant a new version number. It's seems more like a 6.3.1 to me. I also note that the gap between the On-Demand and Open Source versions continues to grow wider... What is the long-term plan here? Cheers Al From simonetravaglini at gmail.com Fri Oct 16 12:01:07 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Fri, 16 Oct 2015 14:01:07 +0200 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: Message-ID: Alan I hope with your importance in community you will get an answer. :) Many people asked to know about long term plan... but not answer yet! 2015-10-16 13:57 GMT+02:00 Alan Lord : > It's a shame something like this didn't get addressed in 6.4.0: > > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 > > In fact this is a pretty boring release with very little to warrant a new > version number. It's seems more like a 6.3.1 to me. > > I also note that the gap between the On-Demand and Open Source versions > continues to grow wider... What is the long-term plan here? > > Cheers > > Al > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From uma.s at vtiger.com Fri Oct 16 12:01:47 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 17:31:47 +0530 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: Hi, Sorry! I was not able to find any broken image in login page of demo instance. Can you please make is this issue reproducible in demo instance. On Fri, Oct 16, 2015 at 4:43 PM, Jonathan Sardo wrote: > Hello, > > Thanks a lot for this new release. > > Please, don't forget to remove the broken image in Login.Default.tpl : > > [image: Images int?gr?es 1] > > > Regards, > > Jonathan SARDO > > 2015-10-16 13:08 GMT+02:00 Alan Lord : > >> On 16/10/15 11:33, ptdesigner wrote: >> >>> How can you release a version with documents upload and company logo >>> upload not working? >>> Since you intruduced mime. >>> >> >> What do you mean exactly? I have a new 6.4.0 installation and have just >> changed the Company Logo and uploaded and saved a document just fine? >> >> Al >> >>> >>> Already sent ticket a few days ago on track. >>> >> >> What's the ticket No.? >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 44095 bytes Desc: not available URL: From sshhocckk at gmail.com Fri Oct 16 12:04:44 2015 From: sshhocckk at gmail.com (PlaymaN Tepes) Date: Fri, 16 Oct 2015 14:04:44 +0200 Subject: [Vtigercrm-developers] Users, roles, profiles, groups, access rules and calendar sharing In-Reply-To: References: Message-ID: Well, that's true, Only change is that you can choose which users see in "assigned to" list. By the way, anybody knows if there is a possibility to share calendar in only read mode? Thanks. 2015-10-15 13:11 GMT+02:00 Alan Lord : > On 15/10/15 11:50, PlaymaN Tepes wrote: > >> Thanks for this links but all info is outdated. >> > > Although the "look" of the interface might have changed a bit, very little > has changed with regards to how Roles, Sharing Access, Profiles actually > work for *ages*. > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sardoj at gmail.com Fri Oct 16 12:06:48 2015 From: sardoj at gmail.com (Jonathan Sardo) Date: Fri, 16 Oct 2015 14:06:48 +0200 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: Hello Uma, It is a screenshot of your demo page. It is due to the "stats" image which does not work anymore. Note: I'm using Chrome on Mac OS X [image: Images int?gr?es 1] 2015-10-16 14:01 GMT+02:00 Uma S : > Hi, > > Sorry! I was not able to find any broken image in login page of demo > instance. Can you please make is this issue reproducible in demo instance. > > On Fri, Oct 16, 2015 at 4:43 PM, Jonathan Sardo wrote: > >> Hello, >> >> Thanks a lot for this new release. >> >> Please, don't forget to remove the broken image in Login.Default.tpl : >> >> [image: Images int?gr?es 1] >> >> Regards, >> >> Jonathan SARDO >> >> 2015-10-16 13:08 GMT+02:00 Alan Lord : >> >>> On 16/10/15 11:33, ptdesigner wrote: >>> >>>> How can you release a version with documents upload and company logo >>>> upload not working? >>>> Since you intruduced mime. >>>> >>> >>> What do you mean exactly? I have a new 6.4.0 installation and have just >>> changed the Company Logo and uploaded and saved a document just fine? >>> >>> Al >>> >>>> >>>> Already sent ticket a few days ago on track. >>>> >>> >>> What's the ticket No.? >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 239955 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 44095 bytes Desc: not available URL: From alanslists at gmail.com Fri Oct 16 12:11:03 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 13:11:03 +0100 Subject: [Vtigercrm-developers] Errors in migration script 630_to_640.php Message-ID: In the Migration script you are adding a new Timezone but I am not sure if it is supposed to be for New Caledonia or for Yakutsk in Russia: (Cut & Paste typo?) > //Adding new timezone (GMT+11:00) New Caledonia > $sortOrderResult = $adb->pquery("SELECT sortorderid FROM vtiger_time_zone WHERE time_zone = ?", array('Asia/Yakutsk')); > if ($adb->num_rows($sortOrderResult)) { > $sortOrderId = $adb->query_result($sortOrderResult, 0, 'sortorderid'); > $adb->pquery("UPDATE vtiger_time_zone SET sortorderid = (sortorderid + 1) WHERE sortorderid > ?", array($sortOrderId)); > Migration_Index_View::ExecuteQuery('INSERT INTO vtiger_time_zone (time_zone, sortorderid, presence) VALUES (?, ?, ?)', array('Etc/GMT-11', ($sortOrderId + 1), 1)); > echo "New timezone (GMT+11:00) New Caledonia added.
"; > } Also, the language is poor here: > echo 'Your Configuration file couldnot able to edit, Please asdd it manuallyUnsuccess'; It should probably read: > "Cannot write to your Configuration file. Please add it manually" And "Add" what exactly? What is "it"? lol Alan From alan.bell at libertus.co.uk Fri Oct 16 12:19:14 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Fri, 16 Oct 2015 13:19:14 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: <5620EB42.2080004@libertus.co.uk> yeah, this has been broken for some time, doesn't show up in Firefox, Chrome or other Webkit things show it clearly, no idea about the microsoft platform. Alan. On 16/10/15 13:06, Jonathan Sardo wrote: > Hello Uma, > > It is a screenshot of your demo page. > It is due to the "stats" image which does not work anymore. > > Note: I'm using Chrome on Mac OS X > > > > > > 2015-10-16 14:01 GMT+02:00 Uma S >: > > Hi, > > Sorry! I was not able to find any broken image in login page of > demo instance. Can you please make is this issue reproducible in > demo instance. > > On Fri, Oct 16, 2015 at 4:43 PM, Jonathan Sardo > wrote: > > Hello, > > Thanks a lot for this new release. > > Please, don't forget to remove the broken image in > Login.Default.tpl : > > > > Regards, > > Jonathan SARDO > > 2015-10-16 13:08 GMT+02:00 Alan Lord >: > > On 16/10/15 11:33, ptdesigner wrote: > > How can you release a version with documents upload > and company logo > upload not working? > Since you intruduced mime. > > > What do you mean exactly? I have a new 6.4.0 installation > and have just changed the Company Logo and uploaded and > saved a document just fine? > > Al > > > Already sent ticket a few days ago on track. > > > What's the ticket No.? > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > _______________________________________________ > http://www.vtiger.com/ > > > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 12:33:51 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 13:33:51 +0100 Subject: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? Message-ID: In 6.4.0 is this new chunk of code at line 140: > $save_file = 'true'; > //only images are allowed for Image Attachmenttype > $mimeType = mime_content_type($file_details['tmp_name']); > $mimeTypeContents = explode('/', $mimeType); > // For contacts and products we are sending attachmentType as value > if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { > $save_file = validateImageFile($file_details); > } > if ($save_file == 'false') { > return false; > } Note the test line: > if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { I just searched the whole CRMEntity.php file and can't find $attachmentType *anywhere* else in the file... Is that correct? Al From ptdesigner at gmail.com Fri Oct 16 12:47:49 2015 From: ptdesigner at gmail.com (ptdesigner) Date: Fri, 16 Oct 2015 13:47:49 +0100 Subject: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? Message-ID: <4yi5vk0dgpv7i8rrhvdr1ot5.1444999585049@email.android.com> That's the change that don't let me upload company logo anymore. -------- Mensagem original -------- De : Alan Lord Data: 16/10/2015 13:33 (GMT+00:00) Para: vtigercrm-developers at lists.vtigercrm.com Assunto: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? In 6.4.0 is this new chunk of code at line 140: >???????????????? $save_file = 'true'; >???????????????? //only images are allowed for Image Attachmenttype >???????????????? $mimeType = mime_content_type($file_details['tmp_name']); >???????????????? $mimeTypeContents = explode('/', $mimeType); >???????????????? // For contacts and products we are sending attachmentType as value >???????????????? if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { >???????????????????????? $save_file = validateImageFile($file_details); >???????????????? } >???????????????? if ($save_file == 'false') { >???????????????????????? return false; >???????????????? } Note the test line: >? if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { I just searched the whole CRMEntity.php file and can't find $attachmentType *anywhere* else in the file... Is that correct? Al _______________________________________________ http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 12:57:32 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 13:57:32 +0100 Subject: [Vtigercrm-developers] Bug in Current/Previous Week options in Reports? In-Reply-To: References: <286d6f5faf30a9e859818517c3c58f2f@yetiforce.com> Message-ID: In 6.4.0 you seems to have addressed the specific issue I reported here: http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8547 Yet you appear to have completely ignored the suggested patch (below) from B?a?ej which could have removed (as a guess) a couple of thousand lines of duplicated code? Why? Al On 13/08/15 17:18, Alan Lord (News) wrote: > On 13/08/15 16:49, B?a?ej Pabiszczak wrote: >> Hi >> >> check this: >> https://github.com/YetiForceCompany/YetiForceCRM/commit/eb8827ef15e9860a3d5b5ddb74fdad4db7d15822 >> > > > That's a mother of a patch but looks good! Thanks: > > > "384 additions and 1,239 deletions." > > vtiger devs, please take a look. This is major bit of code cleaning :-) > > Al > From alanslists at gmail.com Fri Oct 16 13:01:44 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 14:01:44 +0100 Subject: [Vtigercrm-developers] 6.4.0: Increasing use of global again... Message-ID: In 6.4.0 I have noticed a few places where you are using more of the global namesapece: (For layouts and Mail Converter mailbox count) for example. I thought the idea of this nice MVC was to reduce dependency on globals? Al From uma.s at vtiger.com Fri Oct 16 13:11:51 2015 From: uma.s at vtiger.com (Uma S) Date: Fri, 16 Oct 2015 18:41:51 +0530 Subject: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? In-Reply-To: <4yi5vk0dgpv7i8rrhvdr1ot5.1444999585049@email.android.com> References: <4yi5vk0dgpv7i8rrhvdr1ot5.1444999585049@email.android.com> Message-ID: Hi Alan, It should be passed an an parameter to api as shown below. function uploadAndSaveFile($id, $module, $file_details, $attachmentType='Attachment') { Source will be updated soon. On Fri, Oct 16, 2015 at 6:17 PM, ptdesigner wrote: > That's the change that don't let me upload company logo anymore. > > > -------- Mensagem original -------- > De : Alan Lord > Data: 16/10/2015 13:33 (GMT+00:00) > Para: vtigercrm-developers at lists.vtigercrm.com > Assunto: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? > > In 6.4.0 is this new chunk of code at line 140: > > > $save_file = 'true'; > > //only images are allowed for Image Attachmenttype > > $mimeType = mime_content_type($file_details['tmp_name']); > > $mimeTypeContents = explode('/', $mimeType); > > // For contacts and products we are sending > attachmentType as value > > if ($attachmentType == 'Image' || ($file_details['size'] > && $mimeTypeContents[0] == 'image')) { > > $save_file = validateImageFile($file_details); > > } > > if ($save_file == 'false') { > > return false; > > } > > Note the test line: > > > if ($attachmentType == 'Image' || ($file_details['size'] && > $mimeTypeContents[0] == 'image')) { > > I just searched the whole CRMEntity.php file and can't find > $attachmentType *anywhere* else in the file... Is that correct? > > Al > > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ > -- With Best Regards Uma.S Vtiger Team -------------- next part -------------- An HTML attachment was scrubbed... URL: From manu.k at vtiger.com Fri Oct 16 13:13:39 2015 From: manu.k at vtiger.com (Manu urs) Date: Fri, 16 Oct 2015 18:43:39 +0530 Subject: [Vtigercrm-developers] Errors in migration script 630_to_640.php In-Reply-To: References: Message-ID: Hi Alan, Thanks for the suggestion.The new New Caledonia Time Zone is UTC+11:00 and for Yakutsk is UTC+10:00 . Are you looking forward us to specify the place name in the Timezone column in the new entry. We are handling it in the translation. Regards, Manu Urs On Fri, Oct 16, 2015 at 5:41 PM, Alan Lord wrote: > In the Migration script you are adding a new Timezone but I am not sure if > it is supposed to be for New Caledonia or for Yakutsk in Russia: > > (Cut & Paste typo?) > > //Adding new timezone (GMT+11:00) New Caledonia >> $sortOrderResult = $adb->pquery("SELECT sortorderid FROM >> vtiger_time_zone WHERE time_zone = ?", array('Asia/Yakutsk')); >> if ($adb->num_rows($sortOrderResult)) { >> $sortOrderId = $adb->query_result($sortOrderResult, 0, >> 'sortorderid'); >> $adb->pquery("UPDATE vtiger_time_zone SET sortorderid = >> (sortorderid + 1) WHERE sortorderid > ?", array($sortOrderId)); >> Migration_Index_View::ExecuteQuery('INSERT INTO vtiger_time_zone >> (time_zone, sortorderid, presence) VALUES (?, ?, ?)', array('Etc/GMT-11', >> ($sortOrderId + 1), 1)); >> echo "New timezone (GMT+11:00) New Caledonia added.
"; >> } >> > > Also, the language is poor here: > > echo 'Your Configuration file couldnot able to >> edit, Please asdd it manually> style="color:red">Unsuccess'; >> > > It should probably read: > > "Cannot write to your Configuration file. Please add it manually" >> > > And "Add" what exactly? What is "it"? lol > > Alan > > > > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 16 13:24:10 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 16 Oct 2015 14:24:10 +0100 Subject: [Vtigercrm-developers] Errors in migration script 630_to_640.php In-Reply-To: References: Message-ID: On 16/10/15 14:13, Manu urs wrote: > Hi Alan, > > Thanks for the suggestion.The new New Caledonia Time Zone is > UTC+11:00 and for Yakutsk is UTC+10:00 . > Are you looking forward us to specify the place name in the Timezone > column in the new entry. We are handling it in the translation. No, I was confused by the comment and then the query looking for Yakutsk. Sorry. Alan From info at greenbitweb.com Fri Oct 16 13:58:20 2015 From: info at greenbitweb.com (Matteo Baranzoni) Date: Fri, 16 Oct 2015 15:58:20 +0200 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: <5620EB42.2080004@libertus.co.uk> References: <5620EB42.2080004@libertus.co.uk> Message-ID: chrome break this stats image: On Firefox and other browser it seems ok. 2015-10-16 14:19 GMT+02:00 Alan Bell : > yeah, this has been broken for some time, doesn't show up in Firefox, > Chrome or other Webkit things show it clearly, no idea about the microsoft > platform. > > Alan. > > On 16/10/15 13:06, Jonathan Sardo wrote: > > Hello Uma, > > It is a screenshot of your demo page. > It is due to the "stats" image which does not work anymore. > > Note: I'm using Chrome on Mac OS X > > > > > > 2015-10-16 14:01 GMT+02:00 Uma S : > >> Hi, >> >> Sorry! I was not able to find any broken image in login page of demo >> instance. Can you please make is this issue reproducible in demo instance. >> >> On Fri, Oct 16, 2015 at 4:43 PM, Jonathan Sardo < >> sardoj at gmail.com> wrote: >> >>> Hello, >>> >>> Thanks a lot for this new release. >>> >>> Please, don't forget to remove the broken image in Login.Default.tpl : >>> >>> >>> >>> Regards, >>> >>> Jonathan SARDO >>> >>> 2015-10-16 13:08 GMT+02:00 Alan Lord < >>> alanslists at gmail.com>: >>> >>>> On 16/10/15 11:33, ptdesigner wrote: >>>> >>>>> How can you release a version with documents upload and company logo >>>>> upload not working? >>>>> Since you intruduced mime. >>>>> >>>> >>>> What do you mean exactly? I have a new 6.4.0 installation and have just >>>> changed the Company Logo and uploaded and saved a document just fine? >>>> >>>> Al >>>> >>>>> >>>>> Already sent ticket a few days ago on track. >>>>> >>>> >>>> What's the ticket No.? >>>> >>>> >>>> _______________________________________________ >>>> http://www.vtiger.com/ >>>> >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> With >> Best Regards >> Uma.S >> Vtiger Team >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > _______________________________________________http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prasad at vtiger.com Fri Oct 16 15:26:34 2015 From: prasad at vtiger.com (Prasad) Date: Fri, 16 Oct 2015 20:56:34 +0530 Subject: [Vtigercrm-developers] Bug in Current/Previous Week options in Reports? In-Reply-To: References: <286d6f5faf30a9e859818517c3c58f2f@yetiforce.com> Message-ID: Alan, We feel short of validation so had to push back on integration. To give it right importance, we planned to focus our effort in our next release. We appreciate if such patch can be with reference to 6.4.0. Not a problem if it can't be - a pointer on our trac.vtiger.com is sufficient to reach. Regards, Prasad -- FB I Twit I LIn I Blog I Website On Fri, Oct 16, 2015 at 6:27 PM, Alan Lord wrote: > In 6.4.0 you seems to have addressed the specific issue I reported here: > http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8547 > > Yet you appear to have completely ignored the suggested patch (below) from > B?a?ej which could have removed (as a guess) a couple of thousand lines of > duplicated code? Why? > > > Al > > On 13/08/15 17:18, Alan Lord (News) wrote: > >> On 13/08/15 16:49, B?a?ej Pabiszczak wrote: >> >>> Hi >>> >>> check this: >>> >>> https://github.com/YetiForceCompany/YetiForceCRM/commit/eb8827ef15e9860a3d5b5ddb74fdad4db7d15822 >>> >>> >> >> That's a mother of a patch but looks good! Thanks: >> >> >> "384 additions and 1,239 deletions." >> >> vtiger devs, please take a look. This is major bit of code cleaning :-) >> >> Al >> >> > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Fri Oct 16 23:58:29 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Sat, 17 Oct 2015 00:58:29 +0100 Subject: [Vtigercrm-developers] Content in Menu.php removed without any reference Message-ID: Hello, content added in the next changeset disappeared now in vtiger 6.4 without any reason You removed this code here http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7477 and reintroduced here http://trac.vtiger.com/cgi-bin/trac.cgi/changeset/14360 /** * Remove module from this menu instance. * @param Vtiger_Module Instance of the module */ function removeModule($moduleInstance) { if(empty($moduleInstance) || empty($moduleInstance)) { self::log("Module instance is not set!"); return; } if($this->id) { global $adb; $adb->pquery("DELETE FROM vtiger_parenttabrel WHERE parenttabid = ? AND tabid = ?", Array($this->id, $moduleInstance->id)); self::log("Removed $moduleInstance->name from menu $this->label ... DONE"); } else { self::log("Menu could not be found!"); } self::syncfile(); } Now in Vt6.4 is not present any more. And i can not see any updated after this that justificate remove again this code Best Regards. Manuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Sat Oct 17 00:11:01 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Sat, 17 Oct 2015 01:11:01 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: <62A67882-F1F0-450C-B427-916A8BE6B80E@gmail.com> Alan, To be more specific, this is the error i get Fatal error: Call to undefined function mime_content_type() in /home/vtigerdemo/public_html/vtigerdemo/modules/Settings/Vtiger/actions/CompanyDetailsSave.php on line 31 Regards. > No dia 16/10/2015, ?s 12:08, Alan Lord escreveu: > > On 16/10/15 11:33, ptdesigner wrote: >> How can you release a version with documents upload and company logo >> upload not working? >> Since you intruduced mime. > > What do you mean exactly? I have a new 6.4.0 installation and have just changed the Company Logo and uploaded and saved a document just fine? > > Al >> >> Already sent ticket a few days ago on track. > > What's the ticket No.? > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Sat Oct 17 04:27:52 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Fri, 16 Oct 2015 21:27:52 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> Message-ID: <1445056072991-17741.post@n4.nabble.com> i am waiting :D tanx :) -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17741.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From michele.mastropieri at gmail.com Sat Oct 17 11:56:28 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Sat, 17 Oct 2015 13:56:28 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1445056072991-17741.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> Message-ID: You wrote: Outbound Context from-internal Outbound Trunk OUTVTIGER Where is from-internal context? I don't read it in your messages. The trunk name into pbx is actually OUTVTIGER? 2015-10-17 6:27 GMT+02:00 mahoutchian : > i am waiting :D > tanx :) > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17741.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- ------------------------------ dott. Michele Mastropieri Email: michele.mastropieri at gmail.com Skype: thebookison Mobile: 3403050591 Fax: 1782280825 Ai sensi del D.Lgs.196/2003 si precisa che le informazioni contenute in questo messaggio sono riservate ed a uso esclusivo del destinatario. N.B. Rispetta l'ambiente. Non stampare questa mail se non ? necessario. -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Sat Oct 17 13:22:30 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Sat, 17 Oct 2015 20:22:30 +0700 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: Message-ID: The answer is: Join or create alternative fork/project. No open source spirit around vtiger core. Money. Stacey On Fri, Oct 16, 2015 at 7:01 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Alan I hope with your importance in community you will get an answer. :) > Many people asked to know about long term plan... but not answer yet! > > > > 2015-10-16 13:57 GMT+02:00 Alan Lord : > >> It's a shame something like this didn't get addressed in 6.4.0: >> >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 >> >> In fact this is a pretty boring release with very little to warrant a new >> version number. It's seems more like a 6.3.1 to me. >> >> I also note that the gap between the On-Demand and Open Source versions >> continues to grow wider... What is the long-term plan here? >> >> Cheers >> >> Al >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Sat Oct 17 13:30:33 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Sat, 17 Oct 2015 14:30:33 +0100 Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: References: Message-ID: <8F67B148-012E-4165-89D8-654E8958F0AC@gmail.com> Hello Alan, Just to give some more information. You can upload files in documents and change company logo only if you are using php 5.5 In case you use php 5.4 ?in my case v5.4.45? you will get this error Fatal error: Call to undefined function mime_content_type() in /home/vtigerdemo/public_html/vtigerdemo/modules/Settings/Vtiger/actions/CompanyDetailsSave.php on line 31 Best Regards. Manuel > No dia 16/10/2015, ?s 12:22, Alan Lord escreveu: > > On 16/10/15 12:13, ptdesigner wrote: >> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8637 > > That is not a very helpful bug report really... What does "not working" mean? > > To help any developer you should describe your scenario, the problem you have identified and the steps you need to take to reproduce the problem. > > "Not working" doesn't really mean anything I'm afraid :-( > >> Are you using .exe package or linux installation package? >> >> I tested in linux package and not working white screen. > > I just installed the source from svn last night (version 14548) on an Ubuntu server. > > Documents and Company Image appear to be working fine for me. > > Alan > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Sat Oct 17 13:26:48 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Sat, 17 Oct 2015 06:26:48 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> Message-ID: <1445088408093-17745.post@n4.nabble.com> Asterisk Server Details Vtiger Asterisk App URL http://192.168.33.10:8380 Outbound Context from-internal Outbound Trunk from-trunk Vtiger Secret Key xxxxxxxxxxxxxxxxxxxbc57b8e861 -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17745.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From vladimir at kosacrta.hr Sat Oct 17 13:44:52 2015 From: vladimir at kosacrta.hr (=?UTF-8?Q?Vladimir_Kara=C5=BEija?=) Date: Sat, 17 Oct 2015 15:44:52 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1445056072991-17741.post@n4.nabble.com> References: <4d48190.1d1029c.13841f87.40fb@setuda.ir> <1444399876396-17625.post@n4.nabble.com> <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> Message-ID: Hi, for incoming calls you should put AGI script in from-trunk context and for outgoing calls you should create new context (vtiger-outbound) and add it to extensions.conf in vtiger add name of sip trunk and newly created context (vtiger-outbound) your sip phones should have from-internal context as default. this way you will bave working configuration. regards, Vladimir Vladimir Kara?ija Kosa crta d.o.o. Jagnedje 1 10090 Zagreb OIB: 57724075047 t. +385 1 777 33 85 m. +385 91 122 0511 www.kosacrta.hr On Oct 17, 2015 6:39 AM, "mahoutchian" wrote: > i am waiting :D > tanx :) > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17741.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Sat Oct 17 19:47:30 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Sat, 17 Oct 2015 12:47:30 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> Message-ID: <1445111250803-17747.post@n4.nabble.com> tanx dear kosacrta, now my extentions_custom.conf is : [from-internal-custom] include => agentlogin include => conferences include => calendar-event include => weather-wakeup include => vtiger-outbound exten => 1234,1,Playback(demo-congrats) ; extensions can dial 1234 exten => 1234,2,Hangup() exten => h,1,Hangup() [vtiger-outbound] exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) [from-pstn-custom] exten => _XXXXX.,1,Agi(agi://0.0.0.0/incoming.agi) and vtiger setting is : http://192.168.33.10:8380 *Vtiger Asterisk App URL : from-trunk *Outbound Context : vtiger-outbound *Outbound Trunk : from-trunk *Vtiger Secret Key : xxxxxxxxxxxxxxxxxxxxxxxxxxxx my outgoing way is an asterisk card : DAHDi g0 popup for incoming call is ok ! click to dial for local extentions is ok ! my ip phone is working fine, dial and answer is ok ! but click to dial for other number : ringing my extentions, phone try to call number, but i hear busy tone ! and very very bad situation is : after change and change setting, my popup incoming call not closed, and repeat.(reopen) please help me to find the problem. tanx. -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17747.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From vladimir at kosacrta.hr Sun Oct 18 09:44:23 2015 From: vladimir at kosacrta.hr (=?UTF-8?Q?Vladimir_Kara=C5=BEija?=) Date: Sun, 18 Oct 2015 11:44:23 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1445111250803-17747.post@n4.nabble.com> References: <7ce64d30ff084bc680454793740bf819@AlexPMS.CS.local> <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> <1445111250803-17747.post@n4.nabble.com> Message-ID: Hi mahoutchian, I am happy you made some progress with my instructions, glad I could help. Regarding popups problems that do not want to go away, I suppose you are using asterisk 12? That is possibly problem, because AGI configuration is tested on asterisk 11.. I also had that problem and when I changed to asterisk 11 that problem was fixed. Regarding problems for outgoing calls outside, take a look at the screenshots... You need to enter DAHDi g0 trunk name in vtiger crm Provider configuration. These are screenshots from FreePBX web interface, I do not know if you are using it (so you just need to find what is the name of your DAHDi g0 outgoing trunk) [image: Inline image 2] [image: Inline image 3] Vladimir Kara?ija Kosa crta d.o.o. Jagnedje 1 10090 Zagreb OIB: 57724075047 t. +385 1 777 33 85 m. +385 91 122 0511 www.kosacrta.hr On Sat, Oct 17, 2015 at 9:47 PM, mahoutchian wrote: > tanx dear kosacrta, > now my extentions_custom.conf is : > > [from-internal-custom] > include => agentlogin > include => conferences > include => calendar-event > include => weather-wakeup > include => vtiger-outbound > exten => 1234,1,Playback(demo-congrats) ; extensions can dial 1234 > exten => 1234,2,Hangup() > exten => h,1,Hangup() > > > [vtiger-outbound] > exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) > > > [from-pstn-custom] > exten => _XXXXX.,1,Agi(agi://0.0.0.0/incoming.agi) > > and vtiger setting is : http://192.168.33.10:8380 > > *Vtiger Asterisk App URL : from-trunk > > *Outbound Context : vtiger-outbound > > *Outbound Trunk : from-trunk > > *Vtiger Secret Key : xxxxxxxxxxxxxxxxxxxxxxxxxxxx > > my outgoing way is an asterisk card : DAHDi g0 > > popup for incoming call is ok ! > click to dial for local extentions is ok ! > my ip phone is working fine, dial and answer is ok ! > > but click to dial for other number : > > ringing my extentions, phone try to call number, but i hear busy tone ! > and very very bad situation is : > > after change and change setting, my popup incoming call not closed, and > repeat.(reopen) > > please help me to find the problem. > tanx. > > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17747.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 32320 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 113061 bytes Desc: not available URL: From ajstharsan at gmail.com Sun Oct 18 17:31:37 2015 From: ajstharsan at gmail.com (Sutharsan Jeganathan) Date: Sun, 18 Oct 2015 23:01:37 +0530 Subject: [Vtigercrm-developers] Scheduled workflows not working on VT 6.1 when using condition ? In-Reply-To: References: <1430743098487-16081.post@n4.nabble.com> <1430744907457-16083.post@n4.nabble.com> <1430897518690-16107.post@n4.nabble.com> Message-ID: Hi Is there any patch or workaround on this problem? I need to solve this in one of the active Call center escalation process is waiting because the work flow scheduler seems not working for assigned to Thanks Sutharsan Jeganathan On Wed, May 6, 2015 at 1:28 PM, Uma S wrote: > Hi, > > Thanks! for the update, will soon look into this issue. > > On Wed, May 6, 2015 at 1:01 PM, apcloic wrote: > >> Thanks Uma :) >> >> After inspecting more deeply, it looks like some conditions are working >> and >> some others not. >> Not working conditions list (not exhaustive) : >> >> - assigned_to not OK because SQL query search for >> (trim(CONCAT(vtiger_users.first_name,' ',vtiger_users.last_name)) = >> 'UserID' >> so obviously it won't ever match. >> >> - date when not using US format (ie, if using french format like >> DD-MM-YYYY, >> MySQL query do not convert date value to database format like YYYY-MM-DD >> and >> search for value in localized format DD-MM-YYYY so it doesn't find >> matching >> records) >> >> I've updated the ticket on trac with these informations. >> >> Regards, >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/Scheduled-workflows-not-working-on-VT-6-1-when-using-condition-tp16081p16107.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From a.mahoutchian at setuda.ir Sun Oct 18 17:20:38 2015 From: a.mahoutchian at setuda.ir (mahoutchian) Date: Sun, 18 Oct 2015 10:20:38 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: References: <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> <1445111250803-17747.post@n4.nabble.com> Message-ID: <1445188838179-17750.post@n4.nabble.com> Hi Dear Vladimir Kara?ija, Tanx Tanx Tanx Tanx Tanx My System is : PBX : Elastix x86 32bit ( yum update : asterisk 11.17 and freepbx 2.11 ) Vtiger : Centos 7 x 64 , Vtiger 6.4 Asterisk Connector : 1.4 incoming call in vtiger : ok outgoing click to call for local extentions : ok now i changed systen to this : VTiger : PBXManager Asterisk Server Details *Vtiger Asterisk App URL http://192.168.33.10:8380 *Outbound Context vtiger-outbound *Outbound Trunk DAHDI Channel g0 *Vtiger Secret Key 2463765574556bc57b74661 My Extentions_custom.conf ( part o extentions.conf ) is : ; This file contains the contexts the agents login for the module call center. ; and contains the context conferences for module conferences of elastix 1.0. [from-internal-custom] include => agentlogin include => conferences include => calendar-event include => weather-wakeup ;include => vtiger-outbound ; ????????? i don't know ? need to with o without comment !!!! exten => h,1,Hangup() [vtiger-outbound] exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) [from-pstn-custom] exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) but when clik on a number in vtiger , my phone is ringing with caller id , after pickup, phone say busy tone !!!! My Asterisk LOG After Click to dial > Channel SIP/2186-00000000 was answered -- Executing [2186 at vtiger-outbound:1] AGI("SIP/2186-00000000", "agi://0.0.0.0/incoming.agi") in new stack > 0x9d2ecc8 -- Probation passed - setting RTP source address to 192.168.39.1:8000 -- AGI Script Executing Application: (Dial) Options: (SIP/09123081938 at DAHDI Channel g0, 60) == Using SIP RTP TOS bits 184 == Using SIP RTP CoS mark 5 [2015-10-18 20:53:35] ERROR[4951][C-00000000]: netsock2.c:271 ast_sockaddr_resolve: getaddrinfo("DAHDI Channel g0", "(null)", ...): Name or service not known [2015-10-18 20:53:35] WARNING[4951][C-00000000]: chan_sip.c:6058 create_addr: No such host: DAHDI Channel g0 [2015-10-18 20:53:35] WARNING[4951][C-00000000]: app_dial.c:2437 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Subscriber absent) == Everyone is busy/congested at this time (1:0/0/1) -- AGI Script agi://0.0.0.0/incoming.agi completed, returning 0 -- Auto fallthrough, channel 'SIP/2186-00000000' status is 'CHANUNAVAIL' > Saved useragent "Rainbow2 V1.5.0" for peer 2114 BranchVoip*CLI> i think problem is : AGI Script Executing Application: (Dial) Options: (SIP/09123081938 at DAHDI Channel g0, 60) ERROR[4951][C-00000000]: netsock2.c:271 ast_sockaddr_resolve: getaddrinfo("DAHDI Channel g0", "(null)", ...): Name or service not known -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17750.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From l.digirolamo at websonica.net Mon Oct 19 07:53:53 2015 From: l.digirolamo at websonica.net (lucia digirolamo) Date: Mon, 19 Oct 2015 09:53:53 +0200 Subject: [Vtigercrm-developers] calendar todo issue Message-ID: <5624A191.3080400@websonica.net> Hi, on my vtiger 6.1 installation I need to have the todo public (or at least shared). I understand that for some reason this is not possible (I hope things will change in the future, it is really a pity that todos don't have a public/invite option like events), so I first tried changing values in database from 3 to 1 as explained in this post: https://discussions.vtiger.com/index.php?p=/discussion/34041/howto-assign-a-todo-to-another-user/p1. It worked on my local installation but when I tried on live crm it threw an error (calendar module had access denied message). So i tried a workaround: I created a role (above all other roles in the hyerarchy), then I assigned this role and subordinates to each group I have (meaning: before this change my groups contained only users, now each groups have its users + the role and subordinates). Now all users can see other's users task, so it appeared to work. This morning I realized that every time a todo is created and it is assigned to a group and the option to notify owner is checked, every user receives the email, not only the users which are part of that group, but also every other user because every user is inside the 'role and subordinates' menu of the group. So the above solution to have public todos doesn't work. So now I'm back to square one: people who create todos for other people, cannot keep track of which todos they already did and which ones they haven't created yet because they can't see todos assigned to other people. I need them to be able to see those records in the calendar listview. I dont need them to be able to open the record or edit it, I just need them to be able to see the record listed in calendar listview so they can keep track of the todos they already created. Is there a way to achieve this? Alternatevily, if the only way I can keep the todos public is to keep using groups as I'm doing now, is there a way to send notification email only to the users of the group and not to 'roles and subordinates'? thanks From alan.bell at libertus.co.uk Mon Oct 19 09:12:46 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Mon, 19 Oct 2015 10:12:46 +0100 Subject: [Vtigercrm-developers] projects on the calendar Message-ID: <5624B40E.5070004@libertus.co.uk> in modules/Calendar/actions/Feed.php in the pullProjects function at line 337 there is: $params = array_merge($params,$userAndGroupIds); which then gets used in this query . . . $query = "SELECT projectname, startdate, targetenddate, crmid FROM vtiger_project"; $query.= " INNER JOIN vtiger_crmentity ON vtiger_project.projectid = vtiger_crmentity.crmid"; $query.= " WHERE vtiger_crmentity.deleted=0 AND smownerid IN (". generateQuestionMarks($userAndGroupIds) .") AND "; $query.= " ((startdate >= ? AND targetenddate < ?) OR ( targetenddate >= ?))"; $queryResult = $db->pquery($query, $params); however, the questionmarks for the users and groups come before the date parameters, so it doesn't work and projects don't display on the calendar, changing line 337 to put the users and groups first fixes it: $params = array_merge($userAndGroupIds,$params); Alan. From preexo at googlemail.com Mon Oct 19 12:12:53 2015 From: preexo at googlemail.com (Preexo) Date: Mon, 19 Oct 2015 05:12:53 -0700 (PDT) Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: Message-ID: <1445256773541-17754.post@n4.nabble.com> I think having a 6.1, 6.2, 6.3 and a 6.4 (4-5 versions) within this year sounds pretty damn good and like progress at first!! ... If there wasn't the on demand version which feels like it's already at 7.4. And officially this should still be the same product, right? Money... Money is nice, money is what drives us all. It's why I keep coming back here... Because it's my job and I earn money with this. So don't stop earning money, but running a successful open source project doesn't mean you can't earn money... vtiger has the potential of being part of this list: http://www.infoworld.com/article/2982622/open-source-tools/bossie-awards-2015-the-best-open-source-applications.html For sure all of them earn money and are still more open source than vtiger. The vtiger team should not feel pushed, but this really needs to be answered. I also think the gap between on demand and open source becomes more and more fishy. Is the open source project actually being abandoned very slowly? >From my point of view: - The on demand can happily always offer more features than the os version. But vtiger should put those features up on the marketplace as modules so that we can buy those for our os installations and don't have to reinvent the wheel all the time. - The vtiger forum and this mailing list are very bad to use. So is the svn repository. If you want us open source users and developers actually contribute, consider moving the repository to a modern repo like github, offer a nice to use platform for everyone, don't be stuck with the dodgy sourceforge and become fakers like they are. - Answer the question: Do you want us to contribute? Do you want to actually live the open source spirit? Do you want to stop maintaining two products? @Stacey, do you actually know a fork of vtiger that is somewhere near ready to be joined? Stacey Johnson wrote > The answer is: Join or create alternative fork/project. > No open source spirit around vtiger core. Money. > > Stacey > > On Fri, Oct 16, 2015 at 7:01 PM, Simone Travaglini < > simonetravaglini@ >> wrote: > >> Alan I hope with your importance in community you will get an answer. :) >> Many people asked to know about long term plan... but not answer yet! >> >> >> >> 2015-10-16 13:57 GMT+02:00 Alan Lord < > alanslists@ > >: >> >>> It's a shame something like this didn't get addressed in 6.4.0: >>> >>> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 >>> >>> In fact this is a pretty boring release with very little to warrant a >>> new >>> version number. It's seems more like a 6.3.1 to me. >>> >>> I also note that the gap between the On-Demand and Open Source versions >>> continues to grow wider... What is the long-term plan here? >>> >>> Cheers >>> >>> Al >>> >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Simone Travaglini >> 328 5499846 >> Linkedin: Simone Travaglini >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> necessario! >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > _______________________________________________ > http://www.vtiger.com/ -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Custom-Date-Fields-still-broken-in-Reports-tp17722p17754.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From prasad at vtiger.com Mon Oct 19 14:22:55 2015 From: prasad at vtiger.com (Prasad) Date: Mon, 19 Oct 2015 19:52:55 +0530 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: <1445256773541-17754.post@n4.nabble.com> References: <1445256773541-17754.post@n4.nabble.com> Message-ID: Vtiger 6.4 enables multi-layout support and Vtiger 7 on Ondemand builds on-top of this framework. The version difference is mainly for due to significant UI changes being offered on the service (than earlier) . This new-layout is still under development is updates are pushed every-day. Which is a bit of challenge to achieve the same as product releases. Is Vtiger being abandoned very slowy? No. The on demand can happily always offer more features than the os version. > But vtiger should put those features up on the marketplace as modules so > that we can buy those for our os installations and don't have to reinvent > the wheel all the time. Features developed for Ondemand are dependent on home-grown services which cease to work without it. So moving them on to marketplace is not possible. The vtiger forum and this mailing list are very bad to use. So is the svn > repository. If you want us open source users and developers actually > contribute, consider moving the repository to a modern repo like github, > offer a nice to use platform for everyone, don't be stuck with the dodgy > sourceforge and become fakers like they are. We are ambitious to migrate trac.vtiger.com to new-repository, our operation team did experiment with Gitlab and confident to turn it to production sooner. Answer the question: Do you want us to contribute? Yes - we appreciate it as always. Regards, Prasad Vtiger Team -- FB I Twit I LIn I Blog I Website On Mon, Oct 19, 2015 at 5:42 PM, Preexo wrote: > I think having a 6.1, 6.2, 6.3 and a 6.4 (4-5 versions) within this year > sounds pretty damn good and like progress at first!! > ... If there wasn't the on demand version which feels like it's already at > 7.4. And officially this should still be the same product, right? > Money... Money is nice, money is what drives us all. It's why I keep coming > back here... Because it's my job and I earn money with this. So don't stop > earning money, but running a successful open source project doesn't mean > you > can't earn money... vtiger has the potential of being part of this list: > > http://www.infoworld.com/article/2982622/open-source-tools/bossie-awards-2015-the-best-open-source-applications.html > For sure all of them earn money and are still more open source than vtiger. > > The vtiger team should not feel pushed, but this really needs to be > answered. I also think the gap between on demand and open source becomes > more and more fishy. Is the open source project actually being abandoned > very slowly? > > From my point of view: > - The on demand can happily always offer more features than the os version. > But vtiger should put those features up on the marketplace as modules so > that we can buy those for our os installations and don't have to reinvent > the wheel all the time. > - The vtiger forum and this mailing list are very bad to use. So is the svn > repository. If you want us open source users and developers actually > contribute, consider moving the repository to a modern repo like github, > offer a nice to use platform for everyone, don't be stuck with the dodgy > sourceforge and become fakers like they are. > - Answer the question: Do you want us to contribute? Do you want to > actually > live the open source spirit? Do you want to stop maintaining two products? > > @Stacey, do you actually know a fork of vtiger that is somewhere near ready > to be joined? > > > Stacey Johnson wrote > > The answer is: Join or create alternative fork/project. > > No open source spirit around vtiger core. Money. > > > > Stacey > > > > On Fri, Oct 16, 2015 at 7:01 PM, Simone Travaglini < > > > simonetravaglini@ > > >> wrote: > > > >> Alan I hope with your importance in community you will get an answer. :) > >> Many people asked to know about long term plan... but not answer yet! > >> > >> > >> > >> 2015-10-16 13:57 GMT+02:00 Alan Lord < > > > alanslists@ > > > >: > >> > >>> It's a shame something like this didn't get addressed in 6.4.0: > >>> > >>> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 > >>> > >>> In fact this is a pretty boring release with very little to warrant a > >>> new > >>> version number. It's seems more like a 6.3.1 to me. > >>> > >>> I also note that the gap between the On-Demand and Open Source versions > >>> continues to grow wider... What is the long-term plan here? > >>> > >>> Cheers > >>> > >>> Al > >>> > >>> > >>> _______________________________________________ > >>> http://www.vtiger.com/ > >>> > >> > >> > >> > >> -- > >> Simone Travaglini > >> 328 5499846 > >> Linkedin: Simone Travaglini > >> > >> > >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > >> necessario! > >> > >> _______________________________________________ > >> http://www.vtiger.com/ > >> > > > > _______________________________________________ > > http://www.vtiger.com/ > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Custom-Date-Fields-still-broken-in-Reports-tp17722p17754.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Mon Oct 19 14:28:39 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Mon, 19 Oct 2015 15:28:39 +0100 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: <1445256773541-17754.post@n4.nabble.com> Message-ID: <5624FE17.1040900@libertus.co.uk> On 19/10/15 15:22, Prasad wrote: > > We are ambitious to migrate trac.vtiger.com > to new-repository, our operation > team did experiment with Gitlab and confident to turn it to production > sooner. this would be great, much better to have pull requests rather than managing fixes through the mailing list Alan. -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Mon Oct 19 14:31:56 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Mon, 19 Oct 2015 16:31:56 +0200 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: <1445256773541-17754.post@n4.nabble.com> Message-ID: Hi prasad, thanks for answer. Do you have a timeline for future relase? I think could be usefull for us to know what's in your mind for the future. Anyway thanks for your work and support. 2015-10-19 16:22 GMT+02:00 Prasad : > Vtiger 6.4 enables multi-layout support > > and Vtiger 7 on Ondemand builds on-top of this framework. > > The version difference is mainly for due to significant UI changes being > offered on the service (than earlier) . > This new-layout is still under development is updates are pushed > every-day. Which is a bit of challenge to achieve > the same as product releases. > > > Is Vtiger being abandoned very slowy? > > > No. > > The on demand can happily always offer more features than the os version. >> But vtiger should put those features up on the marketplace as modules so >> that we can buy those for our os installations and don't have to reinvent >> the wheel all the time. > > > Features developed for Ondemand are dependent on home-grown services which > cease to work without it. So moving them on to marketplace is not possible. > > The vtiger forum and this mailing list are very bad to use. So is the svn >> repository. If you want us open source users and developers actually >> contribute, consider moving the repository to a modern repo like github, >> offer a nice to use platform for everyone, don't be stuck with the dodgy >> sourceforge and become fakers like they are. > > > We are ambitious to migrate trac.vtiger.com to new-repository, our > operation > team did experiment with Gitlab and confident to turn it to production > sooner. > > Answer the question: Do you want us to contribute? > > > Yes - we appreciate it as always. > > Regards, > Prasad > Vtiger Team > > > -- > FB I Twit > I LIn I Blog > I Website > > On Mon, Oct 19, 2015 at 5:42 PM, Preexo wrote: > >> I think having a 6.1, 6.2, 6.3 and a 6.4 (4-5 versions) within this year >> sounds pretty damn good and like progress at first!! >> ... If there wasn't the on demand version which feels like it's already at >> 7.4. And officially this should still be the same product, right? >> Money... Money is nice, money is what drives us all. It's why I keep >> coming >> back here... Because it's my job and I earn money with this. So don't stop >> earning money, but running a successful open source project doesn't mean >> you >> can't earn money... vtiger has the potential of being part of this list: >> >> http://www.infoworld.com/article/2982622/open-source-tools/bossie-awards-2015-the-best-open-source-applications.html >> For sure all of them earn money and are still more open source than >> vtiger. >> >> The vtiger team should not feel pushed, but this really needs to be >> answered. I also think the gap between on demand and open source becomes >> more and more fishy. Is the open source project actually being abandoned >> very slowly? >> >> From my point of view: >> - The on demand can happily always offer more features than the os >> version. >> But vtiger should put those features up on the marketplace as modules so >> that we can buy those for our os installations and don't have to reinvent >> the wheel all the time. >> - The vtiger forum and this mailing list are very bad to use. So is the >> svn >> repository. If you want us open source users and developers actually >> contribute, consider moving the repository to a modern repo like github, >> offer a nice to use platform for everyone, don't be stuck with the dodgy >> sourceforge and become fakers like they are. >> - Answer the question: Do you want us to contribute? Do you want to >> actually >> live the open source spirit? Do you want to stop maintaining two products? >> >> @Stacey, do you actually know a fork of vtiger that is somewhere near >> ready >> to be joined? >> >> >> Stacey Johnson wrote >> > The answer is: Join or create alternative fork/project. >> > No open source spirit around vtiger core. Money. >> > >> > Stacey >> > >> > On Fri, Oct 16, 2015 at 7:01 PM, Simone Travaglini < >> >> > simonetravaglini@ >> >> >> wrote: >> > >> >> Alan I hope with your importance in community you will get an answer. >> :) >> >> Many people asked to know about long term plan... but not answer yet! >> >> >> >> >> >> >> >> 2015-10-16 13:57 GMT+02:00 Alan Lord < >> >> > alanslists@ >> >> > >: >> >> >> >>> It's a shame something like this didn't get addressed in 6.4.0: >> >>> >> >>> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 >> >>> >> >>> In fact this is a pretty boring release with very little to warrant a >> >>> new >> >>> version number. It's seems more like a 6.3.1 to me. >> >>> >> >>> I also note that the gap between the On-Demand and Open Source >> versions >> >>> continues to grow wider... What is the long-term plan here? >> >>> >> >>> Cheers >> >>> >> >>> Al >> >>> >> >>> >> >>> _______________________________________________ >> >>> http://www.vtiger.com/ >> >>> >> >> >> >> >> >> >> >> -- >> >> Simone Travaglini >> >> 328 5499846 >> >> Linkedin: Simone Travaglini >> >> >> >> >> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >> >> necessario! >> >> >> >> _______________________________________________ >> >> http://www.vtiger.com/ >> >> >> > >> > _______________________________________________ >> > http://www.vtiger.com/ >> >> >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Custom-Date-Fields-still-broken-in-Reports-tp17722p17754.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> >> _______________________________________________ >> http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at theclearsource.com Mon Oct 19 15:09:34 2015 From: alex at theclearsource.com (Alex Martin) Date: Mon, 19 Oct 2015 15:09:34 +0000 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <1445188838179-17750.post@n4.nabble.com> References: <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> <1445111250803-17747.post@n4.nabble.com> <1445188838179-17750.post@n4.nabble.com> Message-ID: <7435fd5b97124a32b4eb440152b001cb@AlexPMS.CS.local> You need to use the exact name of your outgoing trunk, who are you using as a provider? Make a test call from one of the phones and look at the same info in the Asterisk CLI, it will show you your outgoing trunk name to use. -----Original Message----- From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of mahoutchian Sent: Sunday, October 18, 2015 1:21 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: Re: [Vtigercrm-developers] Vtiger Astersik Connector Hi Dear Vladimir Kara?ija, Tanx Tanx Tanx Tanx Tanx My System is : PBX : Elastix x86 32bit ( yum update : asterisk 11.17 and freepbx 2.11 ) Vtiger : Centos 7 x 64 , Vtiger 6.4 Asterisk Connector : 1.4 incoming call in vtiger : ok outgoing click to call for local extentions : ok now i changed systen to this : VTiger : PBXManager Asterisk Server Details *Vtiger Asterisk App URL http://192.168.33.10:8380 *Outbound Context vtiger-outbound *Outbound Trunk DAHDI Channel g0 *Vtiger Secret Key 2463765574556bc57b74661 My Extentions_custom.conf ( part o extentions.conf ) is : ; This file contains the contexts the agents login for the module call center. ; and contains the context conferences for module conferences of elastix 1.0. [from-internal-custom] include => agentlogin include => conferences include => calendar-event include => weather-wakeup ;include => vtiger-outbound ; ????????? i don't know ? need to with o without comment !!!! exten => h,1,Hangup() [vtiger-outbound] exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) [from-pstn-custom] exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) but when clik on a number in vtiger , my phone is ringing with caller id , after pickup, phone say busy tone !!!! My Asterisk LOG After Click to dial > Channel SIP/2186-00000000 was answered -- Executing [2186 at vtiger-outbound:1] AGI("SIP/2186-00000000", "agi://0.0.0.0/incoming.agi") in new stack > 0x9d2ecc8 -- Probation passed - setting RTP source address to 192.168.39.1:8000 -- AGI Script Executing Application: (Dial) Options: (SIP/09123081938 at DAHDI Channel g0, 60) == Using SIP RTP TOS bits 184 == Using SIP RTP CoS mark 5 [2015-10-18 20:53:35] ERROR[4951][C-00000000]: netsock2.c:271 ast_sockaddr_resolve: getaddrinfo("DAHDI Channel g0", "(null)", ...): Name or service not known [2015-10-18 20:53:35] WARNING[4951][C-00000000]: chan_sip.c:6058 create_addr: No such host: DAHDI Channel g0 [2015-10-18 20:53:35] WARNING[4951][C-00000000]: app_dial.c:2437 dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - Subscriber absent) == Everyone is busy/congested at this time (1:0/0/1) -- AGI Script agi://0.0.0.0/incoming.agi completed, returning 0 -- Auto fallthrough, channel 'SIP/2186-00000000' status is 'CHANUNAVAIL' > Saved useragent "Rainbow2 V1.5.0" for peer 2114 BranchVoip*CLI> i think problem is : AGI Script Executing Application: (Dial) Options: (SIP/09123081938 at DAHDI Channel g0, 60) ERROR[4951][C-00000000]: netsock2.c:271 ast_sockaddr_resolve: getaddrinfo("DAHDI Channel g0", "(null)", ...): Name or service not known -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17750.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. _______________________________________________ http://www.vtiger.com/ From manu.k at vtiger.com Mon Oct 19 15:28:51 2015 From: manu.k at vtiger.com (Manu urs) Date: Mon, 19 Oct 2015 20:58:51 +0530 Subject: [Vtigercrm-developers] projects on the calendar In-Reply-To: <5624B40E.5070004@libertus.co.uk> References: <5624B40E.5070004@libertus.co.uk> Message-ID: Hi Alan , Thanks for addressing the issue. Here is a trac link . Regards, Manu Urs On Mon, Oct 19, 2015 at 2:42 PM, Alan Bell wrote: > in modules/Calendar/actions/Feed.php in the pullProjects function at line > 337 there is: > > $params = array_merge($params,$userAndGroupIds); > > which then gets used in this query . . . > > $query = "SELECT projectname, startdate, targetenddate, > crmid FROM vtiger_project"; > $query.= " INNER JOIN vtiger_crmentity ON > vtiger_project.projectid = vtiger_crmentity.crmid"; > $query.= " WHERE vtiger_crmentity.deleted=0 AND smownerid > IN (". generateQuestionMarks($userAndGroupIds) .") AND "; > $query.= " ((startdate >= ? AND targetenddate < ?) OR ( > targetenddate >= ?))"; > $queryResult = $db->pquery($query, $params); > > however, the questionmarks for the users and groups come before the date > parameters, so it doesn't work and projects don't display on the calendar, > changing line 337 to put the users and groups first fixes it: > > $params = array_merge($userAndGroupIds,$params); > > > Alan. > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From ptdesigner at gmail.com Mon Oct 19 16:07:07 2015 From: ptdesigner at gmail.com (Manuel Fernando) Date: Mon, 19 Oct 2015 17:07:07 +0100 Subject: [Vtigercrm-developers] 6.4.0 change to CRMEntity.php? In-Reply-To: References: Message-ID: Hello Alan, Also for products, images don't get uploaded. Tested in official demo vtiger as well Track updated http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8637 Best Regards. Manuel > No dia 16/10/2015, ?s 13:33, Alan Lord escreveu: > > In 6.4.0 is this new chunk of code at line 140: > >> $save_file = 'true'; >> //only images are allowed for Image Attachmenttype >> $mimeType = mime_content_type($file_details['tmp_name']); >> $mimeTypeContents = explode('/', $mimeType); >> // For contacts and products we are sending attachmentType as value >> if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { >> $save_file = validateImageFile($file_details); >> } >> if ($save_file == 'false') { >> return false; >> } > > Note the test line: > >> if ($attachmentType == 'Image' || ($file_details['size'] && $mimeTypeContents[0] == 'image')) { > > I just searched the whole CRMEntity.php file and can't find $attachmentType *anywhere* else in the file... Is that correct? > > Al > > _______________________________________________ > http://www.vtiger.com/ From prasad at vtiger.com Mon Oct 19 16:22:42 2015 From: prasad at vtiger.com (Prasad) Date: Mon, 19 Oct 2015 21:52:42 +0530 Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: <1445256773541-17754.post@n4.nabble.com> Message-ID: Alan, this would be great, much better to have pull requests rather than managing > fixes through the mailing list Yep. Simone, We are planning to set a goal of 5-6 months for next release. This should give us good amount of time to focus on dev + collaboration on other activities. I'm humble towards all the extended support you members are offering - which helps us to sit tight on the desk for dev-tasks. Feeling blessed. Regards, Prasad -- FB I Twit I LIn I Blog I Website On Mon, Oct 19, 2015 at 8:01 PM, Simone Travaglini < simonetravaglini at gmail.com> wrote: > Hi prasad, > thanks for answer. > Do you have a timeline for future relase? I think could be usefull for us > to know what's in your mind for the future. > Anyway thanks for your work and support. > > 2015-10-19 16:22 GMT+02:00 Prasad : > >> Vtiger 6.4 enables multi-layout support >> >> and Vtiger 7 on Ondemand builds on-top of this framework. >> >> The version difference is mainly for due to significant UI changes being >> offered on the service (than earlier) . >> This new-layout is still under development is updates are pushed >> every-day. Which is a bit of challenge to achieve >> the same as product releases. >> >> >> Is Vtiger being abandoned very slowy? >> >> >> No. >> >> The on demand can happily always offer more features than the os version. >>> But vtiger should put those features up on the marketplace as modules so >>> that we can buy those for our os installations and don't have to reinvent >>> the wheel all the time. >> >> >> Features developed for Ondemand are dependent on home-grown services which >> cease to work without it. So moving them on to marketplace is not >> possible. >> >> The vtiger forum and this mailing list are very bad to use. So is the svn >>> repository. If you want us open source users and developers actually >>> contribute, consider moving the repository to a modern repo like github, >>> offer a nice to use platform for everyone, don't be stuck with the dodgy >>> sourceforge and become fakers like they are. >> >> >> We are ambitious to migrate trac.vtiger.com to new-repository, our >> operation >> team did experiment with Gitlab and confident to turn it to production >> sooner. >> >> Answer the question: Do you want us to contribute? >> >> >> Yes - we appreciate it as always. >> >> Regards, >> Prasad >> Vtiger Team >> >> >> -- >> FB I Twit >> I LIn I Blog >> I Website >> >> On Mon, Oct 19, 2015 at 5:42 PM, Preexo wrote: >> >>> I think having a 6.1, 6.2, 6.3 and a 6.4 (4-5 versions) within this year >>> sounds pretty damn good and like progress at first!! >>> ... If there wasn't the on demand version which feels like it's already >>> at >>> 7.4. And officially this should still be the same product, right? >>> Money... Money is nice, money is what drives us all. It's why I keep >>> coming >>> back here... Because it's my job and I earn money with this. So don't >>> stop >>> earning money, but running a successful open source project doesn't mean >>> you >>> can't earn money... vtiger has the potential of being part of this list: >>> >>> http://www.infoworld.com/article/2982622/open-source-tools/bossie-awards-2015-the-best-open-source-applications.html >>> For sure all of them earn money and are still more open source than >>> vtiger. >>> >>> The vtiger team should not feel pushed, but this really needs to be >>> answered. I also think the gap between on demand and open source becomes >>> more and more fishy. Is the open source project actually being abandoned >>> very slowly? >>> >>> From my point of view: >>> - The on demand can happily always offer more features than the os >>> version. >>> But vtiger should put those features up on the marketplace as modules so >>> that we can buy those for our os installations and don't have to reinvent >>> the wheel all the time. >>> - The vtiger forum and this mailing list are very bad to use. So is the >>> svn >>> repository. If you want us open source users and developers actually >>> contribute, consider moving the repository to a modern repo like github, >>> offer a nice to use platform for everyone, don't be stuck with the dodgy >>> sourceforge and become fakers like they are. >>> - Answer the question: Do you want us to contribute? Do you want to >>> actually >>> live the open source spirit? Do you want to stop maintaining two >>> products? >>> >>> @Stacey, do you actually know a fork of vtiger that is somewhere near >>> ready >>> to be joined? >>> >>> >>> Stacey Johnson wrote >>> > The answer is: Join or create alternative fork/project. >>> > No open source spirit around vtiger core. Money. >>> > >>> > Stacey >>> > >>> > On Fri, Oct 16, 2015 at 7:01 PM, Simone Travaglini < >>> >>> > simonetravaglini@ >>> >>> >> wrote: >>> > >>> >> Alan I hope with your importance in community you will get an answer. >>> :) >>> >> Many people asked to know about long term plan... but not answer yet! >>> >> >>> >> >>> >> >>> >> 2015-10-16 13:57 GMT+02:00 Alan Lord < >>> >>> > alanslists@ >>> >>> > >: >>> >> >>> >>> It's a shame something like this didn't get addressed in 6.4.0: >>> >>> >>> >>> http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8625 >>> >>> >>> >>> In fact this is a pretty boring release with very little to warrant a >>> >>> new >>> >>> version number. It's seems more like a 6.3.1 to me. >>> >>> >>> >>> I also note that the gap between the On-Demand and Open Source >>> versions >>> >>> continues to grow wider... What is the long-term plan here? >>> >>> >>> >>> Cheers >>> >>> >>> >>> Al >>> >>> >>> >>> >>> >>> _______________________________________________ >>> >>> http://www.vtiger.com/ >>> >>> >>> >> >>> >> >>> >> >>> >> -- >>> >> Simone Travaglini >>> >> 328 5499846 >>> >> Linkedin: Simone Travaglini >>> >> >>> >> >>> >> Rispetta l'ambiente: non stampare questa mail se non ti ? veramente >>> >> necessario! >>> >> >>> >> _______________________________________________ >>> >> http://www.vtiger.com/ >>> >> >>> > >>> > _______________________________________________ >>> > http://www.vtiger.com/ >>> >>> >>> >>> >>> >>> -- >>> View this message in context: >>> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Custom-Date-Fields-still-broken-in-Reports-tp17722p17754.html >>> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >>> >>> _______________________________________________ >>> http://www.vtiger.com/ >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > > -- > Simone Travaglini > 328 5499846 > Linkedin: Simone Travaglini > > > Rispetta l'ambiente: non stampare questa mail se non ti ? veramente > necessario! > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vladimir at kosacrta.hr Mon Oct 19 17:02:19 2015 From: vladimir at kosacrta.hr (=?UTF-8?Q?Vladimir_Kara=C5=BEija?=) Date: Mon, 19 Oct 2015 19:02:19 +0200 Subject: [Vtigercrm-developers] Vtiger Astersik Connector In-Reply-To: <7435fd5b97124a32b4eb440152b001cb@AlexPMS.CS.local> References: <1444674585014-17635.post@n4.nabble.com> <1444825192960-17659.post@n4.nabble.com> <1444860908978-17672.post@n4.nabble.com> <1445056072991-17741.post@n4.nabble.com> <1445111250803-17747.post@n4.nabble.com> <1445188838179-17750.post@n4.nabble.com> <7435fd5b97124a32b4eb440152b001cb@AlexPMS.CS.local> Message-ID: Hi, so asterisk & vtiger are on same host (server)? You should check in manager.conf if you allowed IP address of vtiger to access asterisk manager. Sorry I did not read all the emails so maybe you mentioned that. I would double-check Outbound Trunk name, it should not have spaces. Could you attach screenshot of DAHDI Channel like I did for SIP trunk? This would clear all things. The name in DAHDI channel configuration that I circled red. regards, Vladimir Vladimir Kara?ija Kosa crta d.o.o. Jagnedje 1 10090 Zagreb OIB: 57724075047 t. +385 1 777 33 85 m. +385 91 122 0511 www.kosacrta.hr On Mon, Oct 19, 2015 at 5:09 PM, Alex Martin wrote: > You need to use the exact name of your outgoing trunk, who are you using > as a provider? Make a test call from one of the phones and look at the same > info in the Asterisk CLI, it will show you your outgoing trunk name to use. > > > > -----Original Message----- > From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of mahoutchian > Sent: Sunday, October 18, 2015 1:21 PM > To: vtigercrm-developers at lists.vtigercrm.com > Subject: Re: [Vtigercrm-developers] Vtiger Astersik Connector > > Hi Dear Vladimir Kara?ija, > Tanx Tanx Tanx Tanx Tanx > My System is : > PBX : Elastix x86 32bit ( yum update : asterisk 11.17 and freepbx 2.11 ) > Vtiger : Centos 7 x 64 , Vtiger 6.4 Asterisk Connector : 1.4 incoming call > in vtiger : ok outgoing click to call for local extentions : ok > > now i changed systen to this : > VTiger : > > PBXManager > > Asterisk Server Details > *Vtiger Asterisk App URL http://192.168.33.10:8380 > *Outbound Context vtiger-outbound > *Outbound Trunk DAHDI Channel g0 > *Vtiger Secret Key 2463765574556bc57b74661 > > My Extentions_custom.conf ( part o extentions.conf ) is : > > ; This file contains the contexts the agents login for the module call > center. > ; and contains the context conferences for module conferences of elastix > 1.0. > > [from-internal-custom] > include => agentlogin > include => conferences > include => calendar-event > include => weather-wakeup > > ;include => vtiger-outbound ; ????????? i don't know ? need to with o > without comment !!!! > > exten => h,1,Hangup() > > > [vtiger-outbound] > exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) > > > [from-pstn-custom] > exten => _X.,1,Agi(agi://0.0.0.0/incoming.agi) > > but when clik on a number in vtiger , my phone is ringing with caller id , > after pickup, phone say busy tone !!!! > > My Asterisk LOG After Click to dial > > > Channel SIP/2186-00000000 was answered > -- Executing [2186 at vtiger-outbound:1] AGI("SIP/2186-00000000", > "agi://0.0.0.0/incoming.agi") in new stack > > 0x9d2ecc8 -- Probation passed - setting RTP source address to > 192.168.39.1:8000 > -- AGI Script Executing Application: (Dial) Options: > (SIP/09123081938 at DAHDI Channel g0, 60) > == Using SIP RTP TOS bits 184 > == Using SIP RTP CoS mark 5 > [2015-10-18 20:53:35] ERROR[4951][C-00000000]: netsock2.c:271 > ast_sockaddr_resolve: getaddrinfo("DAHDI Channel g0", "(null)", ...): Name > or service not known > [2015-10-18 20:53:35] WARNING[4951][C-00000000]: chan_sip.c:6058 > create_addr: No such host: DAHDI Channel g0 > [2015-10-18 20:53:35] WARNING[4951][C-00000000]: app_dial.c:2437 > dial_exec_full: Unable to create channel of type 'SIP' (cause 20 - > Subscriber absent) > == Everyone is busy/congested at this time (1:0/0/1) > -- AGI Script agi://0.0.0.0/incoming.agi > completed, returning 0 > -- Auto fallthrough, channel 'SIP/2186-00000000' status is > 'CHANUNAVAIL' > > Saved useragent "Rainbow2 V1.5.0" for peer 2114 BranchVoip*CLI> > > i think problem is : > > AGI Script Executing Application: (Dial) Options: (SIP/09123081938 at DAHDI > Channel g0, 60) > > ERROR[4951][C-00000000]: netsock2.c:271 ast_sockaddr_resolve: > getaddrinfo("DAHDI Channel g0", "(null)", ...): Name or service not known > > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Vtiger-Astersik-Connector-tp17624p17750.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > > _______________________________________________ > http://www.vtiger.com/ > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Tue Oct 20 03:01:09 2015 From: preexo at googlemail.com (Preexo) Date: Mon, 19 Oct 2015 20:01:09 -0700 (PDT) Subject: [Vtigercrm-developers] Custom Date Fields still broken in Reports In-Reply-To: References: <1445256773541-17754.post@n4.nabble.com> Message-ID: <1445310069109-17763.post@n4.nabble.com> Thanks Prasad! Good to hear, all of it! A release cycle of 5 months sounds like a good plan to make sure vtiger-os stays a living product. Moving the repository to somewhere more accessible for external PRs will be good. If github or gitlab probably doesn't matter, but I would always go with the most common one ;) Any plans about improving the user forum which gets spammed really badly at the moment? Prasad-14 wrote > Features developed for Ondemand are dependent on home-grown services which > cease to work without it. So moving them on to marketplace is not > possible. I don't get this, sorry... I don't understand at all, Could you please elaborate? Why can the module builder of the on demand version for example not be released as a module? Why can't the much better taxation system of the on demand not be released as a module? Why did someone have to reinvent the wheel about the global search, why didn't you release this as a module? What about the payments module? Quickbooks integration module? This list could go on and on... I can not believe that all of those features and improvements can not be released as modules through the marketplace for the open source installations to buy them and use them as well. Honestly, if those above features can not be developed as modules, then you might want to put more focus on the module engine of vtiger, features like that need to be able to be modular and I can not understand why you would want to hold them back and make third parties to reinvent the wheel and develop them again... Is it just me who shivers whenever I hear the words "reinvent the wheel"? I can see a bright future if vtiger puts more weight on the open source spirit again :) But I appreciate your efforts already! -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Custom-Date-Fields-still-broken-in-Reports-tp17722p17763.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From preexo at googlemail.com Tue Oct 20 03:22:10 2015 From: preexo at googlemail.com (Preexo) Date: Mon, 19 Oct 2015 20:22:10 -0700 (PDT) Subject: [Vtigercrm-developers] Vtiger 6.4 arrives with support for installing Layouts via marketplace. In-Reply-To: <8F67B148-012E-4165-89D8-654E8958F0AC@gmail.com> References: <8F67B148-012E-4165-89D8-654E8958F0AC@gmail.com> Message-ID: <1445311330884-17764.post@n4.nabble.com> mime_content_type: This function has been deprecated as the PECL extension Fileinfo provides the same functionality (and more) in a much cleaner way. http://php.net/manual/en/function.mime-content-type.php You have two options: Downgrade your php or change the function use of mime_content_type to use finfo_file. -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Re-Vtiger-6-4-arrives-with-support-for-installing-Layouts-via-marketplace-tp17712p17764.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From preexo at googlemail.com Tue Oct 20 04:31:08 2015 From: preexo at googlemail.com (Preexo) Date: Mon, 19 Oct 2015 21:31:08 -0700 (PDT) Subject: [Vtigercrm-developers] add custom field with uitype 10 field to calendar events module In-Reply-To: References: <1444279553881-17608.post@n4.nabble.com> <1444290155487-17611.post@n4.nabble.com> <1444382156454-17622.post@n4.nabble.com> <1444732128459-17640.post@n4.nabble.com> Message-ID: <1445315468398-17765.post@n4.nabble.com> Alan Lord (News) wrote > You need to comment out the Add Task item in the $calendarActionLinks > array in the DetailView Model of *each* of the affected modules... Thanks for that tip, worked like a charme...! Alan Lord (News) wrote > You will also need to "hack" the QuickCreate template file, the Vtiger > RelationListView Model, and hide the vtiger_relatedlist entries for the > "Calendar" tabid - not the "Events" tabid. Sorry, I don't get what that would be for. I was actually hoping to get rid of the button "+ Add task" in the related list view as well. I achieved getting rid of both buttons ("+ Add Event" and "+ Add Task") by this query, setting the actions to nothing: UPDATE `vtiger_dev`.`vtiger_relatedlists` SET `actions` = '' WHERE `vtiger_relatedlists`.`relation_id` =146; But having the button "+ Add Event" wouldn't hurt, I just can't find where to tell only one of them should be shown. Alan Lord (News) wrote > The Calendar is a bloody mess. :-D Hell yeah it is... Maybe we can join forces one day and clean it up a little more... Not sure why it is so non-standard at all...? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/add-custom-field-with-uitype-10-field-to-calendar-events-module-tp17608p17765.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From prasad at vtiger.com Tue Oct 20 05:53:28 2015 From: prasad at vtiger.com (Prasad) Date: Tue, 20 Oct 2015 11:23:28 +0530 Subject: [Vtigercrm-developers] code.vtiger.com is live! Message-ID: Dear members, We are happy to introduce code.vtiger.com - our new development repository and issue tracker. It is powered by gitlab (thanks for the wonderful application). We have setup the projects under vtiger account. - vtiger/vtigercrm (6.4.0 version onwards) - vtiger/customerportal (6.4.0 version onwards) Please send us an email at [info @ vtiger.com] if you need an account at code.vtiger.com (this hopefully help us fight spam signups - while we get started on). With this account you will be able to: - Browser, fork and collaborate with projects available. - Report Issues and get updates. - Create new Vtiger based extension projects. *NOTE: trac.vtiger.com - which served us until now will be in read-only mode.* Kindly use code.vtiger.com to report issues and follow updates. Regards, Prasad Vtiger Team -- FB I Twit I LIn I Blog I Website -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Tue Oct 20 10:09:38 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Tue, 20 Oct 2015 11:09:38 +0100 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: Message-ID: <562612E2.3080801@libertus.co.uk> and now it has the first merge request :) thanks for putting it on that system it seems to work very well. Alan. On 20/10/15 06:53, Prasad wrote: > Dear members, > > We are happy to introduce code.vtiger.com - > our new development repository and issue tracker. It is powered by > gitlab (thanks for the > wonderful application). > > We have setup the projects under vtiger > account. > > * vtiger/vtigercrm (6.4.0 > version onwards) > * vtiger/customerportal > (6.4.0 version onwards) > > Please send us an email at [info @ vtiger.com ] if > you need an account at code.vtiger.com > (this hopefully help us fight spam signups - while we get started on). > > With this account you will be able to: > > * Browser, fork and collaborate with projects available. > * Report Issues and get updates. > * Create new Vtiger based extension projects. > > /NOTE: trac.vtiger.com - which served us > until now will be in read-only mode./ > > Kindly use code.vtiger.com to report issues > and follow updates. > > Regards, > Prasad > Vtiger Team > -- > FB I Twit > I LIn > I Blog > I Website > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From prasad at vtiger.com Tue Oct 20 10:33:23 2015 From: prasad at vtiger.com (Prasad) Date: Tue, 20 Oct 2015 16:03:23 +0530 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: <562612E2.3080801@libertus.co.uk> References: <562612E2.3080801@libertus.co.uk> Message-ID: Thank you! *We are in the learning-phase to use this tool - please bear with us while we catch up.* Regards, Prasad -- FB I Twit I LIn I Blog I Website On Tue, Oct 20, 2015 at 3:39 PM, Alan Bell wrote: > and now it has the first merge request :) thanks for putting it on that > system it seems to work very well. > > Alan. > > > On 20/10/15 06:53, Prasad wrote: > > Dear members, > > We are happy to introduce code.vtiger.com - our new development > repository and issue tracker. It is powered by gitlab > (thanks for the wonderful > application). > > We have setup the projects under vtiger > account. > > - vtiger/vtigercrm (6.4.0 > version onwards) > - vtiger/customerportal > (6.4.0 version onwards) > > Please send us an email at [info @ vtiger.com] if you need an account at > code.vtiger.com > (this hopefully help us fight spam signups - while we get started on). > > With this account you will be able to: > > - Browser, fork and collaborate with projects available. > - Report Issues and get updates. > - Create new Vtiger based extension projects. > > *NOTE: trac.vtiger.com - which served us until > now will be in read-only mode.* > > Kindly use code.vtiger.com to report issues and follow updates. > > Regards, > Prasad > Vtiger Team > -- > FB I Twit > I LIn I Blog > I Website > > > _______________________________________________http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 20 10:48:24 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 20 Oct 2015 12:48:24 +0200 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <562612E2.3080801@libertus.co.uk> Message-ID: Very good news! 2015-10-20 12:33 GMT+02:00 Prasad : > Thank you! > > *We are in the learning-phase to use this tool - please bear with us while > we catch up.* > > Regards, > Prasad > > -- > FB I Twit > I LIn I Blog > I Website > > On Tue, Oct 20, 2015 at 3:39 PM, Alan Bell > wrote: > >> and now it has the first merge request :) thanks for putting it on that >> system it seems to work very well. >> >> Alan. >> >> >> On 20/10/15 06:53, Prasad wrote: >> >> Dear members, >> >> We are happy to introduce code.vtiger.com - our new development >> repository and issue tracker. It is powered by gitlab >> (thanks for the wonderful >> application). >> >> We have setup the projects under vtiger >> account. >> >> - vtiger/vtigercrm (6.4.0 >> version onwards) >> - vtiger/customerportal >> (6.4.0 version onwards) >> >> Please send us an email at [info @ vtiger.com] if you need an account at >> code.vtiger.com >> (this hopefully help us fight spam signups - while we get started on). >> >> With this account you will be able to: >> >> - Browser, fork and collaborate with projects available. >> - Report Issues and get updates. >> - Create new Vtiger based extension projects. >> >> *NOTE: trac.vtiger.com - which served us until >> now will be in read-only mode.* >> >> Kindly use code.vtiger.com to report issues and follow updates. >> >> Regards, >> Prasad >> Vtiger Team >> -- >> FB I Twit >> I LIn I Blog >> I Website >> >> >> _______________________________________________http://www.vtiger.com/ >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From michele.mastropieri at gmail.com Tue Oct 20 10:53:06 2015 From: michele.mastropieri at gmail.com (Michele Mastropieri) Date: Tue, 20 Oct 2015 12:53:06 +0200 Subject: [Vtigercrm-developers] PBX Manager - Record calls transfers. In-Reply-To: References: Message-ID: Any Ideas guys? 2015-10-16 9:53 GMT+02:00 Michele Mastropieri : > Hi to all, > > I've add the agi script also to xfer context in extensions.conf. Now also > transfer call was recorded into vtiger pbxmanager. > Only one problem remains: when an extension(e.g.104) transfer the incoming > call to another extension(e.g.106), all extensions > rings(100,101,102,103,104,105,106) until the 106 answer. > > 2015-10-14 17:09 GMT+02:00 Alex Martin : > >> I?m going to test this on one of our systems later today to see if I can >> see whats happening. I?ll get back to you >> >> >> >> Alex >> >> >> >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: >> vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Michele >> Mastropieri >> *Sent:* Wednesday, October 14, 2015 10:38 AM >> *To:* vtigercrm-developers at lists.vtigercrm.com >> *Subject:* Re: [Vtigercrm-developers] PBX Manager - Record calls >> transfers. >> >> >> >> Guys, no ideas? >> >> >> >> 2015-10-13 17:40 GMT+02:00 Michele Mastropieri < >> michele.mastropieri at gmail.com>: >> >> Hi to all, >> >> >> >> if I answer to an incoming call and thus I transfer it to other >> extension, the module store information about the call but it keep only >> information about pre-trasfer. >> >> >> >> Let me explain better with an example. >> >> >> >> 1. Incoming call is answered by extension num 101. >> >> 2. 101 transfer call to 102 extension. >> >> 3. After 10 minutes 102 hung up. >> >> 4. Into record list I have only 1 record: the initial conversation >> between 101 and external customer. I lost the information about the entire >> conversation that is 10minutes call. >> >> >> >> How solve it? >> >> >> >> -- >> >> ------------------------------ >> >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Tue Oct 20 11:30:54 2015 From: preexo at googlemail.com (Preexo) Date: Tue, 20 Oct 2015 04:30:54 -0700 (PDT) Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <562612E2.3080801@libertus.co.uk> Message-ID: <1445340654944-17771.post@n4.nabble.com> Really great news! Good step in a good direction! I sent out a mail to you for an account 5 minutes after your post on the mailing list, haven't received an answer yet, maybe it got lost, I just resent. -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-code-vtiger-com-is-live-tp17766p17771.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From prasad at vtiger.com Tue Oct 20 11:56:42 2015 From: prasad at vtiger.com (Prasad) Date: Tue, 20 Oct 2015 17:26:42 +0530 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: <1445340654944-17771.post@n4.nabble.com> References: <562612E2.3080801@libertus.co.uk> <1445340654944-17771.post@n4.nabble.com> Message-ID: Was curious why email did not reach ... anyway I responded to you on separate email about the activation link. Regards, Prasad -- FB I Twit I LIn I Blog I Website On Tue, Oct 20, 2015 at 5:00 PM, Preexo wrote: > Really great news! Good step in a good direction! > I sent out a mail to you for an account 5 minutes after your post on the > mailing list, haven't received an answer yet, maybe it got lost, I just > resent. > > > > > -- > View this message in context: > http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-code-vtiger-com-is-live-tp17766p17771.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Tue Oct 20 19:52:48 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Wed, 21 Oct 2015 08:52:48 +1300 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: Message-ID: <56269B90.2030109@tw.co.nz> Probably a stupid question, but I do still have an installation I need to bring from 5.2 to 6.4... Are the recent updates to the migration scripts released in any way on the site, or do I need to pull code from the repo/trac tickets directly? TIA On 17/10/15 00:51, Uma S wrote: > Hi Matus, > > Thanks! for the support on fixing migration bug from 540 to 600. > > Please report this on trac.vtiger.com and set > target version as 6.4.0. Will keep track of this fix for successful > migration of source to vtiger 6. > > On Fri, Oct 16, 2015 at 1:16 PM, IT-Solutions4You > wrote: > > + Another bug: > > in vtiger6.zip > \modules\Migration\schema\540_to_600RC.php > line 806 > $label = $labelInfo[$row['crmid']]; > should by > $label = decode_html($labelInfo[$row['crmid']]); > > In many EU country (German, France, Italy, Slovak, Chzech, > Polands, Hungary, .....) we use special chars so its necessary use > decode_html() function everywhere. > > > Is there any interface where can we track all issues with > migration and add our solutions? We have done many migrations from > 5.x to 6.x and each migration goes wrong. We also saw many wrong > 6.x installations, the clients reports to us isseu with our > extensions, but the problem was wrong 6.x migration. I suppose > clear 5->6 migartion is very important part for vtiger Open Source > too. > > I read all Alan emails arround mirgations bug, but yeah, first > after 2 years someone from vtiger answer it. > > Matus > ITS4You > > > > D?a 16. 10. 2015 o 8:40 Alan Lord nap?sal(a): > > On 16/10/15 06:46, Uma S wrote: > > Hi Alan, > > I have updated the logic to handle empty block-label for > events and > calendar module in above mentioned trac > > ticket. Please do > have a look and update me your observations. > > > Thanks Uma, > > That looks better - I will test it as soon as I get chance. > > Alan > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ > > > > > -- > With > Best Regards > Uma.S > Vtiger Team > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Tue Oct 20 20:55:01 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Wed, 21 Oct 2015 09:55:01 +1300 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: Message-ID: <5626AA25.3050304@tw.co.nz> Looking good guys. Will there be separate projects for things like the Google module? I realise that the code for the module is in the main project repo, however in it's zipped format this is a little rough to work with. On 20/10/15 18:53, Prasad wrote: > Dear members, > > We are happy to introduce code.vtiger.com - > our new development repository and issue tracker. It is powered by > gitlab (thanks for the > wonderful application). > > We have setup the projects under vtiger > account. > > * vtiger/vtigercrm (6.4.0 > version onwards) > * vtiger/customerportal > (6.4.0 version onwards) > > Please send us an email at [info @ vtiger.com ] if > you need an account at code.vtiger.com > (this hopefully help us fight spam signups - while we get started on). > > With this account you will be able to: > > * Browser, fork and collaborate with projects available. > * Report Issues and get updates. > * Create new Vtiger based extension projects. > > /NOTE: trac.vtiger.com - which served us > until now will be in read-only mode./ > > Kindly use code.vtiger.com to report issues > and follow updates. > > Regards, > Prasad > Vtiger Team > -- > FB I Twit > I LIn > I Blog > I Website > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at greenbitweb.com Tue Oct 20 22:06:09 2015 From: info at greenbitweb.com (Matteo Baranzoni) Date: Wed, 21 Oct 2015 00:06:09 +0200 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: <5626AA25.3050304@tw.co.nz> References: <5626AA25.3050304@tw.co.nz> Message-ID: Richard check pkg/vtiger/modules, here you can find all vtiger extension source. Il 20/ott/2015 22:56, "Richard Hills - Technologywise" ha scritto: > Looking good guys. > > Will there be separate projects for things like the Google module? I > realise that the code for the module is in the main project repo, however > in it's zipped format this is a little rough to work with. > > On 20/10/15 18:53, Prasad wrote: > > Dear members, > > We are happy to introduce code.vtiger.com - our new development > repository and issue tracker. It is powered by gitlab > (thanks for the wonderful > application). > > We have setup the projects under vtiger > account. > > - vtiger/vtigercrm (6.4.0 > version onwards) > - vtiger/customerportal > (6.4.0 version onwards) > > Please send us an email at [info @ vtiger.com] if you need an account at > code.vtiger.com > (this hopefully help us fight spam signups - while we get started on). > > With this account you will be able to: > > - Browser, fork and collaborate with projects available. > - Report Issues and get updates. > - Create new Vtiger based extension projects. > > *NOTE: trac.vtiger.com - which served us until > now will be in read-only mode.* > > Kindly use code.vtiger.com to report issues and follow updates. > > Regards, > Prasad > Vtiger Team > -- > FB I Twit > I LIn I Blog > I Website > > > _______________________________________________http://www.vtiger.com/ > > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZrichard at tw.co.nzwww.technologywise.co.nz > ph: +64 (0)7 571 1060 > fax: +64 (0)7 571 1061 > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Tue Oct 20 22:48:34 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Wed, 21 Oct 2015 11:48:34 +1300 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <5626AA25.3050304@tw.co.nz> Message-ID: <5626C4C2.4040605@tw.co.nz> Now I feel stupid, I am sure I knew that! Thanks Matteo On 21/10/15 11:06, Matteo Baranzoni wrote: > > Richard check pkg/vtiger/modules, here you can find all vtiger > extension source. > > Il 20/ott/2015 22:56, "Richard Hills - Technologywise" > > ha scritto: > > Looking good guys. > > Will there be separate projects for things like the Google module? > I realise that the code for the module is in the main project > repo, however in it's zipped format this is a little rough to work > with. > > On 20/10/15 18:53, Prasad wrote: >> Dear members, >> >> We are happy to introduce code.vtiger.com >> - our new development repository and >> issue tracker. It is powered by gitlab >> (thanks for the >> wonderful application). >> >> We have setup the projects under vtiger >> account. >> >> * vtiger/vtigercrm >> (6.4.0 version onwards) >> * vtiger/customerportal >> (6.4.0 version >> onwards) >> >> Please send us an email at [info @ vtiger.com >> ] if you need an account at code.vtiger.com >> >> (this hopefully help us fight spam signups - while we get started >> on). >> >> With this account you will be able to: >> >> * Browser, fork and collaborate with projects available. >> * Report Issues and get updates. >> * Create new Vtiger based extension projects. >> >> /NOTE: trac.vtiger.com - which served us >> until now will be in read-only mode./ >> >> Kindly use code.vtiger.com to report >> issues and follow updates. >> >> Regards, >> Prasad >> Vtiger Team >> -- >> FB I Twit >> I LIn >> I Blog >> I Website >> >> >> _______________________________________________ >> http://www.vtiger.com/ > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZ > richard at tw.co.nz > www.technologywise.co.nz > ph:+64 (0)7 571 1060 > fax:+64 (0)7 571 1061 > > > _______________________________________________ > http://www.vtiger.com/ > > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Wed Oct 21 06:53:35 2015 From: alanslists at gmail.com (Alan Lord) Date: Wed, 21 Oct 2015 07:53:35 +0100 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: <56269B90.2030109@tw.co.nz> References: <56269B90.2030109@tw.co.nz> Message-ID: On 20/10/15 20:52, Richard Hills - Technologywise wrote: > Probably a stupid question, but I do still have an installation I need > to bring from 5.2 to 6.4... Are the recent updates to the migration > scripts released in any way on the site, or do I need to pull code from > the repo/trac tickets directly? > AFAICT very few of the migration bugs I have reported have been incorporated into the codebase (PBXManager, Label Updater, User Extensions...). So you will need to keep your own set of scripts ;-) HINT: If you stick this lot at the top of the XYZ_to_ZYX.php files (BEFORE the "if (!defined('VTIGER_UPGRADE')) die('Invalid entry point');" test) you can run them from the command line (mostly). There might be a few missing includes but do a bit of testing and you'll get them to run :-D > const VTIGER_UPGRADE = true; > $Vtiger_Utils_Log = true; > > require_once('include/logging.php'); > require_once('config.php'); > require_once('include/utils/CommonUtils.php'); > > require_once('includes/main/WebUI.php'); > > // Let's see some errors > ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); > ini_set('display_startup_errors', 1); > ini_set('display_errors', 1); I have a custom vtiger tarball which starts with a clean 5.4.0 installed system, then I extract the various update packages (5.4.0 to 6.0.0.zip) over the top until I'm at the latest release. then I copy in my customised schema files. Then I tarball that lot up. Once you configure the config.ini for the db you want to migrate you can run these scripts from the root of this vtiger system # sudo -u www-data php -f modules/Migration/schema/XYZ_to_ZYX.php You will have to search this list for my various posts over the years which point out the many errors in the migration scripts and suggested fixes. Hope that helps everyone who struggles with the web-based migration process; in our experience, for a database of any significant size they _will_ fail. At least when you run them from the cli they will not time out and you can see where it failed ;-) Al From richard at tw.co.nz Wed Oct 21 19:14:01 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Thu, 22 Oct 2015 08:14:01 +1300 Subject: [Vtigercrm-developers] Another Migration Bug... In-Reply-To: References: <56269B90.2030109@tw.co.nz> Message-ID: <5627E3F9.7000908@tw.co.nz> Haha yeah thanks Alan, we do indeed have our own migration script for 5.4 to 6.0, have used standard since then without too many issues. I ran a standard 5.2 to 5.4 upgrade yesterday and the result was passable after some small changes to the code. From there it was smooth sailing to 6.4 (I say this without any full testing completed). Nice to see how you're managing to run the upgrade scripts from the command line, it would be great to see this become standard. On 21/10/15 19:53, Alan Lord wrote: > On 20/10/15 20:52, Richard Hills - Technologywise wrote: >> Probably a stupid question, but I do still have an installation I need >> to bring from 5.2 to 6.4... Are the recent updates to the migration >> scripts released in any way on the site, or do I need to pull code from >> the repo/trac tickets directly? >> > > AFAICT very few of the migration bugs I have reported have been > incorporated into the codebase (PBXManager, Label Updater, User > Extensions...). > > So you will need to keep your own set of scripts ;-) > > HINT: > > If you stick this lot at the top of the XYZ_to_ZYX.php files (BEFORE > the "if (!defined('VTIGER_UPGRADE')) die('Invalid entry point');" > test) you can run them from the command line (mostly). There might be > a few missing includes but do a bit of testing and you'll get them to > run :-D > >> const VTIGER_UPGRADE = true; > >> $Vtiger_Utils_Log = true; > >> > >> require_once('include/logging.php'); > >> require_once('config.php'); > >> require_once('include/utils/CommonUtils.php'); > >> > >> require_once('includes/main/WebUI.php'); > >> > >> // Let's see some errors > >> ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_DEPRECATED & >> ~E_STRICT); > >> ini_set('display_startup_errors', 1); > >> ini_set('display_errors', 1); > > I have a custom vtiger tarball which starts with a clean 5.4.0 > installed system, then I extract the various update packages (5.4.0 to > 6.0.0.zip) over the top until I'm at the latest release. then I copy > in my customised schema files. Then I tarball that lot up. > > Once you configure the config.ini for the db you want to migrate you > can run these scripts from the root of this vtiger system > > # sudo -u www-data php -f modules/Migration/schema/XYZ_to_ZYX.php > > You will have to search this list for my various posts over the years > which point out the many errors in the migration scripts and suggested > fixes. > > Hope that helps everyone who struggles with the web-based migration > process; in our experience, for a database of any significant size > they _will_ fail. At least when you run them from the cli they will > not time out and you can see where it failed ;-) > > > Al > > > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 From Chris.Hamono at sa.gov.au Wed Oct 21 22:38:03 2015 From: Chris.Hamono at sa.gov.au (Hamono, Chris (DPC)) Date: Thu, 22 Oct 2015 09:08:03 +1030 Subject: [Vtigercrm-developers] code.vtiger.com is live! Message-ID: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> Congratulations Fantastic, I am over the moon about this! Can I say 1 small step for vtiger 1 giant leap for developers ? Chris From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Prasad Sent: Tuesday, 20 October 2015 4:23 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] code.vtiger.com is live! Dear members, We are happy to introduce code.vtiger.com - our new development repository and issue tracker. It is powered by gitlab (thanks for the wonderful application). We have setup the projects under vtiger account. * vtiger/vtigercrm (6.4.0 version onwards) * vtiger/customerportal (6.4.0 version onwards) Please send us an email at [info @ vtiger.com] if you need an account at code.vtiger.com (this hopefully help us fight spam signups - while we get started on). With this account you will be able to: * Browser, fork and collaborate with projects available. * Report Issues and get updates. * Create new Vtiger based extension projects. NOTE: trac.vtiger.com - which served us until now will be in read-only mode. Kindly use code.vtiger.com to report issues and follow updates. Regards, Prasad Vtiger Team -- FB I Twit I LIn I Blog I Website -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at tw.co.nz Thu Oct 22 00:15:54 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Thu, 22 Oct 2015 13:15:54 +1300 Subject: [Vtigercrm-developers] Custom Layouts Message-ID: <56282ABA.2020306@tw.co.nz> Hi guys Just wondering if anyone has already played with this in 6.4... In my instance we have a number of layout files which I have had to modify to suit my needs: > ./modules/Inventory/LineItemsContent.tpl > ./modules/Calendar/resources/List.js > ./modules/Accounts/DetailViewHeaderTitle.tpl > ./modules/Campaigns/resources/RelatedList.js > ./modules/Campaigns/RelatedList.tpl > ./modules/Assets/EditView.tpl > ./modules/HelpDesk/DetailViewHeaderTitle.tpl > ./modules/Project/DetailViewHeaderTitle.tpl > ./modules/Vtiger/SideBarLinks.tpl > ./modules/Vtiger/resources/Edit.js > ./modules/Vtiger/resources/Vtiger.js > ./modules/Vtiger/resources/Header.js > ./modules/Vtiger/UnifiedSearchResults.tpl > ./modules/Vtiger/DetailViewHeader.tpl > ./modules/Vtiger/DetailViewPostProcess.tpl > ./modules/Contacts/DetailViewHeaderTitle.tpl Ideally I simply wanted to move these templates to a custom layout, thinking that the system would then fall back to the files from vlayout when it found something was not available in our layout. After some very quick testing, it seems that custom layouts in fact need to contain the entirety of the layout folder, which to me seems wrong, I would much rather see this layout system treating new layouts as an override rather than a replacement for the existing layout. Without any more time to put on this at the moment I just wondered if someone can either confirm that I am correct and the layout needs to contain all files, or if I am maybe just overlooking something like assigning a parent layout? To be honest, with a single layout per instance if this is not an override system I see very little benefit from it being implemented, maybe with the exception of making it slightly quicker to check/merge layout changes between version updates. Would also be keen to hear about planned development of this feature. Thanks -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 From prasad at vtiger.com Thu Oct 22 04:08:51 2015 From: prasad at vtiger.com (Prasad) Date: Thu, 22 Oct 2015 09:38:51 +0530 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> References: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: Thank you Chris. All credits to community for the great support and engagement which made it possible. Regards, Prasad -- FB I Twit I LIn I Blog I Website On Thu, Oct 22, 2015 at 4:08 AM, Hamono, Chris (DPC) wrote: > Congratulations > > > > Fantastic, I am over the moon about this! > > > > Can I say 1 small step for vtiger 1 giant leap for developers J > > > > Chris > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Prasad > *Sent:* Tuesday, 20 October 2015 4:23 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] code.vtiger.com is live! > > > > Dear members, > > > > We are happy to introduce code.vtiger.com - our new development > repository and issue tracker. It is powered by gitlab > (thanks for the wonderful > application). > > > > We have setup the projects under vtiger > account. > > - vtiger/vtigercrm (6.4.0 > version onwards) > - vtiger/customerportal > (6.4.0 version onwards) > > Please send us an email at [info @ vtiger.com] if you need an account at > code.vtiger.com > > (this hopefully help us fight spam signups - while we get started on). > > > > With this account you will be able to: > > - Browser, fork and collaborate with projects available. > - Report Issues and get updates. > - Create new Vtiger based extension projects. > > *NOTE: trac.vtiger.com - which served us until > now will be in read-only mode.* > > > > Kindly use code.vtiger.com to report issues and follow updates. > > > > Regards, > > Prasad > > Vtiger Team > > -- > > FB I Twit > I LIn I Blog > I Website > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From prasad at vtiger.com Thu Oct 22 04:11:42 2015 From: prasad at vtiger.com (Prasad) Date: Thu, 22 Oct 2015 09:41:42 +0530 Subject: [Vtigercrm-developers] Custom Layouts In-Reply-To: <56282ABA.2020306@tw.co.nz> References: <56282ABA.2020306@tw.co.nz> Message-ID: Richard, If you plan to tweak the existing UI doing through Javascript (HEADERSCRIPT) is better. Regards, Prasad Vtiger Team -- FB I Twit I LIn I Blog I Website On Thu, Oct 22, 2015 at 5:45 AM, Richard Hills - Technologywise < richard at tw.co.nz> wrote: > Hi guys > > Just wondering if anyone has already played with this in 6.4... > > In my instance we have a number of layout files which I have had to modify > to suit my needs: > >> ./modules/Inventory/LineItemsContent.tpl >> ./modules/Calendar/resources/List.js >> ./modules/Accounts/DetailViewHeaderTitle.tpl >> ./modules/Campaigns/resources/RelatedList.js >> ./modules/Campaigns/RelatedList.tpl >> ./modules/Assets/EditView.tpl >> ./modules/HelpDesk/DetailViewHeaderTitle.tpl >> ./modules/Project/DetailViewHeaderTitle.tpl >> ./modules/Vtiger/SideBarLinks.tpl >> ./modules/Vtiger/resources/Edit.js >> ./modules/Vtiger/resources/Vtiger.js >> ./modules/Vtiger/resources/Header.js >> ./modules/Vtiger/UnifiedSearchResults.tpl >> ./modules/Vtiger/DetailViewHeader.tpl >> ./modules/Vtiger/DetailViewPostProcess.tpl >> ./modules/Contacts/DetailViewHeaderTitle.tpl >> > > Ideally I simply wanted to move these templates to a custom layout, > thinking that the system would then fall back to the files from vlayout > when it found something was not available in our layout. > > After some very quick testing, it seems that custom layouts in fact need > to contain the entirety of the layout folder, which to me seems wrong, I > would much rather see this layout system treating new layouts as an > override rather than a replacement for the existing layout. > > Without any more time to put on this at the moment I just wondered if > someone can either confirm that I am correct and the layout needs to > contain all files, or if I am maybe just overlooking something like > assigning a parent layout? > > To be honest, with a single layout per instance if this is not an override > system I see very little benefit from it being implemented, maybe with the > exception of making it slightly quicker to check/merge layout changes > between version updates. > > Would also be keen to hear about planned development of this feature. > > Thanks > > -- > Richard Hills > TechnologyWise Ltd, Tauranga, NZ > richard at tw.co.nz > www.technologywise.co.nz > ph: +64 (0)7 571 1060 > fax: +64 (0)7 571 1061 > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Thu Oct 22 08:29:29 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Thu, 22 Oct 2015 09:29:29 +0100 Subject: [Vtigercrm-developers] how to fix a bug on code.vtiger.com Message-ID: <56289E69.9030709@libertus.co.uk> Hi, I spent a bit of time figuring out how to use the new vtiger code repository and made some notes as I went along, then turned this into the README.md for vtiger, so now there is some documentation on how to report, and then fix an issue using git and code.vtiger.com now these are on the front page of the project because it picks up and renders the README.md file. http://code.vtiger.com/vtiger/vtigercrm If I got anything wrong or if you can improve the instructions then you can fork, branch, fix and send a merge request! Alan. From prasad at vtiger.com Thu Oct 22 08:56:40 2015 From: prasad at vtiger.com (Prasad) Date: Thu, 22 Oct 2015 14:26:40 +0530 Subject: [Vtigercrm-developers] how to fix a bug on code.vtiger.com In-Reply-To: <56289E69.9030709@libertus.co.uk> References: <56289E69.9030709@libertus.co.uk> Message-ID: Thank you. -- FB I Twit I LIn I Blog I Website On Thu, Oct 22, 2015 at 1:59 PM, Alan Bell wrote: > Hi, > > I spent a bit of time figuring out how to use the new vtiger code > repository and made some notes as I went along, then turned this into the > README.md for vtiger, so now there is some documentation on how to report, > and then fix an issue using git and code.vtiger.com now these are on the > front page of the project because it picks up and renders the README.md > file. > > http://code.vtiger.com/vtiger/vtigercrm > > If I got anything wrong or if you can improve the instructions then you > can fork, branch, fix and send a merge request! > > Alan. > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at its4you.sk Thu Oct 22 11:43:45 2015 From: info at its4you.sk (IT-Solutions4You) Date: Thu, 22 Oct 2015 13:43:45 +0200 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: How can we propose some enhancements, like SQL changes, like this one: ALTER TABLE `vtiger_inventoryproductrel` CHANGE `comment` `comment` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL This is not a bug, but if the Clients need write hudge description in SO, PO, Q, I module, there are limited. Matus ITS4You D?a 22. 10. 2015 o 6:08 Prasad nap?sal(a): > Thank you Chris. > > All credits to community for the great support and engagement > which made it possible. > > Regards, > Prasad > > -- > FB I Twit > I LIn > I Blog > I Website > > On Thu, Oct 22, 2015 at 4:08 AM, Hamono, Chris (DPC) > > wrote: > > Congratulations____ > > __ __ > > Fantastic, I am over the moon about this! ____ > > __ __ > > Can I say 1 small step for vtiger 1 giant leap for developers J____ > > __ __ > > Chris____ > > __ __ > > *From:*vtigercrm-developers-bounces at lists.vtigercrm.com > > [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com > ] > *On Behalf Of *Prasad > *Sent:* Tuesday, 20 October 2015 4:23 PM > *To:* > vtigercrm-developers at lists.vtigercrm.com > > *Subject:* [Vtigercrm-developers] code.vtiger.com > is live!____ > > __ __ > > Dear members,____ > > __ __ > > We are happy to introduce code.vtiger.com - > our new development repository and issue tracker. It is powered by > gitlab (thanks for > the wonderful application).____ > > __ __ > > We have setup the projects under vtiger > account.____ > > * vtiger/vtigercrm > (6.4.0 version > onwards)____ > * vtiger/customerportal > (6.4.0 version > onwards)____ > > Please send us an email at [info @ vtiger.com ] > if you need an account at code.vtiger.com ____ > > (this hopefully help us fight spam signups - while we get started > on).____ > > __ __ > > With this account you will be able to:____ > > * Browser, fork and collaborate with projects available.____ > * Report Issues and get updates.____ > * Create new Vtiger based extension projects.____ > > /NOTE: trac.vtiger.com - which served us > until now will be in read-only mode./____ > > __ __ > > Kindly use code.vtiger.com to report issues > and follow updates.____ > > __ __ > > Regards,____ > > Prasad____ > > Vtiger Team____ > > --____ > > FB I Twit > I LIn > I Blog > I Website ____ > > > _______________________________________________ > http://www.vtiger.com/ > > > > > _______________________________________________ > http://www.vtiger.com/ > From alan.bell at libertus.co.uk Thu Oct 22 11:50:02 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Thu, 22 Oct 2015 12:50:02 +0100 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: <5628CD6A.3060308@libertus.co.uk> I guess that would go in a migration script for 6.5.0 I would also suggest changing the description field in the crmentity table from TEXT to LONGTEXT (or getting it out of the crmentity table altogether and fixing everything that looks at it) as this stores the body of emails and with moderately long threads this starts truncating emails Alan. On 22/10/15 12:43, IT-Solutions4You wrote: > How can we propose some enhancements, like SQL changes, like this one: > > > ALTER TABLE `vtiger_inventoryproductrel` CHANGE `comment` `comment` > TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL > > > This is not a bug, but if the Clients need write hudge description in > SO, PO, Q, I module, there are limited. > > Matus > ITS4You > > > > > D?a 22. 10. 2015 o 6:08 Prasad nap?sal(a): >> Thank you Chris. >> >> All credits to community for the great support and engagement >> which made it possible. >> >> Regards, >> Prasad >> >> -- >> FB I Twit >> I LIn >> I Blog >> I Website >> >> On Thu, Oct 22, 2015 at 4:08 AM, Hamono, Chris (DPC) >> > > wrote: >> >> Congratulations____ >> >> __ __ >> >> Fantastic, I am over the moon about this! ____ >> >> __ __ >> >> Can I say 1 small step for vtiger 1 giant leap for developers J____ >> >> __ __ >> >> Chris____ >> >> __ __ >> >> *From:*vtigercrm-developers-bounces at lists.vtigercrm.com >> >> [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com >> ] >> *On Behalf Of *Prasad >> *Sent:* Tuesday, 20 October 2015 4:23 PM >> *To:* >> vtigercrm-developers at lists.vtigercrm.com >> >> *Subject:* [Vtigercrm-developers] code.vtiger.com >> is live!____ >> >> __ __ >> >> Dear members,____ >> >> __ __ >> >> We are happy to introduce code.vtiger.com - >> our new development repository and issue tracker. It is powered by >> gitlab (thanks for >> the wonderful application).____ >> >> __ __ >> >> We have setup the projects under vtiger >> account.____ >> >> * vtiger/vtigercrm >> (6.4.0 version >> onwards)____ >> * vtiger/customerportal >> (6.4.0 version >> onwards)____ >> >> Please send us an email at [info @ vtiger.com ] >> if you need an account at code.vtiger.com >> ____ >> >> (this hopefully help us fight spam signups - while we get started >> on).____ >> >> __ __ >> >> With this account you will be able to:____ >> >> * Browser, fork and collaborate with projects available.____ >> * Report Issues and get updates.____ >> * Create new Vtiger based extension projects.____ >> >> /NOTE: trac.vtiger.com - which served us >> until now will be in read-only mode./____ >> >> __ __ >> >> Kindly use code.vtiger.com to report issues >> and follow updates.____ >> >> __ __ >> >> Regards,____ >> >> Prasad____ >> >> Vtiger Team____ >> >> --____ >> >> FB I Twit >> I LIn >> I Blog >> I Website ____ >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ From alanslists at gmail.com Thu Oct 22 12:31:25 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 22 Oct 2015 13:31:25 +0100 Subject: [Vtigercrm-developers] code.vtiger.com is live! In-Reply-To: References: <6CC78B54517348498CB1E58845C8F3D13623F64270@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: On 22/10/15 12:43, IT-Solutions4You wrote: > How can we propose some enhancements, like SQL changes, like this one: > > > ALTER TABLE `vtiger_inventoryproductrel` CHANGE `comment` `comment` > TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL I think things like this should be raised as an issue and then people can discuss it and then hopefully a decision can be made on whether to implement a patch or or not. You can "tag" issues with one or more of the Labels - for example there is "discussion", "suggestion" and "enhancement" which might fit the bill here. Issues do not just have to be bugs. I for one agree with your specific request. I have had to change that column to 1500 chars before now! Al From richard at tw.co.nz Thu Oct 22 19:22:09 2015 From: richard at tw.co.nz (Richard Hills - Technologywise) Date: Fri, 23 Oct 2015 08:22:09 +1300 Subject: [Vtigercrm-developers] how to fix a bug on code.vtiger.com In-Reply-To: <56289E69.9030709@libertus.co.uk> References: <56289E69.9030709@libertus.co.uk> Message-ID: <56293761.5020902@tw.co.nz> Nice idea, thanks Alan. On 22/10/15 21:29, Alan Bell wrote: > Hi, > > I spent a bit of time figuring out how to use the new vtiger code > repository and made some notes as I went along, then turned this into > the README.md for vtiger, so now there is some documentation on how to > report, and then fix an issue using git and code.vtiger.com now these > are on the front page of the project because it picks up and renders > the README.md file. > > http://code.vtiger.com/vtiger/vtigercrm > > If I got anything wrong or if you can improve the instructions then > you can fork, branch, fix and send a merge request! > > Alan. > _______________________________________________ > http://www.vtiger.com/ -- Richard Hills TechnologyWise Ltd, Tauranga, NZ richard at tw.co.nz www.technologywise.co.nz ph: +64 (0)7 571 1060 fax: +64 (0)7 571 1061 From stacey.johnson110 at gmail.com Fri Oct 23 04:57:09 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Fri, 23 Oct 2015 11:57:09 +0700 Subject: [Vtigercrm-developers] /storage/month/week Message-ID: Every new week created in /storage is automatically chmoded to root. It causing issues here. Where to fix it so every new yer/month/week will be assigned to default here apache:apache? CHeers, Stacey -------------- next part -------------- An HTML attachment was scrubbed... URL: From Chris.Hamono at sa.gov.au Fri Oct 23 05:29:13 2015 From: Chris.Hamono at sa.gov.au (Hamono, Chris (DPC)) Date: Fri, 23 Oct 2015 15:59:13 +1030 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: References: Message-ID: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> Hi Stacey I think you mean chowning it How is the weekly folder getting created? If it's being done as a cron job you need to make changes to the cron to either run as the apache process or create the folder and then change it's ownership to apache Chris From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of Stacey Johnson Sent: Friday, 23 October 2015 3:27 PM To: vtigercrm-developers at lists.vtigercrm.com Subject: [Vtigercrm-developers] /storage/month/week Every new week created in /storage is automatically chmoded to root. It causing issues here. Where to fix it so every new yer/month/week will be assigned to default here apache:apache? CHeers, Stacey -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Fri Oct 23 06:12:34 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Fri, 23 Oct 2015 13:12:34 +0700 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> References: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: The folders are created automatically by system either when I create document manually or by scanner. Cron just executing scanner in this case. The issue is somewhere in the code. I use 6.3 clean install (database is just moved manually), but it was happen before migration in 6.1 and 6.2 Wondering if this maybe an issue with PDF Maker ... as I am not sure what I posting here so maybe somebody had same issue... Hard to wait another week to test it :) Stacey On Fri, Oct 23, 2015 at 12:29 PM, Hamono, Chris (DPC) < Chris.Hamono at sa.gov.au> wrote: > Hi Stacey > > > > I think you mean chowning it > > > > How is the weekly folder getting created? If it's being done as a cron job > you need to make changes to the cron to either run as the apache process or > create the folder and then change it's ownership to apache > > > > Chris > > > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *Stacey > Johnson > *Sent:* Friday, 23 October 2015 3:27 PM > *To:* vtigercrm-developers at lists.vtigercrm.com > *Subject:* [Vtigercrm-developers] /storage/month/week > > > > Every new week created in /storage is automatically chmoded to root. It > causing issues here. > > Where to fix it so every new yer/month/week will be assigned to default > here apache:apache? > > > > CHeers, Stacey > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vladimir at kosacrta.hr Fri Oct 23 07:33:58 2015 From: vladimir at kosacrta.hr (=?UTF-8?Q?Vladimir_Kara=C5=BEija?=) Date: Fri, 23 Oct 2015 09:33:58 +0200 Subject: [Vtigercrm-developers] PDF Maker Professional Message-ID: Hi, I need to display 0% TAX amount in TAX block when using Tax mode: Individual TAX block works ok when TAX is higher then 0% Anyone had this situation? regards, Vladimir Vladimir Kara?ija Kosa crta d.o.o. Jagnedje 1 10090 Zagreb OIB: 57724075047 t. +385 1 777 33 85 m. +385 91 122 0511 www.kosacrta.hr -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 23 07:36:52 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 23 Oct 2015 08:36:52 +0100 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: References: Message-ID: On 23/10/15 05:57, Stacey Johnson wrote: > Every new week created in /storage is automatically chmoded to root. It > causing issues here. Not by vtiger it isn't. I've never seen that. vtiger runs as the apache child process user (On Debian-based system that is normally www-data) - I do hope you are not running apache as root? Al From lists.k.j.alderton at gmail.com Fri Oct 23 08:27:23 2015 From: lists.k.j.alderton at gmail.com (Mail Lists) Date: Fri, 23 Oct 2015 09:27:23 +0100 Subject: [Vtigercrm-developers] Forgot Password Message-ID: <5629EF6B.1060605@gmail.com> Hi. I am trying to figure out where the "Forgot password" gets its email body from, since its not a template. Any idea? Kevin -------------- next part -------------- An HTML attachment was scrubbed... URL: From mobilcmcdk at gmail.com Fri Oct 23 08:35:34 2015 From: mobilcmcdk at gmail.com (=?UTF-8?Q?S=C3=B8ren_Madsen?=) Date: Fri, 23 Oct 2015 10:35:34 +0200 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: References: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: I'm on CentOS and my storage subfolders and uploadet documents are chowned (by default) by apache:apache. NOT the root. I've never seen the scenario you've described. Den fredag den 23. oktober 2015 skrev Stacey Johnson < stacey.johnson110 at gmail.com>: > The folders are created automatically by system either when I create > document manually or by scanner. Cron just executing scanner in this case. > The issue is somewhere in the code. I use 6.3 clean install (database is > just moved manually), but it was happen before migration in 6.1 and 6.2 > Wondering if this maybe an issue with PDF Maker ... as I am not sure what > I posting here so maybe somebody had same issue... > Hard to wait another week to test it :) > > > Stacey > > On Fri, Oct 23, 2015 at 12:29 PM, Hamono, Chris (DPC) < > Chris.Hamono at sa.gov.au > > wrote: > >> Hi Stacey >> >> >> >> I think you mean chowning it >> >> >> >> How is the weekly folder getting created? If it's being done as a cron >> job you need to make changes to the cron to either run as the apache >> process or create the folder and then change it's ownership to apache >> >> >> >> Chris >> >> >> >> >> >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com >> >> [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com >> ] >> *On Behalf Of *Stacey Johnson >> *Sent:* Friday, 23 October 2015 3:27 PM >> *To:* vtigercrm-developers at lists.vtigercrm.com >> >> *Subject:* [Vtigercrm-developers] /storage/month/week >> >> >> >> Every new week created in /storage is automatically chmoded to root. It >> causing issues here. >> >> Where to fix it so every new yer/month/week will be assigned to default >> here apache:apache? >> >> >> >> CHeers, Stacey >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > -- Best regards S?ren -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Fri Oct 23 08:35:31 2015 From: preexo at googlemail.com (Preexo) Date: Fri, 23 Oct 2015 01:35:31 -0700 (PDT) Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: References: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> Message-ID: <1445589331202-17798.post@n4.nabble.com> Sounds like someone is running apache as root... It's vtiger creating the folders, but vtiger should never run under anything else than the apache user (e.g. www-data). You better double check this, running apache as root basically opens the whole machine to anyone using your webserver, this could really go wrong very badly! what OS are you running? on linux, check the user with this command: ps aux | egrep '(apache|httpd)' -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-storage-month-week-tp17790p17798.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From manu.k at vtiger.com Fri Oct 23 08:58:50 2015 From: manu.k at vtiger.com (Manu urs) Date: Fri, 23 Oct 2015 14:28:50 +0530 Subject: [Vtigercrm-developers] Forgot Password In-Reply-To: <5629EF6B.1060605@gmail.com> References: <5629EF6B.1060605@gmail.com> Message-ID: Hi Please check " forgotPassword.php " file Line number 40 for the email content of the Forgot password. Regards, Manu Urs On Fri, Oct 23, 2015 at 1:57 PM, Mail Lists wrote: > Hi. > I am trying to figure out where the "Forgot password" gets its email body > from, since its not a template. > > Any idea? > > Kevin > > _______________________________________________ > http://www.vtiger.com/ > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: From joe at tsolucio.com Fri Oct 23 09:22:50 2015 From: joe at tsolucio.com (Joe Bordes) Date: Fri, 23 Oct 2015 11:22:50 +0200 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: <1445589331202-17798.post@n4.nabble.com> References: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> <1445589331202-17798.post@n4.nabble.com> Message-ID: <5629FC6A.3070500@tsolucio.com> it is most probably the cron: you have the vtigercron.php being executed by root from the command line and that process creates the storage structure when reading mail scanner or similar process, review that and let us know A nice weekend to all On 23/10/15 10:35, Preexo wrote: > Sounds like someone is running apache as root... It's vtiger creating the > folders, but vtiger should never run under anything else than the apache > user (e.g. www-data). You better double check this, running apache as root > basically opens the whole machine to anyone using your webserver, this could > really go wrong very badly! what OS are you running? > on linux, check the user with this command: ps aux | egrep '(apache|httpd)' > > > > -- > View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-storage-month-week-tp17790p17798.html > Sent from the vtigercrm-developers mailing list archive at Nabble.com. > _______________________________________________ > http://www.vtiger.com/ > -- Un saludo Joe TSolucio From alanslists at gmail.com Fri Oct 23 09:27:49 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 23 Oct 2015 10:27:49 +0100 Subject: [Vtigercrm-developers] datepicker question... Message-ID: I want to write a little javascript code to do some things when the Start Date field of the Create Event form changes, or even when it loses focus. But, I think the datepicker code is somehow obscuring what is happening to the input itself - if you look at the value of that input element it never actually changes when you use the datepicker... If I grab the Start Date field input object > var startDateElement = jQuery('#Calendar_editView_fieldName_date_start'); And watch it or try to fire an event change or blur, when I use the datepicker nothing in the input itself actually changes. > startDateElement.blur(function(e) { //could also be startDateElement.change(function(e) { > ... > }); And the datepicker element itself gets some random name like "datepicker_311" so I don't know how I am supposed to match the datepicker to the input... How can I do this? Thanks Alan From lists.k.j.alderton at gmail.com Fri Oct 23 09:52:35 2015 From: lists.k.j.alderton at gmail.com (Mail Lists) Date: Fri, 23 Oct 2015 10:52:35 +0100 Subject: [Vtigercrm-developers] Forgot Password In-Reply-To: References: <5629EF6B.1060605@gmail.com> Message-ID: <562A0363.2060104@gmail.com> Hi Manu, Thank you. Right under my nose and didn't see the wood for the trees. Cheers Kevin On 23/10/15 09:58, Manu urs wrote: > Hi > > Please check " forgotPassword.php " file Line number 40 for the > email content of the Forgot password. > > Regards, > Manu Urs > > On Fri, Oct 23, 2015 at 1:57 PM, Mail Lists > > > wrote: > > Hi. > I am trying to figure out where the "Forgot password" gets its > email body from, since its not a template. > > Any idea? > > Kevin > > _______________________________________________ > http://www.vtiger.com/ > > > > > -- > Regards, > Manu > > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Fri Oct 23 11:19:49 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Fri, 23 Oct 2015 18:19:49 +0700 Subject: [Vtigercrm-developers] /storage/month/week In-Reply-To: <5629FC6A.3070500@tsolucio.com> References: <6CC78B54517348498CB1E58845C8F3D1362402C301@EMSCM005.sagemsmrd01.sa.gov.au> <1445589331202-17798.post@n4.nabble.com> <5629FC6A.3070500@tsolucio.com> Message-ID: Thank you all. Joe was right. No clue how it happen that I edit root cron O.o Regards Stacey On Fri, Oct 23, 2015 at 4:22 PM, Joe Bordes wrote: > it is most probably the cron: you have the vtigercron.php being executed > by root from the command line and that process creates the storage > structure when reading mail scanner or similar process, review that and let > us know > > > A nice weekend to all > > > > > On 23/10/15 10:35, Preexo wrote: > >> Sounds like someone is running apache as root... It's vtiger creating the >> folders, but vtiger should never run under anything else than the apache >> user (e.g. www-data). You better double check this, running apache as root >> basically opens the whole machine to anyone using your webserver, this >> could >> really go wrong very badly! what OS are you running? >> on linux, check the user with this command: ps aux | egrep >> '(apache|httpd)' >> >> >> >> -- >> View this message in context: >> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-storage-month-week-tp17790p17798.html >> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > -- > Un saludo > Joe > TSolucio > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alanslists at gmail.com Fri Oct 23 12:03:54 2015 From: alanslists at gmail.com (Alan Lord) Date: Fri, 23 Oct 2015 13:03:54 +0100 Subject: [Vtigercrm-developers] datepicker question... In-Reply-To: References: Message-ID: On 23/10/15 10:27, Alan Lord wrote: > I want to write a little javascript code to do some things when the > Start Date field of the Create Event form changes, or even when it loses > focus. > > But, I think the datepicker code is somehow obscuring what is happening > to the input itself - if you look at the value of that input element it > never actually changes when you use the datepicker... Ignore me... Was trying to work on an object that wasn't there yet... I need to wait for the QuickCreate form to load before listening ;-) Al From b.pabiszczak at yetiforce.com Fri Oct 23 12:26:24 2015 From: b.pabiszczak at yetiforce.com (=?UTF-8?Q?B=C5=82a=C5=BCej_Pabiszczak?=) Date: Fri, 23 Oct 2015 14:26:24 +0200 Subject: [Vtigercrm-developers] =?utf-8?q?Don_Quixote_=E2=80=93_final_refl?= =?utf-8?q?ections?= Message-ID: My posts are always controversial and it won't be any different this time. My long-time "fans" will definitely feel appreciated, and I'm happy I'll get to smile reading their posts again. Generally it's a quite negative post, don't read if you don't want to, why should you get upset? * ABOUT US I've personally known the Vtiger system for 8 years, our previous company - OpenSaaS began offering solutions for Vtiger in 2011 [polish versions, modules] and we also had a Polish forum on vtiger. We oriented our development towards Vtiger partnership. There are many companies that don't return what they took, we were always different. We provided free language packs, some modules, support, ready solutions [we also had commercial solutions]. At the same time we ensured that the system worked properly by reporting hundreds of bugs. Although we were just small company with a tight budget and we just had started learning, in my opinion we significantly helped the open source community [as much as we could]. A year ago we decided to set up our own fork, and, as some of you might remember, it was caused primarily by Vtiger's lack of cooperation, as well as not uploading fixes to the system. As a result of that we couldn't develop due to too many limitations. But this isn't my point ? * ABOUT OUR FORK [IDEA] I don't intend to advertise our solutions in here, there are better ways, I would like to focus on the idea of cooperation itself. If I were interested in marketing, I'd advertise using all the means possible [mailing list, forum, direct e-mails] and in the vtiger related topics on linkedin. I don't do that, because that's not my goal. I thought that to some extent Vtiger and YetiForce will be able to complement each other [similar concept, common goals], maybe it could even be possible to merge other projects, ie. CoreBOS, because all of these solutions are based on the same engine ... Because who needs another fork? A large part of the functionalities is similar. I even thought that once "competition" pops up, Vtiger would change their approach for everybody's benefit, even ours. Ours- because we didn't really abandon Vtiger, we keep adding changes that are common to both projects. I naively thought that if we had combined a number of projects, ie. Vtiger, YetiForce, coreBOS we could've been able to create real competition for solutions like Salesforce or Microsoft Dynamics. Now I know that waiting for others and exchanging experience only slows us down, particularly because these actions are one-sided. * ABOUT VTIGER It isn't my purpose to defame Vtiger as a company, in my opinion they chose their course of development and it's none of my business. I also appreciate everything they gave to the open source community, because they gave a lot. I think that Vtiger should be honest with their community [whether you want it or not - we are a part of it too], since the direction they chose will sooner or later affect everyone on the mailing list. What I consider important for the community : a) defining the role Vtiger wants to play for the open source version for the upcoming years - little involvement in the OS project indicates doing what SugarCRM did, which is abandoning the OS version. b) determining the development direction of the OS version and what it depends on. c) what real impact can the community have on the OS version development? Will the attitude or cooperation policy change after publishing code.vtiger.com? d) to what extent does Vtiger really want to develop the OS version to be compatible with the HTML5, CSS3, PHP standards, and additionally OWASP, W3C, WCAG, PAS. e) to what extent does Vtiger really want to increase the OS version's security level [the current one is unacceptable for any larger company or organization]. f) to what extent does Vtiger really want to add new functionalities to the OS version? g) generating prefixes for tables [like Joomla does] * BUT WHAT IS THIS ALL ABOUT? To make it completely clear - the issues below apply also to our fork, it's not my purpose to show we have a flawless system, my goal is to show what we have some common problems that need to be addressed together, because they also apply to our solution! a) VTIGER CRM SECURITY If someone considers Vtiger secure - the person is completely wrong. Over the last 5 years we've reported to Vtiger many security issues. Some of them are still in the system, part of them was removed after a few years. What's certain is that many new ones appear. Due to the fact that Vtiger ignored our emails, we stopped reporting them, but they still exist. Key aspects: - Turn off all the functionalities for external communication by default - ie. webservice, customer portal, mobile, etc. It is a basic principle of safety, first turn off all of them and then turn on only those elements that we need. - Remove the monstrosity called modules/Mobile which is enabled by default. This module is full of holes and it should be removed , or written from scratch! - The new code that you release should be verified by the best programmer in the company! Currently, the new code contains a lot of logical and safety errors! - Security audits should be scheduled, if Vtiger has no funding for that, then some fund raising should take place, for example using kickstarter or community collection, like Wikipedia does. - I don't know who, when and why came up with the idea to combine the Administrator's interface with the User's interface, but it is one of the main design errors, it significantly reduces the system's security level. - Implementation of the OWASP policy - Currently, after installing the system, you don't know absolutely anything about what is happening in your system, you have no security logs, you don't record any important information. You have no control over this system, and it's only a matter of time when it negatively affects a company that has implemented the system, and customers who use it. b) MODULES AND COMPONENTS SAFETY The modules and components safety level is very low. A few months ago we showed you the problem with vtDebug which contained many security flaws. Also, a few months ago we wrote to the MYC portal creators, they have a lot of critical errors in the customer portal - as long as I've been watching their github account they haven't fixed these errors. We access various systems practically every week, they include many different modules; we look through them with curiosity, and I got to tell you that what we see is wrong. If Vtiger doesn't fix errors, if the module creator doesn't fix errors, then to whom and why should we report them? When we created modules a few years ago, we made the same mistakes; they resulted from both - programmers who just started learning, and the lack of the producer's support, who published modules that contained errors and didn't manage to notice them[it was enough that the module worked somehow]. Why during these 12 years nobody managed to develop good practices, standards, and documentation that could to help new businesses? Why aren't the changes published in SVN not verified in terms of security? c) DEVELOPMENT Currently Vtiger is not developing, it's standing still. The amount of code that Vtiger released over the last 12 months can be summarized as "one man's half-time work". In addition to that, recent changes show that people who have started adding improvements to the system are still learning. Excluding the community and partners from the development will impact everyone in a negative way. Even though standards were not that essential a few years ago, they are currently crucial while designing any system. Every change in the system should move towards standardization, ie.W3C, PHP 6, PAS, WCAG. For example, every government application in the EU must support the WCAG standards. This market is very competitive, so it's important that Vtiger is honest with us, and sincerely describes its plans and intentions. Clear objectives and priorities should be defined, so that each company could know how to build their future with Vtiger - we want to know that as well. It would be better for us if Vtiger stopped developing, we'd gain more customers, but in the long run nobody - including us - would benefit from that; because our product would be much better if it were created together. Therefore, I believe that cooperation can bring more benefits and I still try to cooperate, but with less and less enthusiasm. I realize that cooperation is practically no longer possible [for YetiForce, Vtiger, coreBOS], but I think we all lose out because of that. d) MIGRATION What Vtiger does in migrating scripts since beginning of the project is amazing for me. These scripts contain so many errors that you could write a book about it. What Alan published is just the tip of the iceberg. I can't understand why you can't implement good practices or standards for migration from one version to another. The verification of the migration process is very simple: 1. We take version A [clean 2. We fill version A with data [it's best to have a ready script that always generates the same data] 3. We migrate to version B 4. We copy the files and the database 5. We take version B [clean] 6. We fill version B with data [it's best to have a ready script that always generates the same data] 7. We copy the files and the database 8. We compare the copies from steps 4 and 7 using for example WinMerge or some other tool. I'm not talking about a few mistakes, there are hundreds of errors, and the number keeps increasing, and they aren't fixed. Therefore something should be done about it, something like developing standards and sticking to them. If someone doesn't believe me, I can send you our fixed migrating scripts that we use internally. You can also check the code on GitHub and compare the original code to our code, we simply do not have anymore energy to report this to vtiger, since nobody is going to take care of it anyway. e) SVN CHANGES Creating our fork, we decided to use Vtiger's energy and apart from introducing our own changes, we also included changes sent by the Vtiger's community and the developer himself. That is why we update our engine to the current Vtiger version from time to time, [for example we implemented the changes to Vtiger rev. 14548 (6.4.0)]. Unfortunately, fewer and fewer changes are suitable to use, a few general observations: 1. The variables aren't cleared properly [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset/14540/], the getRequestSmartyParam function that gets data directly from $_REQUEST [!?!] 2. You use require_once even though, you got the vimport function [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset/14538/] 3. Code written on a napkin, not thought through [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset?reponame=&new=14538%40vtigercrm%2Fbranches%2F6.4.0&old=14537%40vtigercrm%2Fbranches%2F6.4.0] and it's enough to use strtolower just once 4. You use outdated mime_content_type functions [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset?reponame=&new=14525%40vtigercrm%2Fbranches%2F6.4.0&old=14524%40vtigercrm%2Fbranches%2F6.4.0] 5. You write low quality code [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset?reponame=&new=14524%40vtigercrm%2Fbranches%2F6.4.0&old=14523%40vtigercrm%2Fbranches%2F6.4.0] 6. You fail to comply with the PSR standards [you use spaces and tabs interchangeably] :/, it must be a nightmare for a programmer who makes migrating scripts... 7. You use global variables even though you have a special function for that [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset?reponame=&new=14507%40vtigercrm%2Fbranches%2F6.4.0&old=14506%40vtigercrm%2Fbranches%2F6.4.0] 8. You increase the script execution time indefinitely [http://trac.vtiger.com/cgi-bin/trac.cgi/changeset?reponame=&new=14506%40vtigercrm%2Fbranches%2F6.4.0&old=14503%40vtigercrm%2Fbranches%2F6.4.0] despite the fact that in other places some mechanisms depend on that time [eg. workflows], plus it's not secure. 9. You added multiple Layout support and there are references to the "vtiger_layout" table which doesn't exist by default. It's created during the template installation or removal. It's enough to go to the "Configuration Editor" and the " Table 'vtiger_layout' doesn't exist" error will pop up 10. Templates can't be installed, the "Invalid File provided for module import! Try Again." error message appears. It's obvious nobody tested it. 11. The validation of dangerous extensions doesn't work while installing templates These are comments concerning several revisions; from the 1 year perspective, the number of problems you generate for yourself is huge. It's a bad practice not to verify the code prior to its publication, it may happen in case of a new project, but Vtiger has been around for several years and has been downloaded several million times. Is this what the OS version is supposed to look like? Do you think that the users can't see that? That this has no real impact on how others see your product? Or can't you see the problems that multiply this way? I'm not a programmer, but it seems to me that the described in point 1 is a serious security flaw [I could be wrong]. I'm not vain either, we're not looking forward to what Vtiger answers, each of these issues has been fixed and implemented into our system, whether or not someone uses our solution depends solely on you. If I were you, I'd add these 8 points on code.vtiger.com, ready-made solution can be found here: https://github.com/YetiForceCompany/YetiForceCRM/commit/ef79e4ecb492f7322448b8ad9ea45a4aa65b8e5c. I'd also add a few things from 4a on code.vtiger.com. * SUMMARY Vtiger will cope without YetiForce and YetiForce will cope without vtiger, that's obvious. However, we should remember that we have some common problems and we can't escape that. A few hecklers, who don't bring anything substantive to the discussion, will most likely come here, but even if I'm not completely right, I'm sure you'll notice the problems that have to be dealt with. YetiForce cuts off from the Vtiger community, we will still observe, upload suggested fixes, analyze reported problems, but we don't see the possibility of dialogue, cooperation, and partnership. In my opinion both parties have a lot to offer. If some substantive discussion starts I can engage in the dialogue, otherwise we should focus on our own goals and community objectives. Thank you. -- Z powa?aniem / Regards B?A?EJ PABISZCZAK _Chief Executive Officer_ M: +48.884999123 E: b.pabiszczak at yetiforce.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Fri Oct 23 12:54:20 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Fri, 23 Oct 2015 13:54:20 +0100 Subject: [Vtigercrm-developers] =?utf-8?q?Don_Quixote_=E2=80=93_final_refl?= =?utf-8?q?ections?= In-Reply-To: References: Message-ID: <562A2DFC.6080406@libertus.co.uk> great list of points, but to be entirely fair, this very week the development process of vtiger opened up with the move to git and the code.vtiger.com gitlab server, so I am pretty confident that the quality and pace of development can improve as a result. Alan. From garryatbrighton at gmail.com Fri Oct 23 14:34:50 2015 From: garryatbrighton at gmail.com (Garry Brighton) Date: Fri, 23 Oct 2015 21:34:50 +0700 Subject: [Vtigercrm-developers] =?utf-8?q?Don_Quixote_=E2=80=93_final_refl?= =?utf-8?q?ections?= In-Reply-To: <562A2DFC.6080406@libertus.co.uk> References: <562A2DFC.6080406@libertus.co.uk> Message-ID: I can bet Alan, it will not. It will need changes in vtiger team financial strategy and following expectations. Indeed Yetiforce is a GIANT competitor to vtiger, but only because of Blazej's team focusing on very different source of income. Vtiger has no resources and vision to cancel ondemand app and switch to the yetiforce way. Who doing good for the sake of pocket - I dont know. I just counted petitions of moving to git, of allowing to contribute in vtiger source.... Through few past years it was dozens of calls to action, and silence... I bet, exclusive fixes will not go to open source directly anyway. Especially that active developers looking into app store direction, inheriting from vtiger double bottom open source philosophy On Fri, Oct 23, 2015 at 7:54 PM, Alan Bell wrote: > great list of points, but to be entirely fair, this very week the > development process of vtiger opened up with the move to git and the > code.vtiger.com gitlab server, so I am pretty confident that the quality > and pace of development can improve as a result. > > Alan. > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alan.bell at libertus.co.uk Fri Oct 23 15:10:14 2015 From: alan.bell at libertus.co.uk (Alan Bell) Date: Fri, 23 Oct 2015 16:10:14 +0100 Subject: [Vtigercrm-developers] =?utf-8?q?Don_Quixote_=E2=80=93_final_refl?= =?utf-8?q?ections?= In-Reply-To: References: <562A2DFC.6080406@libertus.co.uk> Message-ID: <562A4DD6.7050009@libertus.co.uk> On 23/10/15 15:34, Garry Brighton wrote: > I can bet Alan, it will not. It will need changes in vtiger team > financial strategy and following expectations. dunno really, I have done some merge requests, I have a ton of things I want to fix, but never really bothered because I couldn't just fix them properly in the core. Things like vtlib adding a field shouldn't duplicate the field if it is already there for example (dupes of fields and blocks are bad because they kind of work and then bite you). > Indeed Yetiforce is a GIANT competitor to vtiger, but only because of > Blazej's team focusing on very different source of income. not sure it has the same brand awareness yet, but Blazej is certainly making a great product > Vtiger has no resources and vision to cancel ondemand app and switch > to the yetiforce way. I am cool with vtiger doing the ondemand thing and building out a partner network, getting the partners to work directly with customers. > Who doing good for the sake of pocket - I dont know. I just counted > petitions of moving to git, of allowing to contribute in vtiger > source.... > Through few past years it was dozens of calls to action, and silence... and then they just did exactly that! It is awesome. > I bet, exclusive fixes will not go to open source directly anyway. maintaining two codebases is a pain, I am not expecting the online stuff to be able to drift a huge long way from the open source repository as people will be fixing stuff in the open source version first. > Especially that active developers looking into app store direction, > inheriting from vtiger double bottom open source philosophy > the only way the app store flourishes is if the core works properly and is a good architecture. There are quite a lot of things I would add to the core rather than offer as an optional extra (gantt charts in the project module to pick an example of something I would shove in the core). From prasad at vtiger.com Fri Oct 23 17:12:13 2015 From: prasad at vtiger.com (Prasad) Date: Fri, 23 Oct 2015 22:42:13 +0530 Subject: [Vtigercrm-developers] =?utf-8?q?Don_Quixote_=E2=80=93_final_refl?= =?utf-8?q?ections?= In-Reply-To: <562A4DD6.7050009@libertus.co.uk> References: <562A2DFC.6080406@libertus.co.uk> <562A4DD6.7050009@libertus.co.uk> Message-ID: Blazej, I really appreciate the patience you had while posting this. Good points. Working with community is our passion and will always be. If we had an opportunity to work off the legacy and bother less about backward compatibilities - our code could have been much better. I hope time for this is certainly near. Would be great if you can send us merge-request on code.vtiger.com - we are learning how to get through it. (Thanks to initial collaborators who helped us getting started on it). In case you are falling short of time - no worries we will follow up. Regards, Prasad PS: Thank you Garry and Alan for your comments as well. I got in a little on today. -- FB I Twit I LIn I Blog I Website On Fri, Oct 23, 2015 at 8:40 PM, Alan Bell wrote: > > > On 23/10/15 15:34, Garry Brighton wrote: > >> I can bet Alan, it will not. It will need changes in vtiger team >> financial strategy and following expectations. >> > dunno really, I have done some merge requests, I have a ton of things I > want to fix, but never really bothered because I couldn't just fix them > properly in the core. Things like vtlib adding a field shouldn't duplicate > the field if it is already there for example (dupes of fields and blocks > are bad because they kind of work and then bite you). > >> Indeed Yetiforce is a GIANT competitor to vtiger, but only because of >> Blazej's team focusing on very different source of income. >> > not sure it has the same brand awareness yet, but Blazej is certainly > making a great product > >> Vtiger has no resources and vision to cancel ondemand app and switch to >> the yetiforce way. >> > I am cool with vtiger doing the ondemand thing and building out a partner > network, getting the partners to work directly with customers. > >> Who doing good for the sake of pocket - I dont know. I just counted >> petitions of moving to git, of allowing to contribute in vtiger source.... >> Through few past years it was dozens of calls to action, and silence... >> > and then they just did exactly that! It is awesome. > >> I bet, exclusive fixes will not go to open source directly anyway. >> > maintaining two codebases is a pain, I am not expecting the online stuff > to be able to drift a huge long way from the open source repository as > people will be fixing stuff in the open source version first. > >> Especially that active developers looking into app store direction, >> inheriting from vtiger double bottom open source philosophy >> >> the only way the app store flourishes is if the core works properly and > is a good architecture. There are quite a lot of things I would add to the > core rather than offer as an optional extra (gantt charts in the project > module to pick an example of something I would shove in the core). > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Sat Oct 24 02:14:37 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Sat, 24 Oct 2015 09:14:37 +0700 Subject: [Vtigercrm-developers] Customer Portal - filter records Message-ID: What is the way to pre filter records shown in customer portal? Need to limit records visibility to the particular value of picklist Tnx, Stacey -------------- next part -------------- An HTML attachment was scrubbed... URL: From 1250572980 at qq.com Mon Oct 26 00:37:55 2015 From: 1250572980 at qq.com (=?ISO-8859-1?B?c3Vubnk=?=) Date: Mon, 26 Oct 2015 08:37:55 +0800 Subject: [Vtigercrm-developers] How change the total and net price in invoice Message-ID: I want to make some change in invoice.like the folowing picture: Quantity * List Price ,I want to the Total/1000,Net Price /1000,equal the Items Total,I have make a little change in codes. But when I save the record,the result of the Total and Net Price not equal to Items Total. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 447034A0 at 8D188620.E3752D56.png Type: application/octet-stream Size: 75576 bytes Desc: not available URL: From zeneliiardi at gmail.com Mon Oct 26 13:57:16 2015 From: zeneliiardi at gmail.com (ardi zeneli) Date: Mon, 26 Oct 2015 14:57:16 +0100 Subject: [Vtigercrm-developers] Creating related modules fields Message-ID: Hello, i am trying to create a relation between the modules "Sales Orders" and "Campaigns" using a uitype 10 field. For this i am using the code below, but it doesn't seem to work correctly. I have tried modifying the code by replacing "get_related_list" with "get_dependents_list", or even from the database in the vtiger_relatedlists table, modifying the name from get_related lists to get_dependents or get_salesorders, as other existing relations but still nothing. The problem is that when i select a campaign from the uitype10 field in the Sales Order, the result isn't shown in the related list in the Campaigns module, only when i select it manually from the related list in the Campaigns module the record is added to the list. The relation is added also in the vtiger_fieldmodulerel with the correct field id of the uitype 10 field. Is there anything else that i can check, or another way to do this? Thanks label = 'Related Campaign'; $field->name = 'campagna_related'; $field->column = 'campagna_related'; $field->columntype = 'VARCHAR(255)'; $field->uitype = 10; $field->typeofdata = 'V~O'; $block->addField($field); $block->save($module); $field->setRelatedModules(Array('Campaigns')); $module = Vtiger_Module::getInstance('Campaigns'); $module->setRelatedList(Vtiger_Module::getInstance('SalesOrder'), 'SalesOrder', Array('ADD'),'get_related_list'); ?> -------------- next part -------------- An HTML attachment was scrubbed... URL: From mobilcmcdk at gmail.com Mon Oct 26 22:12:42 2015 From: mobilcmcdk at gmail.com (=?UTF-8?Q?S=C3=B8ren_Madsen?=) Date: Mon, 26 Oct 2015 23:12:42 +0100 Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page Message-ID: Hi guys! I have a server (CentOS) with vtiger 6.2 installed and everything was running just fine. I wanted to update PHP to v.5.5, but after the update, the vtiger login page is returned blank - Just a white page without any errors. - Debug Log doesn't return anything usefull. - If I right click on the login page to see the sourcecode, this is also returned blank. - I've added an index.html to test the site and this is displayed correct. - I've tried to make a fresh install of vtiger too see if any server requirements failed - but all requirements are meet by the server. However the installation fails in step 2, when I'm supposed to give the MySQL and admin info, I never get to see this page. Then the installation script just returns a blank page again. What am I missing? Anyone got a suggestion, I'm running out of ideas...... -- Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From alex at theclearsource.com Mon Oct 26 22:18:39 2015 From: alex at theclearsource.com (Alex Martin) Date: Mon, 26 Oct 2015 22:18:39 +0000 Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page In-Reply-To: References: Message-ID: <24633167bff8479dbcf98a731636d3a0@AlexPMS.CS.local> Did you update Pear? You may have to reinstall Pear:DB From: vtigercrm-developers-bounces at lists.vtigercrm.com [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com] On Behalf Of S?ren Madsen Sent: Monday, October 26, 2015 6:13 PM To: Vtiger Developer List Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page Hi guys! I have a server (CentOS) with vtiger 6.2 installed and everything was running just fine. I wanted to update PHP to v.5.5, but after the update, the vtiger login page is returned blank - Just a white page without any errors. - Debug Log doesn't return anything usefull. - If I right click on the login page to see the sourcecode, this is also returned blank. - I've added an index.html to test the site and this is displayed correct. - I've tried to make a fresh install of vtiger too see if any server requirements failed - but all requirements are meet by the server. However the installation fails in step 2, when I'm supposed to give the MySQL and admin info, I never get to see this page. Then the installation script just returns a blank page again. What am I missing? Anyone got a suggestion, I'm running out of ideas...... -- Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 27 07:53:57 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 27 Oct 2015 08:53:57 +0100 Subject: [Vtigercrm-developers] Creating related modules fields In-Reply-To: References: Message-ID: Hi I've been had same problem with ticket related to project. Anyone have idea how to manage? 2015-10-26 14:57 GMT+01:00 ardi zeneli : > Hello, > > i am trying to create a relation between the modules "Sales Orders" and > "Campaigns" using a uitype 10 field. For this i am using the code below, > but it doesn't seem to work correctly. I have tried modifying the code by > replacing "get_related_list" with "get_dependents_list", or even from the > database in the vtiger_relatedlists table, modifying the name from > get_related lists to get_dependents or get_salesorders, as other existing > relations but still nothing. The problem is that when i select a campaign > from the uitype10 field in the Sales Order, the result isn't shown in the > related list in the Campaigns module, only when i select it manually from > the related list in the Campaigns module the record is added to the list. > The relation is added also in the vtiger_fieldmodulerel with the correct > field id of the uitype 10 field. > Is there anything else that i can check, or another way to do this? > > Thanks > > // Turn on debugging level > $Vtiger_Utils_Log = true; > require_once('vtlib/Vtiger/Module.php'); > require_once('vtlib/Vtiger/Block.php'); > require_once('vtlib/Vtiger/Field.php'); > $module = Vtiger_Module::getInstance('SalesOrder'); > $block = Vtiger_Block::getInstance('LBL_SO_INFORMATION',$module); > $field = new Vtiger_Field(); > $field->label = 'Related Campaign'; > $field->name = 'campagna_related'; > $field->column = 'campagna_related'; > $field->columntype = 'VARCHAR(255)'; > $field->uitype = 10; > $field->typeofdata = 'V~O'; > $block->addField($field); > $block->save($module); > $field->setRelatedModules(Array('Campaigns')); > > $module = Vtiger_Module::getInstance('Campaigns'); > $module->setRelatedList(Vtiger_Module::getInstance('SalesOrder'), > 'SalesOrder', > Array('ADD'),'get_related_list'); > ?> > > > _______________________________________________ > http://www.vtiger.com/ > -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From simonetravaglini at gmail.com Tue Oct 27 08:37:15 2015 From: simonetravaglini at gmail.com (Simone Travaglini) Date: Tue, 27 Oct 2015 09:37:15 +0100 Subject: [Vtigercrm-developers] bug Message-ID: Hello, found a bug and tested also on demo.vtiger.com try to create a contact with filled some field like phone, department, address, ecc. with numeric value. Then go in detail view and click on single field, so you can edit. If you try to add some 0 before value, this is not saved. Added also in code.vtiger.com as issue. -- Simone Travaglini 328 5499846 Linkedin: Simone Travaglini Rispetta l'ambiente: non stampare questa mail se non ti ? veramente necessario! -------------- next part -------------- An HTML attachment was scrubbed... URL: From stacey.johnson110 at gmail.com Tue Oct 27 10:55:08 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Tue, 27 Oct 2015 17:55:08 +0700 Subject: [Vtigercrm-developers] Customer Portal - filter records In-Reply-To: References: Message-ID: anybody? xxx :-) On Sat, Oct 24, 2015 at 9:14 AM, Stacey Johnson wrote: > What is the way to pre filter records shown in customer portal? > Need to limit records visibility to the particular value of picklist > > Tnx, Stacey > -------------- next part -------------- An HTML attachment was scrubbed... URL: From info at its4you.sk Tue Oct 27 11:10:51 2015 From: info at its4you.sk (IT-Solutions4You) Date: Tue, 27 Oct 2015 12:10:51 +0100 Subject: [Vtigercrm-developers] Customer Portal - filter records In-Reply-To: References: Message-ID: https://wiki.vtiger.com/vtiger6/index.php/Customer_Portal Module and Access control List of modules that are to be shown to the Portal user. You can enable or disable these modules. Disable the modules that you don?t want your Portal users to have access on it. To reorder the modules menu just drag and drop the module where you want it to place. Clicking on a module will take the user to Portal fields and privileges. Then see: https://wiki.vtiger.com/vtiger6/index.php/Picklist_Editor Assigning Roles Vtiger CRM gives you the flexibility to grant or revoke access to picklist values through Picklist Editor. When you assign or disable picklist values to a selected role, changes will be affected across all users in that role. Matus ITS4You D?a 27. 10. 2015 o 11:55 Stacey Johnson nap?sal(a): > anybody? > > xxx :-) > > On Sat, Oct 24, 2015 at 9:14 AM, Stacey Johnson > > wrote: > > What is the way to pre filter records shown in customer portal? > Need to limit records visibility to the particular value of picklist > > Tnx, Stacey > > > > > _______________________________________________ > http://www.vtiger.com/ > From stacey.johnson110 at gmail.com Tue Oct 27 15:29:35 2015 From: stacey.johnson110 at gmail.com (Stacey Johnson) Date: Tue, 27 Oct 2015 22:29:35 +0700 Subject: [Vtigercrm-developers] Customer Portal - filter records In-Reply-To: References: Message-ID: O.o Can't believe I miss it.. Thank you Matus. Stacey On Tue, Oct 27, 2015 at 6:10 PM, IT-Solutions4You wrote: > https://wiki.vtiger.com/vtiger6/index.php/Customer_Portal > > Module and Access control > > List of modules that are to be shown to the Portal user. You can enable or > disable these modules. Disable the modules that you don?t want your Portal > users to have access on it. To reorder the modules menu just drag and drop > the module where you want it to place. > Clicking on a module will take the user to Portal fields and privileges. > > > Then see: https://wiki.vtiger.com/vtiger6/index.php/Picklist_Editor > Assigning Roles > > Vtiger CRM gives you the flexibility to grant or revoke access to picklist > values through Picklist Editor. When you assign or disable picklist values > to a selected role, changes will be affected across all users in that role. > > > Matus > ITS4You > > > D?a 27. 10. 2015 o 11:55 Stacey Johnson nap?sal(a): > >> anybody? >> >> xxx :-) >> >> On Sat, Oct 24, 2015 at 9:14 AM, Stacey Johnson >> > > wrote: >> >> What is the way to pre filter records shown in customer portal? >> Need to limit records visibility to the particular value of picklist >> >> Tnx, Stacey >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> >> > > _______________________________________________ > http://www.vtiger.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From prasad at vtiger.com Tue Oct 27 21:06:09 2015 From: prasad at vtiger.com (Prasad) Date: Wed, 28 Oct 2015 02:36:09 +0530 Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page In-Reply-To: <24633167bff8479dbcf98a731636d3a0@AlexPMS.CS.local> References: <24633167bff8479dbcf98a731636d3a0@AlexPMS.CS.local> Message-ID: You will need to migrate to 6.4 for PHP 5.5 support. -- FB I Twit I LIn I Blog I Website On Tue, Oct 27, 2015 at 3:48 AM, Alex Martin wrote: > Did you update Pear? You may have to reinstall Pear:DB > > > > *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: > vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *S?ren > Madsen > *Sent:* Monday, October 26, 2015 6:13 PM > *To:* Vtiger Developer List > *Subject:* [Vtigercrm-developers] PHP 5.5 upgrade results in blank page > > > > Hi guys! > > > > I have a server (CentOS) with vtiger 6.2 installed and everything was > running just fine. I wanted to update PHP to v.5.5, but after the update, > the vtiger login page is returned blank > > - Just a white page without any errors. > > - Debug Log doesn't return anything usefull. > > - If I right click on the login page to see the sourcecode, this is also > returned blank. > > - I've added an index.html to test the site and this is displayed correct. > > - I've tried to make a fresh install of vtiger too see if any server > requirements failed - but all requirements are meet by the server. However > the installation fails in step 2, when I'm supposed to give the MySQL and > admin info, I never get to see this page. Then the installation script just > returns a blank page again. > > > > What am I missing? Anyone got a suggestion, I'm running out of ideas...... > > > > -- > > Best regards > > > > > > > > _______________________________________________ > http://www.vtiger.com/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mobilcmcdk at gmail.com Tue Oct 27 21:14:33 2015 From: mobilcmcdk at gmail.com (=?UTF-8?Q?S=C3=B8ren_Madsen?=) Date: Tue, 27 Oct 2015 22:14:33 +0100 Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page In-Reply-To: References: <24633167bff8479dbcf98a731636d3a0@AlexPMS.CS.local> Message-ID: Well if thats the case, the answer to my question is quite obvious. Thx prasad Den tirsdag den 27. oktober 2015 skrev Prasad : > You will need to migrate to 6.4 for PHP 5.5 support. > > -- > FB I Twit > I LIn I Blog > I Website > > On Tue, Oct 27, 2015 at 3:48 AM, Alex Martin > wrote: > >> Did you update Pear? You may have to reinstall Pear:DB >> >> >> >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com >> >> [mailto:vtigercrm-developers-bounces at lists.vtigercrm.com >> ] >> *On Behalf Of *S?ren Madsen >> *Sent:* Monday, October 26, 2015 6:13 PM >> *To:* Vtiger Developer List > >> > >> *Subject:* [Vtigercrm-developers] PHP 5.5 upgrade results in blank page >> >> >> >> Hi guys! >> >> >> >> I have a server (CentOS) with vtiger 6.2 installed and everything was >> running just fine. I wanted to update PHP to v.5.5, but after the update, >> the vtiger login page is returned blank >> >> - Just a white page without any errors. >> >> - Debug Log doesn't return anything usefull. >> >> - If I right click on the login page to see the sourcecode, this is also >> returned blank. >> >> - I've added an index.html to test the site and this is displayed >> correct. >> >> - I've tried to make a fresh install of vtiger too see if any server >> requirements failed - but all requirements are meet by the server. However >> the installation fails in step 2, when I'm supposed to give the MySQL and >> admin info, I never get to see this page. Then the installation script just >> returns a blank page again. >> >> >> >> What am I missing? Anyone got a suggestion, I'm running out of ideas...... >> >> >> >> -- >> >> Best regards >> >> >> >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > -- Best regards S?ren -------------- next part -------------- An HTML attachment was scrubbed... URL: From jnmutuku at gmail.com Wed Oct 28 02:19:06 2015 From: jnmutuku at gmail.com (Mutuku Ndeti) Date: Wed, 28 Oct 2015 05:19:06 +0300 Subject: [Vtigercrm-developers] Issue with import Message-ID: Hi, I am having an issue where 12k contacts are not getting imported. Vtiger tells me "Your import has been scheduled and will start within 15 minutes. You will receive an email after import is completed.", but nothing gets imported. Cron is running well. The csv data formats are just names, emails and phone numbers Please help -- www.agile.co.ke -------------- next part -------------- An HTML attachment was scrubbed... URL: From jnmutuku at gmail.com Wed Oct 28 02:45:19 2015 From: jnmutuku at gmail.com (Mutuku Ndeti) Date: Wed, 28 Oct 2015 05:45:19 +0300 Subject: [Vtigercrm-developers] Issue with import In-Reply-To: References: Message-ID: Fixed the issue. The import scheduler setting was set to inactive. On Wed, Oct 28, 2015 at 5:19 AM, Mutuku Ndeti wrote: > > Hi, > > I am having an issue where 12k contacts are not getting imported. > > Vtiger tells me "Your import has been scheduled and will start within 15 > minutes. You will receive an email after import is completed.", but nothing > gets imported. > > Cron is running well. The csv data formats are just names, emails and > phone numbers > > > > Please help > -- > www.agile.co.ke > > -- www.agile.co.ke -------------- next part -------------- An HTML attachment was scrubbed... URL: From preexo at googlemail.com Wed Oct 28 08:31:15 2015 From: preexo at googlemail.com (Preexo) Date: Wed, 28 Oct 2015 01:31:15 -0700 (PDT) Subject: [Vtigercrm-developers] marketplace In-Reply-To: References: <1443501789629-17482.post@n4.nabble.com> <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> <1444019247307-17542.post@n4.nabble.com> Message-ID: <1446021075317-17826.post@n4.nabble.com> alright, so this is still not working for me and it's getting rather annyoing now. I would like to update the marketplace and a module in it, but I can't because I get an error. 2015-10-28_16_41_41-ExtensionStore.png What can I do to get this solved now, I can't login into the extension store anywhere on my CRM, I can't logout of the extensionstore anywhere on my CRM... Please help thanks -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17826.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From manu.k at vtiger.com Thu Oct 29 06:46:05 2015 From: manu.k at vtiger.com (Manu urs) Date: Thu, 29 Oct 2015 12:16:05 +0530 Subject: [Vtigercrm-developers] marketplace In-Reply-To: References: <1443501789629-17482.post@n4.nabble.com> <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> <1444019247307-17542.post@n4.nabble.com> <1446021075317-17826.post@n4.nabble.com> Message-ID: Hi Preexo, Please find the latest Extension store Zip file in the attachment. Update the extension store through the module manager and also clear all the entry in the 'vtiger_extnstore_users' table.This will resolve your issue . Regards, Manu Urs On Thu, Oct 29, 2015 at 11:09 AM, Uma S wrote: > Manu, > > You can send latest extension store package zip to him, and ask to install > from file option to get the latest update and resolve the issue. > > On Wed, Oct 28, 2015 at 10:41 PM, Manu urs wrote: > >> Hi >> >> Shall i suggest Preexo to update Extension through the module manager ? >> Any other suggestion ? >> >> >> Regards, >> >> Manu Urs >> >> On Wed, Oct 28, 2015 at 2:01 PM, Preexo wrote: >> >>> alright, so this is still not working for me and it's getting rather >>> annyoing >>> now. I would like to update the marketplace and a module in it, but I >>> can't >>> because I get an error. >>> 2015-10-28_16_41_41-ExtensionStore.png >>> < >>> http://vtiger-crm.2324883.n4.nabble.com/file/n17826/2015-10-28_16_41_41-ExtensionStore.png >>> > >>> >>> What can I do to get this solved now, I can't login into the extension >>> store >>> anywhere on my CRM, I can't logout of the extensionstore anywhere on my >>> CRM... >>> Please help thanks >>> >>> >>> >>> -- >>> View this message in context: >>> http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17826.html >>> Sent from the vtigercrm-developers mailing list archive at Nabble.com. >>> _______________________________________________ >>> http://www.vtiger.com/ >>> >> >> >> >> -- >> Regards, >> Manu >> > > > > -- > With > Best Regards > Uma.S > Vtiger Team > -- Regards, Manu -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ExtensionStore.zip Type: application/zip Size: 45004 bytes Desc: not available URL: From preexo at googlemail.com Thu Oct 29 08:42:44 2015 From: preexo at googlemail.com (Preexo) Date: Thu, 29 Oct 2015 01:42:44 -0700 (PDT) Subject: [Vtigercrm-developers] marketplace In-Reply-To: References: <1443527427957-17490.post@n4.nabble.com> <1443580562818-17501.post@n4.nabble.com> <1444019247307-17542.post@n4.nabble.com> <1446021075317-17826.post@n4.nabble.com> Message-ID: <1446108164526-17831.post@n4.nabble.com> Manu, Uma, thank you very much! Worked great and solved the problem right away. The new version of the store looks much better now btw! With all the buttons at the top, makes sense now! Great! :) I found one package that I could update, but it doesn't make sense to me, I don't even know what it is... We certainly have never installed it, so updating should not be possible, only installing... maybe you wanna have a look if this is correct, see screenshot: 2015-10-29_16_52_13-ExtensionStore.png -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-marketplace-tp17384p17831.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From alanslists at gmail.com Thu Oct 29 14:24:48 2015 From: alanslists at gmail.com (Alan Lord) Date: Thu, 29 Oct 2015 14:24:48 +0000 Subject: [Vtigercrm-developers] How to get result of app.showModalWindow? Message-ID: I have some js code. > AppConnector.request(params).then( > function(data) { > var callBackFunction = function(response) { > console.log(response); > jQuery(el).val(''); > if(jQuery(el).prop("readonly")) { > jQuery(el).prop("readonly", false); > } > } > > if(data['success']) { > progressIndicatorElement.progressIndicator({'mode' : 'hide'}); > //TODO We're good to go so resume/restart the Validation Engine > // event.currentTarget().trigger('click'); // Not right but the kind of idea... > } else { > progressIndicatorElement.progressIndicator({'mode' : 'hide'}); > // So there is at least one duplicate number. > // Know if they click OK/Cancel? > app.showModalWindow(data['error']['code'], function(response) { > console.log("In showModalWindow"); > console.log(response); > callBackFunction(response) > // Something? > }); > } > }, What I need to do is to return to my callBackFunction whether the user clicked on the OK or Cancel in the modalPopup... TIA Al From preexo at googlemail.com Fri Oct 30 02:14:19 2015 From: preexo at googlemail.com (Preexo) Date: Thu, 29 Oct 2015 19:14:19 -0700 (PDT) Subject: [Vtigercrm-developers] Creating related modules fields In-Reply-To: References: Message-ID: <1446171259798-17833.post@n4.nabble.com> So far no custom relationship in vtiger has worked for me out of the box. Most times it was fiddling with the DB until it finally worked, sometimes I ended up writing my own function for my custom modules, e.g. "get_salesorders" and then do the query there like it made sense to me, but probably not as vtiger works in general. not good... but worked for me. Creating new relationships (wait till you want to relate something to the calendar items, even bigger pain) is really not straight forward in vtiger yet at all. Maybe some collaborated effort can fix this one day. I'm sorry, I unfortunately don't have a general answer for you. What does your "get_salesorders" method look like? -- View this message in context: http://vtiger-crm.2324883.n4.nabble.com/Vtigercrm-developers-Creating-related-modules-fields-tp17812p17833.html Sent from the vtigercrm-developers mailing list archive at Nabble.com. From mobilcmcdk at gmail.com Fri Oct 30 15:38:13 2015 From: mobilcmcdk at gmail.com (=?UTF-8?Q?S=C3=B8ren_Madsen?=) Date: Fri, 30 Oct 2015 16:38:13 +0100 Subject: [Vtigercrm-developers] PHP 5.5 upgrade results in blank page In-Reply-To: References: <24633167bff8479dbcf98a731636d3a0@AlexPMS.CS.local> Message-ID: Well that got me some of the way.... At least the screen isn't totally blank anymore However when I reach step 4 in the installation process i only se the vtiger logo. Seems to me like I'm missing a module/extension on the server og some kind of misconfiguration in php.ini Would anyone be willing to take a look at my php.ini file to see if I'm missing something obvious? ? php.ini-copy.txt ?? 2015-10-27 22:06 GMT+01:00 Prasad : > You will need to migrate to 6.4 for PHP 5.5 support. > > -- > FB I Twit > I LIn I Blog > I Website > > On Tue, Oct 27, 2015 at 3:48 AM, Alex Martin > wrote: > >> Did you update Pear? You may have to reinstall Pear:DB >> >> >> >> *From:* vtigercrm-developers-bounces at lists.vtigercrm.com [mailto: >> vtigercrm-developers-bounces at lists.vtigercrm.com] *On Behalf Of *S?ren >> Madsen >> *Sent:* Monday, October 26, 2015 6:13 PM >> *To:* Vtiger Developer List >> *Subject:* [Vtigercrm-developers] PHP 5.5 upgrade results in blank page >> >> >> >> Hi guys! >> >> >> >> I have a server (CentOS) with vtiger 6.2 installed and everything was >> running just fine. I wanted to update PHP to v.5.5, but after the update, >> the vtiger login page is returned blank >> >> - Just a white page without any errors. >> >> - Debug Log doesn't return anything usefull. >> >> - If I right click on the login page to see the sourcecode, this is also >> returned blank. >> >> - I've added an index.html to test the site and this is displayed >> correct. >> >> - I've tried to make a fresh install of vtiger too see if any server >> requirements failed - but all requirements are meet by the server. However >> the installation fails in step 2, when I'm supposed to give the MySQL and >> admin info, I never get to see this page. Then the installation script just >> returns a blank page again. >> >> >> >> What am I missing? Anyone got a suggestion, I'm running out of ideas...... >> >> >> >> -- >> >> Best regards >> >> >> >> >> >> >> >> _______________________________________________ >> http://www.vtiger.com/ >> > > > _______________________________________________ > http://www.vtiger.com/ > -- Best regards S?ren -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: file.png Type: image/png Size: 124216 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: file.png Type: image/png Size: 124216 bytes Desc: not available URL: