vtigercrm

vTiger cron jobs not triggering workflows. How can I troubleshoot?

对着背影说爱祢 提交于 2021-01-29 08:33:15
问题 I'm running a Vtiger instance on a cloud server. All was well until about two weeks ago when the workflows stopped sending. I have verified that the cron jobs are executing. However, this is a shared hosting environment so as far as I know I don't have access to the cron logs. I have checked that the Bash script that triggers the job has the right permissions. And yet, it is still not runnig. Does anybody have experience with vTiger and has successfully troubleshooted this? Judging by the

adding new UI Type in Vtiger 7.0

落花浮王杯 提交于 2020-02-02 13:41:30
问题 I have tried to create a new UI Type in vtiger 7.0.0. but facing the below error. "Unable to load template file 'modules/Vtiger/uitypes/ Questionnaire.tpl ' in 'modules/Vtiger/partials/ EditViewContents.tpl '" Steps which I have followed to create a new UI Type are as below. Step1: update " modules\Vtiger\models\Field.php " and add new UIType as 222 Step2: created a new file " modules\Vtiger\uitypes\Questionnaire.php " Step3: created new .tpl files " layouts\vlayout\modules\Vtiger\uitypes

adding new UI Type in Vtiger 7.0

拜拜、爱过 提交于 2020-02-02 13:40:49
问题 I have tried to create a new UI Type in vtiger 7.0.0. but facing the below error. "Unable to load template file 'modules/Vtiger/uitypes/ Questionnaire.tpl ' in 'modules/Vtiger/partials/ EditViewContents.tpl '" Steps which I have followed to create a new UI Type are as below. Step1: update " modules\Vtiger\models\Field.php " and add new UIType as 222 Step2: created a new file " modules\Vtiger\uitypes\Questionnaire.php " Step3: created new .tpl files " layouts\vlayout\modules\Vtiger\uitypes

How to relate any email with custom module data in Vtiger CRM?

邮差的信 提交于 2020-01-07 02:00:30
问题 I have created a custom module and also have integrated emails tab in Related list. Now I want to link any email with any entry from this custom module listing. When I create(compose) any email and from that compose popup screen I am able to select my custom module option, but when i click on the "search" button to find the entry from listing (to which i want to relate that email), I find no listing for that custom module. However there are few entries available for that custom module. So the

vTigerCRM 7 - Scheduler isn't running any cron jobs unless manually triggered

╄→гoц情女王★ 提交于 2020-01-04 21:36:07
问题 I'm running vTiger 7.0 and I noticed on the first of the month, none of my invoices were created. I then took a look at the Scheduler and noticed that the "Last scan started" and "Last scan ended" fields show that none of the cron jobs had fired in days. The cron jobs are scheduled to fire in 15 minute intervals, with the exception of "RecurringInvoice" which runs every 12 hours. If I visit /myvtigerinstall/vtigercron.php, the cron jobs will all fire but nobody wants to have to manually run

How to Create custom operation for Webservice VtigerCRM?

纵然是瞬间 提交于 2019-12-21 02:54:46
问题 I am new in vtigercrm. I want need a custom operation to get all modules from vtiger_tab table by using webservice. How do I Create a custom operation for Web service Vtiger CRM? 回答1: To define a new webservice custom method you have to manipolate 2 tables vtiger_ws_operation and vtiger_ws_operation_parameters First declare the mathod name and handler by executing a query like INSERT INTO `vtiger_ws_operation` ( `name`, `handler_path`, `handler_method`, `type`, `prelogin`) VALUES ('my

how to add new field to vtiger_activity in vtiger crm

旧城冷巷雨未停 提交于 2019-12-13 17:21:22
问题 I want to add new field to vtiger_activity table in vtiger crm. I added the column in the table but now I am not getting place from where the insert function is called, and also how to add this new field to the column list through php code. thanks 回答1: You can add field from module setting-> Layout Editor-> Add Custom Filed Or if you want to add field by using code then here below is the code. <?php $Vtiger_Utils_Log = true; include_once('vtlib/Vtiger/Menu.php'); include_once('vtlib/Vtiger

Calculation on vTiger field before save handler on Javascript Side (code inside)

眉间皱痕 提交于 2019-12-13 03:24:28
问题 I need to understand how to do real time calculation on Edit.js By searching and looking around i came up with this code in Edit.js of the Contact Module. calculate_amount: function (){ var units = $("input[name='cf_852']"); var value = $("input[name='cf_854']"); $(units, value).on('keyup', function(){ if (units.val() != '' && value.val() != ''){ var currentamount = units.val() * value.val(); $("input[name='cf_856']").val(currentamount); } }); } Have i done something wrong? Because it doesn't

adding new UI Type in Vtiger 7.0

那年仲夏 提交于 2019-12-08 13:32:32
I have tried to create a new UI Type in vtiger 7.0.0. but facing the below error. "Unable to load template file 'modules/Vtiger/uitypes/ Questionnaire.tpl ' in 'modules/Vtiger/partials/ EditViewContents.tpl '" Steps which I have followed to create a new UI Type are as below. Step1: update " modules\Vtiger\models\Field.php " and add new UIType as 222 Step2: created a new file " modules\Vtiger\uitypes\Questionnaire.php " Step3: created new .tpl files " layouts\vlayout\modules\Vtiger\uitypes\Questionnaire.tpl " and " QuestionnaireFieldSearchView.tpl " in the same dir. after all these steps facing