Magento 2 upgrade from 2.3.4 to 2.3.5

Switch to maintenance mode:

bin/magento maintenance:enable

Check current version

bin/magento --version
Magento CLI 2.3.4

Backup project

cp -rp composer.json composer.json_bk

Remove previous:

composer remove magento/product-community-edition --no-update

Append actual:

composer require magento/product-community-edition=2.3.5 --no-update

Remove update/ folder

rm -rf update

Ensure you have enough resource to execute composer update

Run:

php -d memory_limit=-1 /opt/cpanel/composer/bin/composer update

Clean up the cache

rm -rf generated/code/*
rm -rf var/page_cache/*
rm -rf var/cache/*

Clean cache:

bin/magento cache:clean

Update DB:

bin/magento setup:upgrade

Deactivate maintenance mode:

bin/magento maintenance:disable

Check current version:

bin/magento --version
Magento CLI 2.3.5

In my case I faced only one issue related to /home/lkerie/public_html/app/code/Magefan/Blog/Model/ImageUploader.php… Read the rest

How to upgrade ZenCart from 1.3.x to ZenCart 1.5.x

First of all backup your current website’s version (files/folders/database)

Supposed you have ZenCart on yourdomain.com pointed to /home/USERNAME/public_html

So, we will upgrade your ZenCart to /home/USERNAME/public_html/shop to prevent any issue with your current installation.

Create sub domain shop.yourdomain.com and point it to /home/USERNAME/public_html/shop

Create if needed shop folder under /home/USERNAME/public_html/

mkdir -p shop
cd shop/

Download the latest version

wget https://sourceforge.net/projects/zencart/files/CURRENT%20-%20Zen%20Cart%201.5.x%20Series/zen-cart-v1.5.5f-12312017b.zip
Read the rest

Upgrade guake on Xubuntu 14.04, 18.04.1 LTS

I’ve upgraded my guake from 0.4.0 to 0.5.0 as it was glitched after release upgrade

Download the latest version from https://github.com/Guake/guake/

Install dependience:

sudo apt-get build-dep guake

Use the following source list in case you got “Unable to find a source package for guake” error

Don’t forget backup your current list /etc/apt/sources.listRead the rest