upgrade ?

islandtech

New Member
Oct 5, 2018
7
1
3
80
Are these the steps to upgrade FS PBX:

cd /var/www/fspbx
git pull
php artisan app:update

Check if there are any pending database updates.

php artisan migrate:status

If you find any updates pending, run this command to install them.

php artisan migrate
Thanks
 
If you make any manual changes to FS PBX or FreeSWITCH or config files, you need to git stash. This is the script I use:

Code:
cd /var/www/fspbx
git stash
git pull
php artisan app:update
php artisan migrate