Data Import | memcache.connect error - Shared Hosting

by Administrator 6. July 2010 17:13

Importing data is a critical component to any CRM project.  Getting Leads, Contacts, Accounts, Opportunities and Notes into your solution is critical.  Many clients operate in a shared hosting environment and a common error we have come across when clients attempt a data import is listed below:

 

NOTICE: [8] Memcache::connect() [memcache.connect]: Server localhost (tcp 11211) failed with: Connection refused (111) on line 62 in file sugarCRM/include/utils/external_cache/SugarCache_Memcache.php

WARNING: [2] Memcache::connect() [memcache.connect]: Can't connect to localhost:11211, Connection refused (111) on line 62 in file sugarCRM/include/utils/external_cache/SugarCache_Memcache.php. 

 

When using Sugar in a shared hosting environment you do not have access to the server root or the php.ini file.  A simple change in the config.php can solve the problem.  You should see $sugar_config = array(...) in the config.php directory.  Add the following value to the config.php file:

 

'external_cache_disabled' => true

This should solve the error/problem and allow you to import data.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

SugarCRM

 

 

 

Marketing Campaigns - List Types

by Administrator 1. July 2010 13:50

We have been working with a client on their marketing campaigns in SugarCRM and we thought we would post an entry related to list types to help out with some of the questions we have received.  Here they are in a nutshell:

 

Usually, you create or import a target list first, associate it with targets, and then associate it with a campaign. However, you can also create a campaign first and then associate it with a target list.
 
 
The general process is as follows:
 
 
 
TARGETS --> TARGET LIST --> CAMPAIGN

 

 

A target list can specify either individuals who need to be included in a campaign or excluded from a campaign. You can create one of the following types of target lists:
 
  • Default. A list of people who are campaign targets and receive the campaign email.


  • Seed. A list of people who need to receive the campaign email but must not be tracked as potential leads. Typically, these are individuals who need to approve the campaign before it is launched.

  • Test. A list of people who receive the campaign email to test how different email clients display the campaign message before you send it out to the default list.

  • Suppression List. A list of people you want excluded from the campaign email recipient list. Typically, these are people who chose to opt out of receiving your campaign message. Suppression lists can be by ID, email address, or domain.

 

Note:  Test and Seed lists are ignored in email tracking statistics.

 

For non-email campaigns, if you have purchased a license for the Sugar Plug-in for Microsoft Word, you can create a form letter in Word for your targets and merge it with names and addresses of your targets in Sugar to create a customized campaign letter for each target. For more information on the plug-in, see Sugar Plug-in for Microsoft Word.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

SugarCRM

 

 

 

Google Maps in SugarCRM

by Administrator 11. June 2010 16:32

How to Add a Google Map to a Module in Sugar 

This can be done to any module, custom or otherwise, that has a address field on it. This article will walk you thru how to add it on the contacts module for primary address.  This customization requires no code level modifications and can be done completely through the studio in about 10 minutes.

The Basics

We will be creating a new field of type iFrame. This of an “iframe” as an area of a webpage thatdisplays information from another website. In this case we will be using theinformation in the primary address field to generate a query to google maps (don’t worry I looked up the hard part for you) which will display on detailview. The field won’t be added to edit view since, it’s value is generated automatically, so there’s nothing for the end user to edit.

The Steps

Go to admin >studio > contacts > fields > create new field  … and use thefollowing settings:

  • Data type = iFrame
  • Field name = ContactMap
  • Display Label = Location
  • System Label = LBL_CONTACTMAP
  • Help and Comment text can be left blank
  • Check the “Generate URL” box
  • Default Value = http://maps.google.com?q={primary_address_street},{primary_address_city},{primary_address_state},{primary_address_postalcode},{primary_address_country}&output=embed
  • Max Size = 255     <- This may need to be changed first to allow the default value to be entered
  • IFrame Height = 400    <- This dictates how tall, in pixels, you want the map to be – adjust to taste
  • Required Field = Unchecked
  • Audit = Unchecked
  • Importable = No
  • Duplicate Merge = Disabled

Save the Field

Add a new panel to contacts > detail view and drag “Location” to it.  Save and Deploy (you may need run admin > repair > quick repair to clear the cache).

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

SugarCRM

 

 

 

Social CRM - Twitter and SugarCRM

by Administrator 11. June 2010 14:32

Taking Your First Social CRM Steps with SugarCRM 6.0 Studio


