Обновление Drupal6 до Drupal7
Создание полной резервной копии всех файлов, каталогов и ваших баз данных
* Примечания: Рекомендуется попробовать обновить или обновить тесткопия вашего сайта, прежде чем применять его на вашем сайте.Даже незначительные обновления могут привести к изменению поведения вашего сайта.
Шаг 1:
Make note of non-core drupal modules(no need drupal core modules) and search if that all modules are available in drupal 7. If the modules are not available, then search “is there any alternate module for drupal 7”. Make sure of it. (*step 1 is important)
Шаг 2:
Disable all non-core module.
Drush: drush pm-disable `drush pm-list --no-core --type=module –pipe`
Шаг 3:
Change the default theme as “Garland”.
Drush: drush vset theme_default garland, drush vset admin_theme garland
Шаг 4:
Update the drupal6.
Drush: drush up drupal
Шаг 5:
Dump the DataBase.
Drush: drush sql-dump > /path-to-dump/my-sql-dump-file-name.sql
Terminal: mysqldump -u [username] -p [database name] > [database name].sql
Шаг 6:
Download the latest Drupal7.
Drush: drush dl drupal --select`option to select the version`
Шаг 7:
Copy “files” folder from old instance(Drupal6) to new instance(Drupal7) and change the folder permissions.
Шаг 8:
Import the dumped DB to new instance.
Drush: (drush sql-drop, drush sql-cli < /path-of-dump/my-sql-dump-file-name.sql)
Terminal: mysql -u [username] -p newdatabase < [database name].sql
Шаг 9:
Go to Drupal Root > sites > default > settings.php and change into $update_free_access to TRUE in the settings file and then run update.php.
Шаг 10:
Download all the contributed modules : include `views and views related modules`.
Шаг 11:
Must download Content Construction Kit (CCK) module. Enable the CCK, Content Migrate modules.
Drush: drush dl cck, drush en cck
Go to “Admin-Structure > Migrate fields”.
Шаг12:
In that Migrate fields,
After enable click “Migrate fields” in “Available fields” the fields are come under the “Converted Fields”. Once again run “update.php”.
* См. Это: https://drupal.org/update/themes/6/7