]> git.mxchange.org Git - friendica.git/blob - doc/Update.md
Merge remote-tracking branch 'upstream/develop' into sanitize-gcontact
[friendica.git] / doc / Update.md
1 Updating Friendica
2 ===============
3
4 * [Home](help)
5
6 ## Using a Friendica archive
7
8 If you installed Friendica in the ``path/to/friendica`` folder:
9
10 1. Unpack the new Friendica archive in ``path/to/friendica_new``.
11 2. Copy ``config/local.config.php``, ``photo/`` and ``proxy/`` from ``path/to/friendica`` to ``path/to/friendica_new``.
12 3. Rename the ``path/to/friendica`` folder to ``path/to/friendica_old``.
13 4. Rename the ``path/to/friendica_new`` folder to ``path/to/friendica``.
14 5. Check your site. Note: it may go into maintenance mode to update the database schema.
15 6. If everything works, just delete the ``path/to/friendica_old`` folder.
16
17 To update Addons from an archive, simply delete the ``path/to/friendica/addon`` and replace it with the provided archive.
18
19 ## Using Git
20
21 You can get the latest changes at any time with
22
23     cd path/to/friendica
24     git pull
25     bin/composer.phar install --no-dev
26
27 The addon tree has to be updated separately like so:
28
29     cd path/to/friendica/addon
30     git pull
31
32 For both repositories:
33 The default branch to use is the ``master`` branch, which is the stable version of Friendica.
34 It is updated about four times a year on a fixed schedule.
35
36 If you want to use and test bleeding edge code please checkout the ``develop`` branch.
37 The new features and fixes will be merged from ``develop`` into ``master`` after a release candidate period before each release.
38
39 Warning: The ``develop`` branch is unstable, and breaks on average once a month for at most 24 hours until a patch is submitted and merged.
40 Be sure to pull frequently if you choose the ``develop`` branch.
41
42 ### Considerations before upgrading Friendica
43
44 #### MySQL >= 5.7.4
45
46 Starting from MySQL version 5.7.4, the IGNORE keyword in ALTER TABLE statements is ignored.
47 This prevents automatic table deduplication if a UNIQUE index is added to a Friendica table's structure.
48 If a DB update fails for you while creating a UNIQUE index, make sure to manually deduplicate the table before trying the update again.
49
50 #### Manual deduplication
51
52 There are two main ways of doing it, either by manually removing the duplicates or by recreating the table.
53 Manually removing the duplicates is usually faster if they're not too numerous.
54 To manually remove the duplicates, you need to know the UNIQUE index columns available in `database.sql`.
55
56 ```SQL
57 SELECT GROUP_CONCAT(id), <index columns>, count(*) as count FROM users
58 GROUP BY <index columns> HAVING count >= 2;
59
60 /* delete or merge duplicate from above query */;
61 ```
62
63 If there are too many rows to handle manually, you can create a new table with the same structure as the table with duplicates and insert the existing content with INSERT IGNORE.
64 To recreate the table you need to know the table structure available in `database.sql`.
65
66 ```SQL
67 CREATE TABLE <table_name>_new <rest of the CREATE TABLE>;
68 INSERT IGNORE INTO <table_name>_new SELECT * FROM <table_name>;
69 DROP TABLE <table_name>;
70 RENAME TABLE <table_name>_new TO <table_name>;
71 ```
72
73 This method is slower overall, but it is better suited for large numbers of duplicates.