Error on install PHP Cli

2 replies [Last post]
Joined: 07/30/2009
Points: 4

Hello,

I try to install KALTURA on gentoo 64
Here is my php:

php.cli -v
PHP 5.2.9 (cli) (built: Mar 3 2010 20:56:05)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies

But error:

"You must have php-cli. This is required in order to run batch jobs, etc.
Please install php-cli and make sure that php executable is in PATH"

I'v mistake somthing ?

Thanks for help

Joined: 07/30/2009
Points: 4

Hello,

Any idea for my problem ? php cli work, why Kaltura won't install ?

thanks

Joined: 07/30/2009
Points: 4

Hello,

I have succeffuly installed Kaltura with this modif: (added 5)

function verify_phpcli()
{
  global $requirements_stats,$reqs_error;
  // try running php from environment path
  $optional_paths = array(
    0 => '/Applications/XAMPP/xamppfiles/bin/php', // try to find common mac-xampp php-cli
    1 => '/opt/lampp/bin/php', // try to find common linux-xampp php-cli
    2 => 'C:\xampp\php\php', // try to find common windows-xampp php-cli
    3 => 'C:\Progra~1\xampp\php\php', // try to find another common windows-xampp php-cli
    4 => 'php', // try to find php-cli in environment path
        5 => '/usr/local/php5/bin/php.cli', // try to find php-cli in environment path
  );

but after install and all email I have this error:

Your KalturaCE Server Is Only Partially Functional
7 services are down - go to the Server Monitor to learn more

and when I clicto server monitor :

No input file specified.

I have contrlled, mod_rewrite is intalled

is my setting: httpd.conf

ServerAdmin webmaster@xxxxx.com
DocumentRoot /home/mix/www
DirectoryIndex index.php

AllowOverride All
Order allow,deny
Allow from all
Options Indexes FollowSymLinks ExecCGI Includes

SuexecUserGroup mix users
ServerName www.xx.xxxx.com
ServerAlias xx.xxxx.com
CustomLog logs/mix-access_log combined
ScriptAlias /cgi-bin/ /home/mix/cgi-bin/
AddHandler x-httpd-php5 .php

What is the problem ?