Ucp upgrade error

Hello!

We have freepbx 14 installed on ubuntu 16.04 and all worked fine. But after last update I am got error with ucp module upgrade:

Module(s) requiring upgrades: ucp
Upgrading module ‘ucp’ from 14.0.3.3 to 14.0.3.3
Downloading module ‘ucp’
Processing ucp
Verifying local module download…Verified
Extracting…Done
Download completed in 0 seconds
Updating tables ucp_sessions…finished
sh: 1: icu-config: not found
icu is not installed. You need to run: yum install icu libicu-devel
Unable to install module ucp

I am haved
PHP Version => 5.6.40-6+ubuntu16.04.1+deb.sury.org+3
Internationalization support => enabled
version => 1.1.0
ICU version => 64.1
ICU Data version => 64.1

and icu-config located at /opt/icu64.2/bin/icu-config

How this error may be fixed?

Unfortunately there is an unnecessary yum
only dependency on libicu-devel in that module, you can either edit the php code to the wrath of signature signing :wink: or download the rh 7 rpm, use alien to create a Deb package, then dpkg -i to install it, then install ucp and finally dpkg -r to remove the alien Deb. Your current libicu-dev Deb. is higher than the base needed

Thanks for your advice :slight_smile:

I was downloaded centos icu-50.1.2-17.el7.x86_64.rpm and libicu-devel-50.1.2-17.el7.x86_64.rpm, converted and installed it successfully.
Then run "sudo fwconsole ma install ucp " and got another error:

pdating tables ucp_sessions…Завершено

icu-config-64: Can’t find /usr/lib64/libicuuc.so - ICU prefix is wrong.

Try the --prefix= option

or --detect-prefix

(If you want to disable this check, use the --noverify option)

icu-config-64: Exitting.

icu is not installed. You need to run: yum install icu libicu-devel

i see
/usr/lib64/libicuuc.so is a broken symbolic link to libicuuc.so.50.1.2

I am think that only way for now is to migrate on cent os…

Well a cleaner and easier solution I hope. , line 95 in /var/www/html/admin/modules/ucp/Ucp.class.php has

$output = exec("icu-config --version"); //v4.2.1

Current libicu has replace icu-config with icuinfo so it fails there, so I create /usr/bin/icu-config

with the of

icuinfo 2>/dev/null|grep '"version"'|sed 's/.*">\(.*\)<.*/\1/g'

and everybody is happy. mine issues

64.1

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.