Exploit.cz

Solved - PHP 8.2 Docker Alpine - No releases available for package "pecl.php.net/apcu"

You should build it from source code FROM php:8.2-fpm-alpine AS ext-apcu ENV EXT_APCU_VERSION=master RUN curl -vvv https://github.com/krakjoe/apcu.git RUN docker-php-source extract \ && apk -Uu add git \ && git clone --branch $EXT_APCU_VERSION --depth 1 https://github.com/krakjoe/

How to compile AMQP extension for PHP 8.0 via Multistage Dockerfile

Why do this? 2020-12-03 there is no PECL AMQP extension compatible with PHP 8.0 so you cannot use docker-php-ext-install amqp & docker-php-ext-enable amqp Latest version 1.10.2 is compatible with PHP < 8. So you have to use dev version from Github and build it from source code

How to set REMOTE_ADDR from HTTP_X_ORIGINAL_FORWARDED_FOR header when going through EZOIC proxy cache

Prerequisites: * kubernetes ingress * your varnish proxy cache * Symfony PHP application 1. Edit your global Kubernetes Ingress Config Map in namespace ingress-nginx named nginx-configuration [https://rancher2.exploit.cz/p/local:p-mt7fw/config-maps/ingress-nginx:nginx-configuration] and add use-forwarded-headers: true 2. In your Varnish proxy in section sub vcl_recvadd if (req.http.

Solved - PHPStorm xDebug remote Debug not working

Every PHP developer should be familiar with remote Debugging via xDebug or Zend Debug but how to Debug not working Xdebug environment? Read our article. Xdebug remote debug will connect to remote_host on default port 9000, where your PHPStorm should listen. Example xDebug config zend_extension=/usr/local/lib/

Resolve not working Symfony ESI/SSI caching

If you have done this setup Symfony HttpCache [https://symfony.com/doc/current/http_cache.html] and ESI - Working with Edge Side Includes [https://symfony.com/doc/current/http_cache/esi.html] and your application is still not loading from cache, here is solution for you. Firstly you have

Exploit.cz © 2026