Provided by: Jan Sysmans, SugarCRM
 

There is a lot of talk about Social CRM (SCRM) these days and many customers are waiting for their CRM vendor to add SCRM features to their releases.   SugarCRM customers however don’t have to wait; they can take their first steps into the SCRM world by leveraging the powers of Sugar Studio.

Let’s say you would want to add a twitter feed on an account, contact or lead to your SugarCRM view.  But you want to do this is a scalable way.

This post discusses how you can generate scalable social links in your Sugar instance by adding any field (standard or custom) to a generated URL in an iFrame.

As an example, I’m going to be contact module and adding a twitter search on the contact.

First let’s create a custom field for the twitter name of our contact.


 

Then we’re going to put this field in the edit view.  This allows us to enter the contact’s twitter name when we edit all of our contact’s contact information. This also allows us to reuse the contacts twitter name in a different Studio integration later should we choose to do so.


 

This will look as follows in the Edit view.


 

Now let’s create an iFrame using the standard twitter search URL as the generated URL, but we replace the term we’re searching with the custom field name (“Field Name”] we created earlier.  In this example we’re using the following URL:

http://search.twitter.com/search?q={whateveryouwantosearchfor}

 

Finally in the detailed view of the contact, we’re creating a new panel, and we’re inserting the iFrame into this panel.  Note that we’ve also check marked the new “display panels as tabs” feature.  This is a feature is new in Sugar 6.

 

Here’s the end result.  And this is now enabled for all contacts in your Sugar instance.  You see that the twitter search is now displayed in a separate panel.  Note that you can do the same in any Sugar Module.  You can do the same for other Social information such as facebook, LinkedIn, blogs or for any Internet service where there is a consistent URL with a name variable.  You can use any field in Sugar and replace this with the variable.

 

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

SugarCRM

 

 

 

Team Management - SugarCRM

by Administrator 11. May 2010 13:05

Introduction to Teams in SugarCRM 

A team consists of one or more users who are assigned to manage a record.  Teams provide data security because users can access a record only if they are members of  a team that is assigned to manage it. All records are assigned to at least one team, and can be assigned to more than one team.

 

Administrators are implicit members of every team, and therefore can see all records.

Sugar provides the following teams for your use:

  • Private: Sugar creates a private team for every user. Only the user can access and manage records assigned to his or her private team.  When you create a record,  Sugar automatically assigns it to your  private team. You can then assign it to another user if needed. Private teams include the reporting hierarchy. Hence, users can see the records of any user who reports to them, regardless of their team membership. You cannot delete or edit this team.
  • Global: This is the universal team. When users are created, they are members of the Global team by default. Every user can view all records assigned to the Global team. Do not delete or edit the Global team.
  • East: This team is provided for your use and has no special characteristics. You can delete this team.
  • West: This team is provided for your use and has no special characteristics. You can delete this team.

You can create any number of teams, depending on the needs of your organization. For example, based on the reporting hierarchy, you may want to create a team of users who report to the same manager. Based on product management requirements, you may want to create a cross-functional team of users who report to different managers but who manage the same product.

Users can belong to multiple teams.  Hence, if users who need to access a record are spread across multiple teams, the record can be assigned to those teams. In such cases, the user who creates the record can select a primary team and one or more secondary teams.

Users who are assigned to a record can access it regardless of team membership.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

SugarCRM

 

 

 

SugarCRM 6.0 | Home Page Screen Shot

by Administrator 3. May 2010 12:59
Great New UI from SugarCRM.  The new is UI is very slick, streamlined, and provides quite a few new shortcuts and features.  If you are interested in a live demo of 6.0 please let us know and we can schedule one for you, or provide access to a live demo environment.
 
 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

SugarCRM

 

 

 

Upgrading to Sugar 6.0 – Impact on Customizations

by Administrator 3. May 2010 12:49

From SugarCRM...

 

Changes and enhancements made in Sugar 6.0 will have the following impact on customizations that you made in your current Sugar application:

  • The new Sugar theme will display after you upgrade to 6.0.
  • The Sitemap is not available in the new Sugar theme, but is available for other themes.

 

The following customizations will be preserved: 

  • Customizations to Sugar made through Studio and Module Builder.
  • Code customizations in Sugar Dashlets.

 

