Bug #303

organization limits and customer integration

Added by Ryan Schuster over 11 years ago. Updated over 10 years ago.

Status:Resolved Start date:11 Oct 2013
Priority:Normal Due date:
Assignee:Rahul Bhattacharya % Done:

0%

Category:-
Target version:-

Description

I am only able to synchronize 999 accounts from my sugarcrm. we have over 6000. also only 1 contact comes over from sugarcrm out of the 70 that are set up.

kayakoerror.png (79.1 kB) Ryan Schuster, 11/07/2013 09:50 am

Kayakoerror

History

Updated by Ryan Schuster over 11 years ago

every time I force the synchronization I get 5 errors. they are as follows:

PHP

25 October 2013 01:58 PM (
3m 48s
)Router: http://helpdesk.computerproserie.com:81/helpdesk/api/index.php?/Base/UserSearch/Post
Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php:25)

PHP

25 October 2013 01:58 PM (
3m 48s
)Router: http://helpdesk.computerproserie.com:81/helpdesk/api/index.php?/Base/UserSearch/Post
Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php:24)

PHP

25 October 2013 01:58 PM (
3m 48s
)Router: http://helpdesk.computerproserie.com:81/helpdesk/api/index.php?/Base/UserSearch/Post
Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php:23)

PHP

25 October 2013 01:58 PM (
3m 48s
)Router: http://helpdesk.computerproserie.com:81/helpdesk/api/index.php?/Base/UserSearch/Post
Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php:22)

PHP

25 October 2013 01:58 PM (
3m 48s
)Router: http://helpdesk.computerproserie.com:81/helpdesk/api/index.php?/Base/UserSearch/Post
Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php:21)

Updated by Rahul Bhattacharya over 11 years ago

Please try to replace

$_query = '';
if (isset($_POST['query']) && !empty($_POST['query'])) {
$_query = $_POST['query'];
}

$_userIDList = array();
$_userContainer = array();

