diff --git a/update.php b/update.php index 9ad8f0e8237..842d8bb800b 100644 --- a/update.php +++ b/update.php @@ -610,13 +610,12 @@ function update_info() { print "
    \n"; print "
  1. Use this script to upgrade an existing Drupal installation. You don't need this script when installing Drupal from scratch.
  2. "; print "
  3. Before doing anything, backup your database. This process will change your database and its values, and some things might get lost.
  4. \n"; - print "
  5. Don't run this script twice as it may cause problems.

  6. \n"; - print "
  7. Upgrade to the latest version.
  8. \n"; + print "
  9. Update your Drupal sources, check the notes below and run the database upgrade script. Don't upgrade your database twice as it may cause problems.

  10. \n"; print "
  11. Go through the various administration pages to change the existing and new settings to your liking.
  12. \n"; print "
"; print "Notes:"; print "
    "; - print "
  1. If you upgrade from Drupal 4.2.0, you have to create the sessions table manually before upgrading. After you created the table, you'll want to log in and immediately continue the upgrade. To create the sessions table, issue the following SQL command:
    CREATE TABLE sessions (
    +  print " 
  2. If you upgrade from Drupal 4.2.0, you have to create the sessions table manually before upgrading. After you created the table, you'll want to log in and immediately continue the upgrade. To create the sessions table, issue the following SQL command (MySQL specific example):
    CREATE TABLE sessions (
       uid int(10) unsigned NOT NULL,
       sid varchar(32) NOT NULL default '',
       hostname varchar(128) NOT NULL default '',