The following customizations may not be preserved, or may not display correctly: 

  • Code-customized Lead Conversion forms that are located in custom/directory are not preserved.
  • Custom themes will have to be updated to correct any display issues.
  • Non-standard, code-customized page layouts may have display issues.
  • The Quick Create Form that displayed below the Shortcuts menu has been removed and will no longer appear in any Sugar theme.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

 

 

 

What’s New in Sugar 6.0

by Administrator 30. April 2010 12:53

In 6.0, the Sugar User Interface has been extensively redesigned and several features have been added or enhanced to improve user experience and performance.

 

Getting Started

  • A new Admin Wizard to guide administrators through branding Sugar for their organization.
  • A new User Wizard to guide users through configuring their user profile and preferred settings in Sugar.

 

UI Changes

  • An updated Sugar theme features a cleaner design with larger fonts and brighter icons.
  • The Shortcuts menu has been removed, and the module action links have been moved to the Actions list in the module tab menus.
  • The Shortcuts menu has been removed, and the module action links now display below the module tabs.
  • The Last Viewed links have been moved into Module tabs to enable you to quickly access records in other modules without navigating away from your current page.
  • A slider bar hides global links that you do not access frequently.
  • A new Shortcut Bar enables you to access Quick Create Forms from any page.
  • Global Search has been enhanced to display initial results within your current page. The search results are module-weighted and display results from the current module first, followed by results from other modules.
  • Basic Search has been simplified to search only by record name. For contacts, you can search by first, last, or full name.
  • List View has been modified as follows:

–The Edit icon has been moved to the left.
–The Information icon has been moved to the right.
–Buttons for actions such as Merge, Export, Delete, and Email have been removed, and these options have been moved to the Actions menu.
–The Mass Update panel does not display on the page by default. The Mass Update option is now listed in the Actions menu.

  • The name of the record, module, and system now appear in the browser tab.
  • The Grouped Modules feature has been removed. All modules set to be displayed will appear in the navigation bar.

 

Module Consolidations and Enhancements

  • The Dashboard module has been consolidated with the Home module.     Dashboard pages appear in the Home module next to the Home pages in both new and upgraded instances.
  • The Calendar module has been consolidated with the Activities module, and is the default view of the Activities module.
  • The User Settings page has been redesigned to display panels as tabs for easier navigation.
  • The default page layouts for Edit View and Detail View have been redesigned to display fields in more logical groupings.

 

Studio and Module Builder Enhancements

  • You can edit properties for standard fields including field lengths and whether the field is required or audited.
  • You can customize Quick Create forms for custom modules.
  • You can customize the Convert Lead form to add new fields and new related modules.
  • You can customize “Select” pop-up windows.
  • You can revert from customized layouts to the default layouts.
  • You can specify the next number in Quotes, Cases, and Bug Tracker, as well as in custom modules created using the Issue template.
  • You can display layout panels as tabs.
  • You can set the Address field as a required field.
  • You can set Email Address as a required field.
  • You can add custom fields to Sugar Dashlets and to Sugar Dashlet Search.
  • New field types, “DateTime” and “Image”. DateTime creates a field to enter the date and time. Image creates an image field to upload an image to display in a record.
    Custom modules based on the Person template now display an Email button in the List View to enable users to compose emails without navigating away from the page.
    Relationship labels can be localized.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

 

 

 

SugarCRM 6.0 is available in Beta!

by Administrator 25. April 2010 12:43

SugarCRM 6.0 Beta is Here!!!  Click on the link below to find out more.

 

Preview Sugar 6: Speed. Simplicity. Accessibility.

 

 

 

 

 

 

 

 

 

 

 

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

SugarCRM

 

 

 

SugarCon 2010 - Just around the corner....

by Administrator 11. March 2010 14:50

 

 

SugarCon 2010 is Sugar's 4th annual user and client conference.  The conference brings together SugarCRM users, developers, partners, and experts from all around the world.  There are going to be some really interesting events and speakers and we are very excited to be participating in the event.  Here is the link to SugarCon 2010.  If you register before March 13th, the conference is $299 - a 40% discount from the $499 base price.

 

We are excited to learn more about the roadmap, and very interested in learning about the innovative and creative ways clients and partners have used SugarCRM, new add-ons that have been developed, and platforms that are available. 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

SugarCRM

 

 

Welcome!

 

Glad you could stop by.  We will post Tips, Tricks, and Information relating to the solutions we implement and deploy.  Please contact us with any feedback, questions, or comments.  Give us a shout if there is anything you would like us to chat about.

 

Calendar

<<  September 2010  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

View posts in large calendar