$this->Database->Query("SELECT * FROM " . TABLE_PREFIX . "useremails AS useremails
LEFT JOIN " . TABLE_PREFIX . "users AS users ON (useremails.linktypeid = users.userid)
LEFT JOIN " . TABLE_PREFIX . "userorganizations AS userorganizations ON (users.userorganizationid = userorganizations.userorganizationid)
LEFT JOIN " . TABLE_PREFIX . "usergroups AS usergroups ON (users.usergroupid = usergroups.usergroupid)
WHERE useremails.linktype = '" . SWIFT_UserEmail::LINKTYPE_USER . "' AND
((" . BuildSQLSearch('useremails.email', $_POST['query'], true) . ")
OR (" . BuildSQLSearch('users.fullname', $_POST['query']) . ")
OR (" . BuildSQLSearch('users.phone', $_POST['query']) . ")
OR (" . BuildSQLSearch('userorganizations.organizationname', $_POST['query']) . ")
OR (" . BuildSQLSearch('usergroups.title', $_POST['query']) . "))");

with

$_query = '';
if (isset($_POST['query']) && !empty($_POST['query'])) {
$_query = $_POST['query'];
}

$_userIDList = array();
$_userContainer = array();

$this->Database->Query("SELECT * FROM " . TABLE_PREFIX . "useremails AS useremails
LEFT JOIN " . TABLE_PREFIX . "users AS users ON (useremails.linktypeid = users.userid)
LEFT JOIN " . TABLE_PREFIX . "userorganizations AS userorganizations ON (users.userorganizationid = userorganizations.userorganizationid)
LEFT JOIN " . TABLE_PREFIX . "usergroups AS usergroups ON (users.usergroupid = usergroups.usergroupid)
WHERE useremails.linktype = '" . SWIFT_UserEmail::LINKTYPE_USER . "' AND
((" . BuildSQLSearch('useremails.email', $_query, true) . ")
OR (" . BuildSQLSearch('users.fullname', $_query) . ")
OR (" . BuildSQLSearch('users.phone', $_query) . ")
OR (" . BuildSQLSearch('userorganizations.organizationname', $_query) . ")
OR (" . BuildSQLSearch('usergroups.title', $_query) . "))");

in __swift/apps/base/api/class.Controller_UserSearch.php, around line 74 and try to synchronize once again.

Updated by Ryan Schuster over 11 years ago

I made the change as requested. no help. what logs/errors do you need to see to get an idea what is going on?

Updated by Rahul Bhattacharya over 11 years ago

  • Status changed from New to In Progress

Hello Ryan,

The above fix was related to the five errors you mentioned earlier as Undefined index: query (C:/inetpub/wwwroot/helpdesk/__swift/apps/base/api/class.Controller_UserSearch.php)

I am only able to synchronize 999 accounts from my sugarcrm.

We have identified the issue, it will take some time to get implement. For the time being, you can set 'max_results' as a maximum record value.

Fix need to be done : In __apps/sugarcrm/library/SugarCRMRestAPI/class.SWIFT_SugarCRMRestAPIRequest.php,
Set 'max_results' as maximum record value in order to fetch all the records. (like 'max_results' => '7000')

If only 1 contact came over from sugarcrm out of the 70 then the reason could be the accounts related to those contacts have not been synced.

Note* : Before synchronizing the accounts and contacts, delete the entries from swsugarcrmaccountinfo and swsugarcrmuserinfo table.

Updated by Ryan Schuster over 11 years ago

My mistake... The errors have gone away... I'll attempt the other fixes today... I'll keep you posted.

Thanks for all your help.

Updated by Ryan Schuster over 11 years ago

Rahul Bhattacharya,
You are both a scholar and a saint. My Organizations have synced over now. Users are updated too. now will this run automatically and if so, is there a way to adjust the time frame in between syncs?

Thank you for your help

Updated by Ryan Schuster over 11 years ago

Actually. I got some more users, but not all of them. Organizations seem to be fine. so I'll look at my contacts and try to find out what is missing from them to get this functioning. Otherwise an awesome project.

Updated by Rahul Bhattacharya over 11 years ago

Hello Ryan,

Thanks for the note.

is there a way to adjust the time frame in between syncs?

The scheduler is configured to run every minute. This had been implicitly enabled to avoid Load introduction
in the system when sync is being processed.

We can adjust the scheduler run via code adjustments, but is not advisable.

Please let us know if you wish additional assistance on this.

Thanks,
Rahul

Updated by Ryan Schuster over 11 years ago

I've moved my server to more powerful hardware. it is also now virtualized. What I am having an issue with now. is trying to reinstall the sugarcrm app.

error is:

Notice
Array to string conversion (C:/inetpub/wwwroot/helpdesk/__swift/library/Setup/class.SWIFT_SetupDatabase.php:16) =================================================================================================================================

thanks in advance for any help.

Updated by Rahul Bhattacharya over 11 years ago

Hello Ryan,

Could you please tell us the exact steps to replicate this issue.

Thanks,
Rahul

Updated by Ryan Schuster over 11 years ago

I tried to migrate over the kayako website. since I didn't have any real information in there, I decided that I would just perform a clean install. my hardware is a hyper-v hosted virtualized Windows Server 2008R2. The system has 14GB reserved RAM and 12 cores processor 2.5GhZ Xeon. I've installed the sugarcrm app and as it completes, I get the following screen. my phpinfo file is located at http://helpdesk.computerproserie.com:81/helpdesk/phpinfo.php. Let me know what else you need to know.

My plan was to use the fixes that you had already sent me when I got this otherwise configured.

Thanks for all you've done.

Updated by Anjali Sharma over 10 years ago

  • Status changed from In Progress to Resolved
  • Target version deleted (v1.1)

Greetings Ryan,

Issue has been resolved in SugarCRM v1.5.

Supported Versions:
Kayako Helpdesk : 4.64 and above
SugarCRM : 6.5.16

Thanks and Regards,
Anjali Sharma

Also available in: Atom PDF