2011-08-22 23:28:50 +01:00
|
|
|
Upgrading
|
|
|
|
=========
|
|
|
|
|
2013-10-17 16:17:39 +01:00
|
|
|
StatusNet 1.1.1 to GNU social
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
We cannot support migrating from any other version of StatusNet than
|
|
|
|
1.1.1. If you are running a StatusNet version lower than this, please
|
|
|
|
follow the upgrade procedures for each respective StatusNet version.
|
|
|
|
|
|
|
|
You are now running StatusNet 1.1.1 and want to migrate to GNU social.
|
2014-11-06 12:08:06 +00:00
|
|
|
Beware there may be changes in minimum required version of PHP and the
|
|
|
|
modules used, so double-check the INSTALL file's requirements list.
|
2013-10-17 16:17:39 +01:00
|
|
|
|
|
|
|
Before you begin: Make backups. Always make backups. Of your entire
|
|
|
|
directory structure and the database too. All tables. All data. Alles.
|
|
|
|
|
|
|
|
0. Stop your queue daemons 'php scripts/stopdaemon.php' should do it.
|
|
|
|
Not everyone runs queue daemons, but the above command won't hurt.
|
|
|
|
|
|
|
|
1. Unpack your GNU social code to a fresh directory.
|
|
|
|
|
|
|
|
2. Synchronize your local files to the GNU social directory. These
|
|
|
|
will be the local files such as avatars, config and files:
|
|
|
|
|
|
|
|
avatar/*
|
|
|
|
background/*
|
|
|
|
file/*
|
|
|
|
local/*
|
|
|
|
.htaccess
|
|
|
|
config.php
|
|
|
|
|
|
|
|
3. Replace your old StatusNet directory with the new GNU social
|
|
|
|
directory in your webserver root.
|
|
|
|
|
|
|
|
4. Run the upgrade script: 'php scripts/upgrade.php'
|
|
|
|
|
|
|
|
5. Start your queue daemons: 'php scripts/startdaemons.php'
|
|
|
|
|
2014-11-06 12:08:06 +00:00
|
|
|
6. Report any issues at https://bugz.foocorp.net/ (tag GNU social)
|
2013-10-17 16:17:39 +01:00
|
|
|
|
|
|
|
|
|
|
|
Legacy StatusNet instructions
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
These instructions are here for historical and perhaps informational
|
|
|
|
purposes.
|
|
|
|
|
2012-04-16 21:38:41 +01:00
|
|
|
If you've been using StatusNet 1.0 or lower, or if you've
|
2011-08-22 23:28:50 +01:00
|
|
|
been tracking the "git" version of the software, you will probably
|
2011-09-07 23:42:40 +01:00
|
|
|
want to upgrade and keep your existing data. Try these step-by-step
|
2011-08-22 23:28:50 +01:00
|
|
|
instructions; read to the end first before trying them.
|
|
|
|
|
|
|
|
0. Download StatusNet and set up all the prerequisites as if you were
|
|
|
|
doing a new install.
|
|
|
|
1. Make backups of both your database and your Web directory. UNDER NO
|
|
|
|
CIRCUMSTANCES should you try to do an upgrade without a known-good
|
|
|
|
backup. You have been warned.
|
|
|
|
2. Shut down Web access to your site, either by turning off your Web
|
|
|
|
server or by redirecting all pages to a "sorry, under maintenance"
|
|
|
|
page.
|
|
|
|
3. Shut down XMPP access to your site, typically by shutting down the
|
|
|
|
xmppdaemon.php process and all other daemons that you're running.
|
|
|
|
If you've got "monit" or "cron" automatically restarting your
|
|
|
|
daemons, make sure to turn that off, too.
|
|
|
|
4. Shut down SMS and email access to your site. The easy way to do
|
|
|
|
this is to comment out the line piping incoming email to your
|
|
|
|
maildaemon.php file, and running something like "newaliases".
|
|
|
|
5. Once all writing processes to your site are turned off, make a
|
|
|
|
final backup of the Web directory and database.
|
|
|
|
6. Move your StatusNet directory to a backup spot, like "statusnet.bak".
|
2013-07-16 19:23:47 +01:00
|
|
|
7. Unpack your StatusNet 1.1.1 tarball and move it to "statusnet" or
|
2011-08-22 23:28:50 +01:00
|
|
|
wherever your code used to be.
|
|
|
|
8. Copy the config.php file and the contents of the avatar/, background/,
|
|
|
|
file/, and local/ subdirectories from your old directory to your new
|
|
|
|
directory.
|
|
|
|
9. Copy htaccess.sample to .htaccess in the new directory. Change the
|
|
|
|
RewriteBase to use the correct path.
|
2011-09-07 23:42:40 +01:00
|
|
|
10. Upgrade the database.
|
2011-08-22 23:28:50 +01:00
|
|
|
|
|
|
|
NOTE: this step is destructive and cannot be
|
|
|
|
reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't
|
|
|
|
do it without a known-good backup!
|
|
|
|
|
2013-07-16 19:23:47 +01:00
|
|
|
In your new StatusNet 1.1.1 directory and AFTER YOU MAKE A
|
2011-09-07 23:42:40 +01:00
|
|
|
BACKUP run the upgrade.php script like this:
|
2011-08-22 23:28:50 +01:00
|
|
|
|
2011-09-07 23:42:40 +01:00
|
|
|
php ./scripts/upgrade.php
|
2011-08-22 23:28:50 +01:00
|
|
|
|
|
|
|
11. Use mysql or psql client to log into your database and make sure that
|
|
|
|
the notice, user, profile, subscription etc. tables are non-empty.
|
|
|
|
12. Turn back on the Web server, and check that things still work.
|
2011-09-07 23:42:40 +01:00
|
|
|
13. Turn back on XMPP bots and email maildaemon.
|
2011-08-22 23:28:50 +01:00
|
|
|
|
|
|
|
NOTE: the 1.0.0 version of StatusNet changed the URLs for all admin
|
|
|
|
panels from /admin/* to /panel/*. This now allows the (popular)
|
|
|
|
username 'admin', but blocks the considerably less popular username
|
|
|
|
'panel'. If you have an existing user named 'panel', you should rename
|
|
|
|
them before upgrading.
|