Questions tagged [sugarcrm]

Questions concerning customization and development within the customer relationship management software "Sugar" by SugarCRM Inc. In order to receive more useful answers quicker, it's strongly recommended to specify the edition and version of the Sugar instance(s) in question, as there are significant differences between the different releases and derivatives.

SugarCRM is a software company based in Cupertino, California. It produces the web application Sugar, a customer relationship management (CRM) system.

SugarCRM's functionality includes sales-force automation, marketing campaigns, customer support, collaboration, Mobile CRM, Social CRM, and reporting.

The company operates a number of websites, including its commercial website Sugarcrm.com and Sugar Exchange (for third-party extensions), and user forums. As of 2017, SugarCRM reported two million users.

In February 2014, in a blog post that provoked a strong reaction from the development community, SugarCRM announced that they would no longer be releasing new open-source versions of their Community Edition application; from now on this would be a bug-fix-only application.

Site: https://www.sugarcrm.com/

Useful resources:

Documentation

SugarCRM Documentation

SugarCRM Community Edition Documentation

Help Forums

SugarCRM Community

1722 questions
6
votes
2 answers

How to create a relationship between Leads and Custom Modules in SugarCRM CE?

function createPJOpportunityRelationship($pj_id, $op_id) { echo "creating relationship"; $set_relationship_value = array( 'module1' => 'geral_pessoa_juridica', 'module1_id' => $pj_id, 'module2' => 'Opportunities',…
Lucas Famelli
  • 1,565
  • 2
  • 15
  • 23
6
votes
2 answers

making a file type field in sugarcrm custom module

i have a custom module Sample Management. I want to create a file type field in editviewdef.php so that i can upload the file and download it from the detailed view whenever needed. Would anyone tell me the steps how to proceed for this task?
layman99
  • 61
  • 1
  • 3
6
votes
1 answer

SugarCRM - Incoming emails stripped outside body tag

On our system, we received an email from one of our supplier, formatted this way :

Email content

BMN
  • 8,253
  • 14
  • 48
  • 80
6
votes
7 answers

How to solve undefined labels in suiteCRM

I am getting this error in SuiteCRM: "NetworkError: 404 Not Found - /cache/jsLanguage/Home/en_us.js?v=9W_DRN8pphMvoAsvU564UA" Please help me that how can I solve it?
vinsonjebasingh
  • 311
  • 3
  • 11
6
votes
1 answer

Curl: Saving a file instead of opening it

I'm calling an API that sends me this response: HTTP/1.1 200 OK\r\n Date: Fri, 24 Jul 2015 06:30:16 GMT\r\n Server: Apache/2.2.26 (Unix) mod_ssl/2.2.26 OpenSSL/0.9.8e-fips-rhel5 mod_mono/2.6.3 mod_auth_passthrough/2.1 mod_bwlimited/1.4…
Vico
  • 1,696
  • 1
  • 24
  • 57
6
votes
1 answer

How to create dependent tinymce textarea according to the selection of email template name?

I am using SugarCRM 6.5.x CE version. I want to make a dependent functionality where I have a dropdown field with list of email template name. And according to the selection of email template, textarea should be filled with email template body text.…
santa banta
  • 313
  • 1
  • 2
  • 17
6
votes
3 answers

Fetching Collection of SugarCRM Beans

Programmatically speaking, is there a way to fetch an array or collection of SugarCRM bean objects? That is, let's say I wanted to fetch a number of account rows that included the word Bank in their name. With raw SQL, I'd do something like…
Alana Storm
  • 164,128
  • 91
  • 395
  • 599
6
votes
1 answer

Is this api restful?

I'm trying to wrap my head around creating a restful api that reads, creates, updates, and deletes multiple records at a time. I came across SugarCRM's "restful" api and the examples they provide. I have no idea what is considered restful about…
David
  • 10,418
  • 17
  • 72
  • 122
5
votes
2 answers

Call to undefined function mime_content_type()

Using Suite crm 7.9.1 . newbie to suitecrm. I created a Person Form in Campaigns module . Created successfully . But when i tried to download it , got the below error . Fatal error: Uncaught Error: Call to undefined function mime_content_type()…
bhavya
  • 195
  • 2
  • 2
  • 7
5
votes
2 answers

Uploadify not working in Google Chrome and Safari

I have gone through all the available post on SO. But, couldn't found the helpful post. It was working fine earlier on all the browser. But, stop working now on Chrome and Safari. I do not get any error in console when loading it on Chrome and…
Ravi
  • 30,829
  • 42
  • 119
  • 173
5
votes
1 answer

Can't get outbound email working in self-hosted SugarCRM 6.5

I can't seem to get outbound email working from my SugarCRM installation, with only the message SMTP connect() failed appearing in the logs. I've set my smtp server to smtp.gmail.com, email address, password, TLS, port 587. When I go to 'Send Test…
Jeremy Jones
  • 4,561
  • 3
  • 16
  • 26
5
votes
2 answers

SuiteCRM: Redirect to editview from beforesave hook logic

Redirect to editview from beforesave hook logic I am trying to redirect from before save hook logic if an error occurs in it.It should redirect to edit view with error.I am using this code: function ShowError($errorMsg,$beanID){ try{ …
5
votes
1 answer

Users, Roles, and Security Groups Management - How to Set up a Downline in SuiteCRM

SuiteCRM 7.5.1 - In Reference to using Users, Roles, and the Security Groups within SuiteCRM specifically. So, I have a specific setup and I've looked through and read lots of documentation and tried my best to wrap my head around how SuiteCRM does…
Josh Whitlow
  • 481
  • 6
  • 25
5
votes
2 answers

Use Plone's authentication mechanism to login to other sites

I am using Plone and Sugar CRM. I want to allow users to only have a single username and password across both systems. When they change their password in Plone they should not have to change it in Sugar CRM. Is there a simple way to do this?
Dan
  • 3,777
  • 4
  • 25
  • 23
5
votes
2 answers

SugarCRM Request Timeout

I'm using SugarCRM to fetch records (more than 1000+ records) in Cases. I already set up config_override.php: $sugar_config['max_record_fetch_size']= 1200; php.ini: max_execution_time = 3600; I still get the timeout error. What else do i need to…