0
我有一個Drupal 6.25數據庫,我試圖遷移到Wordpress(v3.4.1)。我可以將內容複製到Wordpress中,但是對於評論,我似乎在將thread
列(在Drupal評論表中)轉換爲comment_parent
(在Wordpress wp_comments中)時遇到了問題。Drupal to Wordpress - 遷移評論
下面是我使用的代碼(從tutorial拍攝):
INSERT INTO `mywordpress`.wp_comments
(comment_post_ID, comment_date, comment_content, comment_parent, comment_author,
comment_author_email, comment_author_url, comment_approved)
SELECT DISTINCT
nid, FROM_UNIXTIME(timestamp), comment, thread, name,
mail, homepage, ((status + 1) % 2)
FROM mydrupal.comments;
上述不起作用,因爲WordPress的comment_parent
是一個BIGINT類型,而Drupal的thread
列是一個VARCHAR,其值如0a.01.03.00/
,
這些如何轉換成Wordpress兼容值?