PHP 8.1 extensions issues

#1
Hi there,

I need to install a specific e-commerce software but unfortunately experiencing issues with several required PHP extensions. OS is AlmaLinux 9, all other required extensions incl. lsphp81-common were installed without issues . Any ideas how this can be solved?

Code:
# dnf install lsphp81-gd lsphp81-intl lsphp81-mbstring --nobest

Last metadata expiration check: 3:42:47 ago on Tue 20 Dec 2022 11:41:58 AM UTC.

Error:
Problem 1: conflicting requests
  - nothing provides libgd.so.103()(64bit) needed by lsphp81-gd-8.1.12-2.el9.x86_64
  Problem 2: conflicting requests
  - nothing provides libicudata.so.71()(64bit) needed by lsphp81-intl-8.1.12-2.el9.x86_64
  - nothing provides libicui18n.so.71()(64bit) needed by lsphp81-intl-8.1.12-2.el9.x86_64
  - nothing provides libicuio.so.71()(64bit) needed by lsphp81-intl-8.1.12-2.el9.x86_64
  - nothing provides libicuuc.so.71()(64bit) needed by lsphp81-intl-8.1.12-2.el9.x86_64
Problem 3: conflicting requests
  - nothing provides libonig.so.105()(64bit) needed by lsphp81-mbstring-8.1.12-2.el9.x86_64
 
#5
Thanks for all the support you provide on the forum!

I have indeed a paid license but I tend to ask in public first as possible solutions might help others too.

But no need to bother support, I've just solved the issue by installing the Remi Repo:
Code:
dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm
Before I tried PHP80 and PHP82 but ran in exact the same issues.

Frohes Fest ;)
 

Jon K

Administrator
Staff member
#7
@Eric-A-R-M How did you setup the repo on AlmaLinux 9?

Yes, it is required currently to add remi repo for the third party packages that used to be available via epel and powertools but are not currently.
 
Top