Unable to install on 64 bit Centos 5.4

3 replies [Last post]
Joined: 01/12/2010
Points: 3

I'm trying to install KalturaCE on 64 bit Centos 5.4 and not having any luck. I keep getting "can't find php executable path" at the end of the install.

Previously, I'd installed KalturaCE on my 32 bit Centos 5.4 development server with no problems.

I've tried the following:
1) Install standard 64 bit tarball of Kaltura 1.5
2) Close browser, do fresh install of Kaltura 1.5 tarball
3) Install 64 bit version of Kalture from SVN
4) Install 32 bit version of Kaltura, substituting 64 bit binary files in kaltura/bin for 32 bit versions

Mike

Joined: 03/29/2009
Points: 764

Hi,

Please take a look at this post and see if it helps you solve the problem.

Joined: 01/12/2010
Points: 3

I looked at that post previously. I've tried a fresh install and my PHP lives at /usr/bin, which is in $path.

Joined: 01/12/2010
Points: 3

Was able to finish the install by adding the following hack to install.php:

$php_path = $_POST['php_path'];
// Begin hack
if (!$php_path) {
  $php_path = '/usr/bin/php';
  $_POST['php_path'] = $php_path;
}
// End hack