We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bab5fb commit 5bd533dCopy full SHA for 5bd533d
docker/openemr/7.0.2/openemr.sh
@@ -257,8 +257,10 @@ if [ "$REDIS_SERVER" != "" ] &&
257
if [ "$PHPREDIS_BUILD" != "develop" ]; then
258
git reset --hard "$PHPREDIS_BUILD"
259
fi
260
- phpize
261
- ./configure --enable-redis-igbinary
+ # note for php 8.2, needed to change from 'phpize' to:
+ phpize82
262
+ # note for php 8.2, needed to change from './configure --enable-redis-igbinary' to:
263
+ ./configure --with-php-config=/usr/bin/php-config82 --enable-redis-igbinary
264
make
265
make install
266
echo "extension=redis" > /etc/php82/conf.d/20_redis.ini
0 commit comments