X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FUpdate.md;h=c4fe16186380c011d539b895e51baed3d93a2422;hb=aa0b485f3dca72c5448076e913fa54d948cd7731;hp=835dd3375dc3a08ca4e28f48f6b6113d5ac0ad99;hpb=71ec84f6dc83f753fe80170cfdfd32d202850d90;p=friendica.git diff --git a/doc/Update.md b/doc/Update.md index 835dd3375d..c4fe161863 100644 --- a/doc/Update.md +++ b/doc/Update.md @@ -6,8 +6,15 @@ Updating Friendica ## Using a Friendica archive If you installed Friendica in the ``path/to/friendica`` folder: + 1. Unpack the new Friendica archive in ``path/to/friendica_new``. -2. Copy ``config/local.ini.php``, ``photo/`` and ``proxy/`` from ``path/to/friendica`` to ``path/to/friendica_new``. +2. Copy the following items from ``path/to/friendica`` to ``path/to/friendica_new``: + * ``config/local.config.php`` + * ``proxy/`` +The following items only need to be copied if they are located inside your friendica path: + * your storage folder as set in **Admin -> Site -> File Upload -> Storage base path** + * your item cache as set in **Admin -> Site -> Performance -> Path to item cache** + * your temp folder as set in **Admin -> Site -> Advanced -> Temp path** 3. Rename the ``path/to/friendica`` folder to ``path/to/friendica_old``. 4. Rename the ``path/to/friendica_new`` folder to ``path/to/friendica``. 5. Check your site. Note: it may go into maintenance mode to update the database schema. @@ -21,7 +28,7 @@ You can get the latest changes at any time with cd path/to/friendica git pull - bin/composer.phar install + bin/composer.phar install --no-dev The addon tree has to be updated separately like so: @@ -29,11 +36,11 @@ The addon tree has to be updated separately like so: git pull For both repositories: -The default branch to use is the ``master`` branch, which is the stable version of Friendica. +The default branch to use is the ``stable`` branch, which is the stable version of Friendica. It is updated about four times a year on a fixed schedule. If you want to use and test bleeding edge code please checkout the ``develop`` branch. -The new features and fixes will be merged from ``develop`` into ``master`` after a release candidate period before each release. +The new features and fixes will be merged from ``develop`` into ``stable`` after a release candidate period before each release. 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. Be sure to pull frequently if you choose the ``develop`` branch. @@ -69,4 +76,4 @@ DROP TABLE ; RENAME TABLE _new TO ; ``` -This method is slower overall, but it is better suited for large numbers of duplicates. \ No newline at end of file +This method is slower overall, but it is better suited for large numbers of duplicates.