Questions tagged [vtigercrm]

Vtiger CRM refers to both cloud and open source versions of the CRM application offered by the company Vtiger. Vtiger's open source CRM application was originally forked from SugarCRM with the intention of being a fully open source CRM application with comparable functionality to SugarCRM and Salesforce.com.

Vtiger CRM refers to both cloud and open source versions of the CRM application offered by the company Vtiger. Vtiger's open source CRM application was originally forked from SugarCRM with the intention of being a fully open source CRM application with comparable functionality to SugarCRM and Salesforce.com. It offers reporting, a customer portal and an Outlook plugin in its free edition, whereas those functions are in paid versions of the other CRM applications. Vtiger's cloud application was released in 2010, and offers added functionality such as a new interface, advanced reporting, and email campaigns.

205 questions
1
vote
1 answer

Need for examples for the Vtiger "add_related" method

Please, give some invocation examples for the Vtiger "add_related" method. I'm trying to call it in this way: $result = $client->doInvoke('add_related', ['sourceRecordId' => '12x4', 'relatedRecordId' => '1x2', 'relationIdLabel' => 'Campaigns'],…
synack
  • 21
  • 4
1
vote
0 answers

[vtiger][Webservice] unable to create document in Documents Module, in vtigercrm, using webservice Database error while performing requested operation

I am working on web services of vtigercrm, I want to create a document in the document module in vtigercrm 6.5 using web service, how I can do create a new document in document module in vtigercrm? I create one PHP file, where I made a form for…
1
vote
1 answer

Custom Field in Vtiger 7

Im trying to create a custom UIType and a followed this stack overflow without success, this is what i did: Step1: update "modules\Vtiger\models\Field.php" and add new UIType as 222 I added the new UIType as follow in Field.php into public function…
Edds
  • 11
  • 1
1
vote
0 answers

[vtiger][Webservice] Database error while performing requested operation

I use the Vtiger webservice with its different methods CRUD, login ... etc. I created a task via the Calendar module, it worked well, but when I want to delete it does not work. If I'm not mistaken, I need to have the object's id (so Calendar) in…
TheosEgg
  • 11
  • 4
1
vote
1 answer

vtiger upgrade from 7.0.1 to 7.1.0 causing illegal request

If I try to upgrade vtiger, I am getting an illegal request message, nothing happens, any Idea whats going wrong?
Cblack
  • 13
  • 2
1
vote
1 answer

adding new UI Type in Vtiger 7.0

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…
vijaybir singh
  • 151
  • 1
  • 1
  • 13
1
vote
1 answer

Couldn't Enable Fileinfo Extension through php.ini, still getting './configure' '--disable-fileinfo'

I have installed Vtiger CRM in my client CPanel. On file uploading, Im getting error {"success":false,"error":{"code":"mime_magic or fileinfo extension required.","message":"mime_magic or fileinfo extension required."}} so as per some references,i…
Janen R
  • 729
  • 10
  • 21
1
vote
1 answer

Create To Do by code in vtiger crm

I am using vtiger crm version 6.4. We need to create some 'To Do' by custom workflow code. Now, the code we have, works for events, but not for ToDo. Can anyone Help me out with it? Added the code that is working for events. $activity =…
Abir Imtiaz
  • 33
  • 1
  • 10
1
vote
1 answer

vTiger crm change modules config

I want to add new module and deactivate some controlls(left panel and bottom header). Where is some file(config) in which I can write some conditions for this? I want to safe for this module only top header.
stand
  • 139
  • 1
  • 12
1
vote
0 answers

How to work with AppConnector in Vtiger?

I have an API call in vtiger which will give Accounts record details, this call is executed by AppConnector.request() method in vtiger. How to get the data from this call and manipulate with some conditions. Meaning that,... I have a code like…
Jaccs
  • 1,052
  • 3
  • 12
  • 33
1
vote
1 answer

How do I fix the Return URL in Vtiger appending "?success=ok" to the URL?

VTiger is adding "?success=ok" to the Return URL of my webform. I can't figure out how to fix it. I think the problem is in the below php file.
1
vote
0 answers

How generate custom form via vtiger field object?

Add below code in module/Edit.php $query = 'SELECT f.* FROM vtiger_field as f INNER JOIN vtiger_tab as t on f.tabid = t.tabid and t.name=? WHERE fieldname =?'; $result = $adb->pquery($query, array('{module_name}',…
StackCoder
  • 87
  • 1
  • 11
1
vote
1 answer

How to pass two parameters to a select to a SELECT query in vtiger?

I would like to pass two parameters to a SELECT query for one scenario in a vtiger custom function. Like below .. function start_date($projectid, $stage){ $adb = PearDatabase::getInstance(); $stage = "Stage-0"; $data =…
Jaccs
  • 1,052
  • 3
  • 12
  • 33
1
vote
1 answer

How to add a combo drop-down user list in vtigercrm?

I'm using existing Task module under the Project module. I would like to assign particular task to multiple workers. Meaning that group of people will together complete the task. I already have workers as users in my vtigercrm. So if i make a user…
1
vote
1 answer

How one can create users field like "Assigned To" field in vtigercrm?

I have a module ABC in that i need to create another users picklist irrespective of "Assigned To" like already there for every module. I tried to create that by copying existed field for "Assigned To" in vtiger_field table. But it is not working for…
1
2
3
13 14