Upgrade
You will find here different ways to upgrade your wallabag:
- from 2.5.x to 2.6.x
- from 2.3.x to 2.4.x
- from 2.3.x to 2.3.y
- from 2.2.x to 2.3.x
- from 2.x.y to 2.3.x
- from 1.x to 2.x
composer installed on your server (or at least the composer.phar binary in the root directory of wallabag). If not, please install it.
Upgrading from 2.5.x to 2.6.x
Same steps as for upgrading from 2.2.x to 2.3.x.
⚠️ There are two points to focus on for that update:
-
We added new fields in the database, don’t forget to run migration (by running
make update) otherwise your wallabag won’t work. -
We’ve updated the mailer config which needs to be replicated otherwise the image might not work.
We removed these fields from
app/config/parameters.yml:mailer_transportmailer_usermailer_passwordmailer_hostmailer_portmailer_encryptionmailer_auth_mode
And we added
mailer_dsnas a replacement. Here is an example of DSN:smtp://user:pass@smtp.example.com:port
You can find all the queries here.
Upgrading from 2.3.x to 2.4.x
Same steps as for upgrading from 2.2.x to 2.3.x.
For shared hosting
PHP version compatibility has changed. Check the release notes for details.
Apply the general steps for upgrades on shared hosting with the following modifications:
Use these data queries for the database upgrade to 2.4.
Four parameters were created and MUST be added to your app/config/parameters.yml file: mailer_port, mailer_encryption, mailer_auth_mode and sentry_dsn.
Do not forget to run bin/console cache:clear --env=prod in the wallabag directory afterwards.
Upgrading from 2.3.x to 2.3.y
make updateThat’s all.
If you get an error with Not a git repository, it means you installed wallabag using an archive rather than git. In this case, follow the steps for shared hosting.
Upgrading from 2.2.x to 2.3.x
Upgrade on a dedicated web server
make updateUpgrade on a shared hosting
-
Backup your
app/config/parameters.ymlfile. -
Download the latest release of wallabag:
wget https://wllbg.org/latest-v2-package && tar xvf latest-v2-packageYou will find the md5 hash of the latest package on our website.
-
Extract the archive in your wallabag folder and replace
app/config/parameters.ymlwith yours. -
Please check that your
app/config/parameters.ymlcontains all the parameters as they are all mandatory. You can find documentation about parameters here. -
If you have modified the
app/config/parameters.ymlfile, runbin/console cache:clear --env=prodafterwards in the wallabag directory. A warning will appear if any parameter is missing. -
If you use SQLite, you must also copy your
data/folder into the new installation. -
Empty the
var/cachefolder. -
You must run SQL queries to upgrade your database. We assume that the table prefix is
wallabag_. Don’t forget to backup your database before migrating. -
You may encounter issues with indexes names: if so, please change queries with the correct index name.
-
You can find all the required queries in the query upgrade documentation.
Upgrading from 2.x.y to 2.3.x
If your wallabag instance is < 2.2.0, there is no automatic script. You need to:
- export your data
- install wallabag 2.3.x (read the installation documentation)
- import data in this fresh installation (read the import documentation )
From wallabag 1.x
There is no automatic script to update from wallabag 1.x to wallabag 2.x. You need to:
- export your data
- install wallabag 2.x (read the installation documentation)
- import data in this fresh installation (read the import documentation )