]> git.mxchange.org Git - friendica.git/commitdiff
modified: doc/Home.md
authorAndy <andy@hubup.pro>
Sat, 28 Nov 2020 06:43:58 +0000 (13:43 +0700)
committerAndy <andy@hubup.pro>
Sat, 28 Nov 2020 06:43:58 +0000 (13:43 +0700)
modified:   doc/Migrate.md

doc/Home.md
doc/Migrate.md

index 9ed552bd3a8a6a3be884aa3831b89de9cf92c000..4d03ed2e5ab4a091e68fc090b4aff160f806a424 100644 (file)
@@ -35,6 +35,7 @@ Friendica Documentation and Resources
 * [Using SSL with Friendica](help/SSL)
 * [Config values that can only be set in config/local.config.php](help/Config)
 * [Improve Performance](help/Improve-Performance)
+* [Migrate to new server](help/Migrate)
 * [Administration Tools](help/tools)
 
 **Developer Manual**
index 800bf1df8cb832ed88650555494daf9f27a8f8fe..892e4d375e3d52d8bf4cec6a5e0d662ff6973151 100644 (file)
@@ -55,16 +55,15 @@ Take your web server offline. This will ensure consistency of your users' data.
 ## Dumping DB
 
 Dump you database: ``mysqldump  -p friendica_db > friendica_db-$(date +%Y%m%d).sql``
-
 and possibly compress it. 
 
 ## Transferring to new installation 
 
 Transfer your database and copy of your configuration file ``config/local.config.php-copy`` to your new server.
 
-## Import your DB
+## Restore your DB
 
-Import your database: ``mysql -p friendica_db < your-friendica_db-file.sql``
+Import your database on your new server: ``mysql -p friendica_db < your-friendica_db-file.sql``
 
 ## Completing installation process