Magento 2 Admin Error ERR_TOO_MANY_REDIRECTS
Recently I had to deploy one newly build Magento 2 site to its server for which there was no info what has been installed or what is the infrastructure (the…
Recently I had to deploy one newly build Magento 2 site to its server for which there was no info what has been installed or what is the infrastructure (the…
安裝Certbot 這邊我們先安裝Certbot套件來協助我們完成自動化SSL認證: $ sudo add-apt-repository ppa:certbot/certbot 接著安裝Certbot的Apache package: $ sudo apt install python-certbot-apache 可以此指令驗證配置是否成功: $ sudo apache2ctl configtest 記得重啟Apache服務: $ sudo systemctl reload apache2 獲得SSL憑證 $ sudo certbot --apache -d…
Find: public function unserialize($string) { $result = json_decode($string, true); if (json_last_error() !== JSON_ERROR_NONE) { throw new \InvalidArgumentException('Unable to unserialize value.'); } return $result; } replace by: public function unserialize($string) {…