无法在 GAE 灵活环境上加载 memcached.so
Unable to load memcached.so on GAE Flexible environment
我正在尝试在 GAE Flexible 环境中部署我的 Laravel 5.2 应用程序。我在那里收到以下错误。
PHP Warning: PHP Startup: Unable to load dynamic library
'/opt/php56/lib/php/extensions/no-debug-non-zts-20131226/memcached.so'
- /opt/php56/lib/php/extensions/no-debug-non-zts-20131226/memcached.so:
cannot open shared object file: No such file or directory in Unknown
on line 0
AFAIK,它正在使用 gcr.io/google_appengine/php:latest
docker 图片。我该如何解决这个问题?
Github 存储库有一个针对此问题的拉取请求。
https://github.com/GoogleCloudPlatform/appengine-sidecars-docker/pull/19
Some clients use Memcached::getVersion to determine if the server is running and the connection is working. The current implementation throws an error, which results in clients making the mistaken assumption the server is not responding.
我正在尝试在 GAE Flexible 环境中部署我的 Laravel 5.2 应用程序。我在那里收到以下错误。
PHP Warning: PHP Startup: Unable to load dynamic library '/opt/php56/lib/php/extensions/no-debug-non-zts-20131226/memcached.so' - /opt/php56/lib/php/extensions/no-debug-non-zts-20131226/memcached.so: cannot open shared object file: No such file or directory in Unknown on line 0
AFAIK,它正在使用 gcr.io/google_appengine/php:latest
docker 图片。我该如何解决这个问题?
Github 存储库有一个针对此问题的拉取请求。
https://github.com/GoogleCloudPlatform/appengine-sidecars-docker/pull/19
Some clients use Memcached::getVersion to determine if the server is running and the connection is working. The current implementation throws an error, which results in clients making the mistaken assumption the server is not responding.