Difference between revisions of "Install Ice 3.4 on CentOS 5"

From Mumble Wiki
Jump to: navigation, search
(Created page with 'Ice 3.4 is now in Beta with quite a bit of changes in the PHP api. Here is a guide howto install Ice with PHP bindings on a CentOS 5 machine and getting the weblist.php example d…')
 
Line 35: Line 35:
  
 
Move weblist.php and Murmur.php to your web space and access weblist.php
 
Move weblist.php and Murmur.php to your web space and access weblist.php
 +
 +
As of now the PHP implementation doesn't implement the Implicit Context, so you can't use murmur with a secret. When ZeroC decides to implement it you should be able to do something like this:
 +
 +
$ICE->getImplicitContext('secret', 'passphrase');

Revision as of 10:08, 26 January 2010

Ice 3.4 is now in Beta with quite a bit of changes in the PHP api. Here is a guide howto install Ice with PHP bindings on a CentOS 5 machine and getting the weblist.php example distributed with murmur to work.

cd /etc/yum.repos.d/
wget http://www.zeroc.com/download/Ice/3.4/rhel5/zeroc-ice.repo

Edit the zeroc-ice.repo to look like this:

[zeroc-ice]
name=Ice 3.4b for RHEL $releasever - $basearch
baseurl=http://www.zeroc.com/download/Ice/3.4/rhel5/$basearch
enabled=0
gpgcheck=1
gpgkey=http://www.zeroc.com/download/RPM-GPG-KEY-zeroc-beta

This way the repo is not enabled by default. My flavor of CentOS didn't have $releasever set so I changed the baseurl to a static version 5.

yum --enable zeroc-ice install ice-php ice-php-devel
/etc/init.d/httpd graceful

Now go the murmur folder and locate Murmur.ice

slice2php Murmur.ice

Edit weblist.php:

remove

Ice_loadProfile();

replace with

require 'Ice.php';
require 'Murmur.php';
$ICE = Ice_initialize();

Move weblist.php and Murmur.php to your web space and access weblist.php

As of now the PHP implementation doesn't implement the Implicit Context, so you can't use murmur with a secret. When ZeroC decides to implement it you should be able to do something like this:

$ICE->getImplicitContext('secret', 'passphrase');