Erro de extensão do imap PHP ausente

2

Estou seguindo este link para a instalação do Kaltura. Mas estou recebendo o problema em sudo php install.php step.

sneha@SCS-I82:~/Downloads/kalturaCE_v3.0.0-instructure$ sudo php install.php

Thank you for installing Kaltura Video Platform - Community Edition

A previous installation attempt has been detected, do you want to use the input you provided during you last installation? (Y/n)
> n

In order to improve Kaltura Community Edition, we would like your permission to send system data to Kaltura.
This information will be used exclusively for improving our software and our service quality. I agree (Y/n)
> Y

If you wish, please provide your email address so that we can offer you future assistance (leave empty to pass)
> [email protected]

PHP Notice:  Array to string conversion in /home/sneha/Downloads/kalturaCE_v3.0.0-instructure/installer/OsUtils.class.php on line 13
Please provide the following information:

The following apachectl script has been detected: /usr/sbin/apachectl. Do you want to use this script to run your Kaltura application? Leave empty to use or provide a pathname to an alternative apachectl script on your server.
> 

The following PHP binary has been detected: /usr/bin/php. Do you want to use this script to run your Kaltura application? Leave empty to use or provide a pathname to an alternative PHP binary on your server.
> 

Full target directory path for Kaltura application (leave empty for /opt/kaltura)
> 

Please enter the domain name/virtual hostname that will be used for the Kaltura server (without http://)
> kalturadev.example.com

Your primary system administrator email address
> [email protected]

The password you want to set for your primary administrator
> India_4321

Database host (leave empty for 'localhost')
> 

Database port (leave empty for '3306')
> 

Database username (with create & write privileges)
> sneha

Database password (leave empty for no password)
> 

The URL to your xymon/hobbit monitoring location. Xymon is an optional installation. Leave empty to set manually later
Examples:
http://www.xymondomain.com/xymon/
http://www.xymondomain.com/hobbit/
> 


Verifing prerequisites

One or more prerequisites required to install Kaltura failed:
   Missing imap PHP extension
   Failed to connect to database 127.0.0.1:3306 user:sneha. Please check the database settings you provided and verify that MySQL is up and running.

Please resolve the issues and run the installation again.

Não está recebendo o erro Missing imap PHP extension .

    
por Neha 03.09.2015 / 10:46

1 resposta

1

Instale a extensão PHP IMAP que está faltando via

sudo apt-get install php5-imap

Agora comece

sudo php5enmod imap

para ativar o módulo e reiniciar o apache via

sudo service apache2 restart
    
por A.B. 03.09.2015 / 10:51