Open Tech-Geek97 opened 1 year ago
I don't have a solution, but I have noticed that from the command line the module is loaded
php8.1 -m
#..
pdlib
#..
The same using fpm
php-fpm8.1 -m
#..
pdlib
#..
But opening a web page the pdlib is not loaded
<?php
$allext = get_loaded_extensions();
foreach ($allext as $key => $value)
{
echo "$value<br />";
}
Hello,
I am attempting to get pdlib working with PHP8.1 in order to get nextcloud facerecognition working again after an update via yunohost. I have copied my console output of an installation attempt and it seems to install the package for PHP7.4 not 8.1. I have also attempted to copy the compiled file from 7.4 to 8.1 but it just throws an error that it was compiled for the wrong version. The issue seems to occur with
./configure
where it starts referencing PHP API version 20190902. I am sure I am missing something as others seem to have this working, but unfortunately the solution is eluding me after many attempts and several hours. Any insight or ideas would be much appreciated.