DominicWatts
DominicWatts
php8.1 Stack trace on null issue ``` 1 exception(s): Exception #0 (Exception): Deprecated Functionality: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated in /app/vendor/mageplaza/module-core/Model/Activate.php on line...
Simple fix `vendor/mageplaza/module-core/Model/Activate.php` Before ``` $curl->write( Zend_Http_Client::POST, self::MAGEPLAZA_ACTIVE_URL, '1.1', [], http_build_query($params, null, '&') ); ``` After ``` $curl->write( Zend_Http_Client::POST, self::MAGEPLAZA_ACTIVE_URL, '1.1', [], http_build_query($params, '', '&') ); ```
Running Windows 10. Exact same problems as described. > set UPDATE_UID_GID=false in the global.env This worked for me. Remembering the quickstart asks you to create `composer.env`
Magento 2 itself is not compatible with php 7.2 I believe it's something they're working on as part of 2.3 release They've got a lot to update though! https://github.com/magento-engcom/php-7.2-support
This is a magento 2 issue https://github.com/magento/magento2/issues/5880
docker-compose up -d * make note of port for meanbee-docker-magento2_web_1 - 0.0.0.0:32785->80/tcp docker ps * In case you are using port 80 for something else may need to set port...
Build your own https://hub.docker.com/r/domw/magento2-php/tags 7.2 root@cli:/# php -v PHP 7.2.23 (cli) (built: Oct 5 2019 00:17:02) ( NTS ) That said these shouldn't be used in a production environment so...
This can be done post install using the magerun wrapper docker-compose run cli bash cd /var/www/magento/ magerun2 config:store:set system/full_page_cache/caching_application 2 magerun2 config:store:set system/full_page_cache/varnish/grace_period 300 magerun2 config:store:set system/full_page_cache/varnish/backend_port 80 magerun2 config:store:set...
As a short term fix might be an idea to include an option to toggle the f param as deploy static content will work without it in 2.1.* but not...
Check output of github actions - I think these could be handled manually