How to Update Magento 2.3.3 to 2.3.4 - Not Working for me

Following thread is not working for me

Hi,

You need to give some more information.
What is the issue, and your enviroment?

Pawel

Hi Pawel,

Thanks for reply
I have followed Method A: Update 2.3.x to 2.3.4 via Composer

My Magento frontend / backend is not loading

Terminal Commands History

  493  bin/magento maintenance:enable
  494  composer require magento/product-community-edition=2.3.4 --no-update
  495  composer update
  496  bin/magento cache:clean
  497  rm -rf var/cache/* var/page_cache/* generated/code/*
  498  bin/magento setup:upgrade
  499  bin/magento setup:di:compile
  500  bin/magento cache:clean
  501  bin/magento maintenance:disable
  502  service varnish restart
  503  redis-cli flushall
  504  bin/magento maintenance:enable
  505  bin/magento maintenance:disable
  506  bin/magento deploy:mode:set developer
  507  sudo find . -type f -exec chmod 644 {} \;
  508  sudo find . -type d -exec chmod 755 {} \;
  509  sudo find ./var -type d -exec chmod 777 {} \;
  510  sudo find ./pub/media -type d -exec chmod 777 {} \;
  511  sudo find ./pub/static -type d -exec chmod 777 {} \;
  512  sudo chmod 777 ./app/etc
  513  sudo chmod 644 ./app/etc/*.xml
  514  sudo chown -R :ziya .
  515  sudo chmod u+x bin/magento
  516  sudo chown -R :root .
  517  sudo chmod u+x bin/magento
  518  bin/magento cache:clean
  519  history

Thanks,
Ziya

You should consider deploying static content:

bin/magento setup:static-content:deploy en_US -f
bin/magento cache:clean

Replace en_US with your locale

What do you mean by this “Replace en_US with your locale”?

I deployed static content

bin/magento setup:static-content:deploy en_US -f

A “locale” is related to the languages that you have setup for your store. For example, if I was running a UK store with the locale set to United Kingdom when I would use en_GB. Other examples include:

  • United States: en_US
  • France: fr_FR
  • Spain: es_ES

You can read more about Static Content in the Official Magento Documentation.