Drupal 6에서 Drupal 7로 사용자 암호를 어떻게 마이그레이션합니까?


20

Drupal 6에서 Drupal 7 사이트로 사용자를 마이그레이션하려고합니다. 내 문제는 암호를 MD5에서 해시 암호 (D7에서 사용)로 변경하는 방법입니다.
당신은 어떤 아이디어가 있습니까?

답변:


11

md5 비밀번호를 해시 된 비밀번호로 업데이트하려면 user_hash_password () 를 사용 하고 'U'를 일치시켜야했습니다 . 다음은 스크립트를 작동시키는 데 사용한 스크립트입니다.

<?php
        require_once DRUPAL_ROOT . '/' . variable_get('password_inc', 'includes/password.inc');
        $res = db_query('select * from drupal.users');

        if($res) {
                foreach ($res as $result) {
                        $hashed_pass = user_hash_password($result->pass, 11);
                        if ($hashed_pass) {
                          $hashed_pass  = 'U' . $hashed_pass;
                          db_update('users')->fields(array('pass' => $hashed_pass))->condition('uid', $result->uid)->execute();
                        }
                }
        }

그런 다음 나는 달렸다

drush scr <name_of_the_script_file>

그리고 효과가있었습니다.


반복으로 11이 표준 D6으로 계산됩니까?
Sam152

7

이에 대한 매우 간단한 답변이 있습니다.

<?php
  $this->destination = new MigrateDestinationUser(array('md5_passwords' => TRUE));
  ...
  $this->addFieldMapping('pass', 'source_password');
?>

참조 : 사용자 비밀번호 유지


5

누군가 Drupal 6에서 Drupal 7로 사용자를 마이그레이션하기 위해 독립형 PHP 스크립트가 필요한 경우 다음과 같습니다.

  <?php
    /*
    Standalone PHP script to migrate users from Drupal 6 to Drupal 7 programatically.
    Date: 9-4-2012
    */

    // set HTTP_HOST or drupal will refuse to bootstrap
    $_SERVER['HTTP_HOST'] = 'example.org';
    $_SERVER['REMOTE_ADDR'] = '127.0.0.1';


    //root of Drupal 7 site
    $DRUPAL7_ROOT="/var/www/ace";
    define('DRUPAL_ROOT',$DRUPAL7_ROOT);
    chdir($DRUPAL7_ROOT);
    require_once "./includes/bootstrap.inc";
    drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
    require_once "./includes/password.inc";

    //connect to Drupal 6 database
    //syntax:mysqli(hostname,username,password,databasename);
    $db= new mysqli('localhost','ace6','ace6','ace6');
    if(mysqli_connect_errno())  {
        echo "Conection error. Could not connect to Drupal 6 site!";
        exit;
    }

    //get users from Drupal 6 database
    $query="select * from users";
    $result=$db->query($query);
    //count number of users
    $num_results=$result->num_rows;
    for($i=0;$i<$num_results;$i++){

        //fetch each row/user
        $row=$result->fetch_assoc();

        //migrate only active users
        if($row['status']==1){

            //convert password from Drupal 6 style to Drupal 7 style
            $hashed_pass='U'.user_hash_password($row['pass'],11);

            //check if user with same email address already exists in Drupal 7 database, if it does, do not migrate
            if (!user_load_by_mail($row['mail'])) {
                $account = new stdClass;
                $account->is_new = TRUE;
                $account->name = $row['name'];
                $account->pass = $hashed_pass;
                $account->mail = $row['mail'];
                $account->init = $row['mail'];
                $account->status = TRUE;
                $account->roles = array(DRUPAL_AUTHENTICATED_RID => TRUE);
                $account->timezone = variable_get('date_default_timezone', '');
                //create user in Drupal 7 site 
                user_save($account);
                //print message
                echo "User acount ".$row['name']." has been created\n";
            }
        }

    }
    ?>

어디에 배치해야하는지 말씀해 주시겠습니까?
Rootical V.

1
@Rootical V 스크립트에 올바른 경로 및 데이터베이스 자격 증명을 입력하면 명령 줄을 통해 어느 위치에서나이 스크립트를 실행할 수 있습니다.
Ajinkya Kulkarni

2

글쎄, 당신이 업그레이드 하면 당신의 암호와 함께 확인을 OK. 업그레이드 코드를보고 그 방법을 알 수있을 것 같습니다.

그러나 사용자를 마이그레이션하는 경우 가장 가능성이 높은 방법은 모든 사람에게 일회성 로그인 링크를 보내고 암호를 재설정하는 것입니다.


방금 drupal.org/project/login_one_timeviews_bulk_operations 와 통합되므로 비밀번호를 무효화하려는 경우 비밀번호를 다시 설정하는 것이 좋습니다.
rfay

0

D7 사이트의 devel / php에서 이것을 실행하면 필요한 것만 발견했습니다.

require_once "./includes/password.inc";

//connect to Drupal 6 database
//syntax:mysqli(hostname,username,password,databasename);
$db= new mysqli('localhost','ace6','ace6','ace6');
if(mysqli_connect_errno())  {
    echo "Conection error. Could not connect to Drupal 6 site!";
    exit;
}

//get users from Drupal 6 database
$query="select * from users";
$result=$db->query($query);
//count number of users
$num_results=$result->num_rows;
for($i=0;$i<$num_results;$i++){

    //fetch each row/user
    $row=$result->fetch_assoc();

    //migrate only active users
    if($row['status']==1){

        //convert password from Drupal 6 style to Drupal 7 style
        $hashed_pass='U'.user_hash_password($row['pass'],11);

        //check if user with same email address already exists in Drupal 7 database, if it does, do not migrate
        if (!user_load_by_mail($row['mail'])) {
            $account = new stdClass;
            $account->is_new = TRUE;
            $account->name = $row['name'];
            $account->pass = $hashed_pass;
            $account->mail = $row['mail'];
            $account->init = $row['mail'];
            $account->status = TRUE;
            $account->roles = array(DRUPAL_AUTHENTICATED_RID => TRUE);
            $account->timezone = variable_get('date_default_timezone', '');
            //create user in Drupal 7 site 
            user_save($account);
            //print message
            echo "User acount ".$row['name']." has been created\n";
        }
    }

}

두 사이트 모두 동일한 웹 서버에있었습니다.


비밀번호를 수동으로 변경하도록 선택했습니다. $this->destination = new MigrateDestinationUser(array('md5_passwords' => TRUE)); ... $this->addFieldMapping('pass', 'source_password');
Neograph734
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.