You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I am trying to use bref with Turso Database, which use Libsql extension.
I am using this extension. https://github.com/tursodatabase/turso-client-php/releases/tag/turso-php-extension-v1.4.0. which requires GLIBC_2.29 but bref docker image has GLIBC_2.27.
it throws following error PHP Warning: PHP Startup: Unable to load dynamic library 'liblibsql_php' (tried: /opt/bref/extensions/liblibsql_php (/opt/bref/extensions/liblibsql_php: cannot open shared object file: No such file or directory), /opt/bref/extensions/liblibsql_php.so (/lib64/libm.so.6: version GLIBC_2.29' not found (required by /opt/bref/extensions/liblibsql_php.so)))`
How to reproduce:
Here is my DockerFile
FROM bref/php-81-fpm:2
# Copy the extrnsion so file
COPY ./php/estensions/liblibsql_php.so /opt/bref/extensions/
# Copy the source code in the image
COPY . /var/task
# Configure the handler file (the entrypoint that receives all HTTP requests)
CMD ["public/index.php"]
Description:
I am trying to use bref with Turso Database, which use Libsql extension.
I am using this extension. https://github.com/tursodatabase/turso-client-php/releases/tag/turso-php-extension-v1.4.0. which requires GLIBC_2.29 but bref docker image has GLIBC_2.27.
it throws following error
PHP Warning: PHP Startup: Unable to load dynamic library 'liblibsql_php' (tried: /opt/bref/extensions/liblibsql_php (/opt/bref/extensions/liblibsql_php: cannot open shared object file: No such file or directory), /opt/bref/extensions/liblibsql_php.so (/lib64/libm.so.6: version
GLIBC_2.29' not found (required by /opt/bref/extensions/liblibsql_php.so)))`How to reproduce:
Here is my DockerFile
and here is my php ini.
The text was updated successfully, but these errors were encountered: