Sugar CRM & IMAP requirement

WholesaleDialup

Verified User
Joined
Sep 25, 2004
Messages
178
Location
San Antonio, TX
Anyone have any success installing the latest Sugar CRM on DA?

I have installed it but during the installing it does a system check to see if the system has everything Sugar needs to run.

Most things check out but under optional components I get:

IMAP Module Not found: InboundEmail and Campaigns (Email) require the IMAP libraries. Neither will be functional.

AND

PHP-JSON Module (v 1.1.1) Not found: The PHP-JSON PHP module reaps enormous performance benefits.


When looking at phpinfo() it says the IMAP module is installed so I am not sure what the issue is with IMAP.

I made the fatal mistake of running "yum install php-imap" on a production DA system and it took out my apache. I was able to get it back by recompiling apache to the latest version.

So, looking for help from someone who has been down this road. Need to know how to get the IMAP thing satisfied in Sugar as well as this PHP-JSON thing I never heard of.

Thanks in advance for any help.
 
That did it..

Thanks!

Anyone have any idea how to deal with this JSON module?

Do I just add --with-json to the configure.php file and recompile php again?

Is there a list of official module names somewhere?
 
WholesaleDialup said:
That did it..

Thanks!

Anyone have any idea how to deal with this JSON module?

Do I just add --with-json to the configure.php file and recompile php again?

Is there a list of official module names somewhere?

What version of php are you using? PHP 5.2.0 has native support for json already compiled...one less step for you....
 
4.4.4 and I don´t expect to upgrade PHP to 5.x series (at least not on this server).
 
albatroz said:
4.4.4 and I don´t expect to upgrade PHP to 5.x series (at least not on this server).

Ok, then all you need to do after install is add this line to your php.ini file:
extension=json.so

then restart httpd and your done.
 
Back
Top