skip to Main Content

Php versions – Error generated by named arguments and argument unpacking in function call not throwing ErrorException in PHP-8

The following code works as expected: throws the ErrorException and calls the shutdown function for the fatal-error generated by require register_shutdown_function(function() { echo "anyway, hello worldn"; }); set_error_handler(function($severity, $message, $file, $line) { throw new ErrorException($message, 0, $severity, $file, $line); });…

VIEW QUESTION

Redis – Plugin caching_sha2_password could not be loaded: /mariadb19/plugin/caching_sha2_password.so: cannot open shared object file

I am trying to dockerise my Django app. docker-compose.yml version: "3.8" services: db: image: mysql:8 command: --default-authentication-plugin=mysql_native_password # this is not working restart: always environment: MYSQL_ROOT_PASSWORD: rootmypass ports: - '3306:3306' cache: image: redis environment: REDIS_HOST: localhost REDIS_PORT: 6379 ports: -…

VIEW QUESTION
Back To Top
Search