phre4k Can you copy in the full log of what you did to upgrade?
The Beta4-to-5 instructions are as follows: (run in terminal)
sed -i -e 's/"minimum-stability": "beta"/"minimum-stability": "beta",\'$'\n'' "prefer-stable": true/' composer.json
remove=""; require=""; for extension in akismet approval auth-facebook auth-github auth-twitter bbcode emoji english flags likes lock markdown mentions pusher sticky subscriptions suspend tags; do remove="$remove flarum/$extension"; require="$require flarum/flarum-ext-$extension=^0.1.0"; done
composer self-update
composer remove flarum/composer-installer $remove -q
composer require $require
composer update
php flarum migrate
rm -Rf assets/*.js assets/*.css storage/cache/* storage/formatter/* storage/views/*
The Beta5-to-6 instructions are as follows:
Updating from Beta 5
- Disable 3rd party extensions prior to upgrading.
- Run the following command at the root of your Flarum installation:
composer update
- Navigate to yourforum.com/admin, enter your database password, and sit tight!
- Run the command
php flarum cache:clear
(or manually delete .js and .css files in the assets directory).
What steps have you followed so far and what were the results?