-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Closed
Labels

Description
Hi,
I have an install of Magento using composer.
I used the web setup wizard to apply update from 2 to 2.0.1. It stalled at
./composer.json has been updated
In an attempt to resolve the issue I updated via terminal.
cd to <your_install>/bin
su magento_user
./magento maintenance:enable
# ran with sudo
composer self-update
# cd to directory with composer.json
composer update
# to fix my broken file permssions
sudo chown -hR magento_user:www-data /var/www/html/<your_install>
# set magento to be executible
sudo chmod u+x magento
./magento setup:di:compile
./magento setup:upgrade
./magento cache:flush
./magento maintenance:disable
Now the footer says I'm on version 2.0.1 but when I go to the web setup wizard page it still shows the stalled page.
Any thoughts on how to get the Web Setup Wizard page functioning again?
Note similar issues on the community forums: https://community.magento.com/t5/Version-Upgrades-for-2-x/Upgrading-to-2-0-1-stuck/m-p/26815#U26815
Thanks.