I'm trying to install Vtiger CRM on ubuntu. This require IMAP. How to install PHP IMAP for php5-fpm?
Asked
Active
Viewed 3.5k times
6
user3207076
- 93
- 1
- 2
- 4
3 Answers
20
Carry out the following:
apt-get install php5-imap
However it's not enabled by default so enable it with:
php5enmod imap
Then bounce apache:
service apache2 restart
Done.
John Simmonds
- 613
- 6
- 9
-
1if using the php5-fpm service then must be "service php5-fpm restart" – Ahmet Erkan ÇELİK Aug 14 '15 at 13:22
4
The imap library is in php5-imap and that applies to all sorts of PHP (cli, cgi, fpm, etc). To install:
sudo apt-get install php5-imap
Oli
- 289,791
- 117
- 680
- 835
-2
It in the repositories:
$ apt-cache search php5-fpm
php5-fpm - server-side, HTML-embedded scripting language (FPM-CGI binary)
So, use apt:
$ sudo apt-get install php5-fpm
OrangeTux
- 5,141
- 8
- 34
- 57
-
It's been said how to install `IMAP` on `php5-fpm` not `php5-fpm` itself. – Alireza Nov 08 '15 at 07:53