=== FG Drupal to WordPress ===
Contributors: Frédéric GILLES
Plugin Uri: https://wordpress.org/plugins/fg-drupal-to-wp/
Tags: drupal, wordpress, importer, convert drupal to wordpress, migrate drupal to wordpress, drupal to wordpress migration, migrator, converter, import
Requires at least: 4.4
Tested up to: 4.6.1
Stable tag: 1.3.2
License: GPL-2.0+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=fred%2egilles%40free%2efr&lc=FR&item_name=fg-drupal-to-wp¤cy_code=EUR&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
A plugin to migrate articles, pages, categories, tags, images from Drupal to WordPress
== Description ==
This plugin migrates articles, pages, categories, tags and images from Drupal to Wordpress.
It has been tested with **Drupal 6, 7 & 8** and **Wordpress 4.6**. It is compatible with multisite installations.
Major features include:
* migrates the Drupal articles
* migrates the Drupal basic pages
* migrates the Drupal categories
* migrates the Drupal tags
* migrates the Drupal images
* uploads all the posts media in WP uploads directories
* uploads external media (option)
* modifies the post content to keep the media links
* resizes images according to the sizes defined in WP
* defines the featured image to be the first post image (option)
* keeps the alt image attribute
* modifies the internal links
No need to subscribe to an external web site.
= Premium version =
The **Premium version** includes these extra features:
* migrates the comments
* migrates the authors
* migrates the administrators
* migrates the users
* migrates the custom post types
* migrates the custom taxonomies
* migrates the custom fields
* authenticates the users with their Drupal passwords
The Premium version can be purchased on: https://www.fredericgilles.net/fg-drupal-to-wordpress/
== Installation ==
1. Install the plugin in the Admin => Plugins menu => Add New => Upload => Select the zip file => Install Now
2. Activate the plugin in the Admin => Plugins menu
3. Run the importer in Tools > Import > Drupal
4. Configure the plugin settings. You can find the Drupal database parameters in the Drupal file sites/default/settings.php
== Frequently Asked Questions ==
== Screenshots ==
1. Parameters screen
== Translations ==
* English (default)
* French (fr_FR)
* other can be translated
== Frequently Asked Questions ==
= I get the message: "[fg-drupal-to-wp] Couldn't connect to the Drupal database. Please check your parameters. And be sure the WordPress server can access the Drupal database. SQLSTATE[28000] [1045] Access denied for user 'xxx'@'localhost' (using password: YES)" =
* First verify your login and password to the Drupal database.
If Drupal and WordPress are not installed on the same host:
* If you use CPanel on the Drupal server, a solution is to allow a remote MySQL connection.
- go into the Cpanel of the Drupal server
- go down to Database section and click "Remote MySQL"
- There you can add an access host (WordPress host). Enter the access host as the SOME-WEBSITE-DOMAIN-OR-IP-ADDRESS and click add host.
* Another solution is to copy the Drupal database on the WordPress database:
- export the Drupal database to a SQL file (with phpMyAdmin for example)
- import this SQL file on the same database as WordPress
- run the migration by using WordPress database credentials (host, user, password, database) instead of the Drupal ones in the plugin settings.
= I get this error when testing the connection: "SQLSTATE[HY000] [2002] Connection refused" or "SQLSTATE[HY000] [2002] No such file or directory" =
* This error happens when the host is set like localhost:/tmp/mysql5d.sock
Instead, you must set the host to be localhost;unix_socket=/tmp/mysql5d.sock
= The migration stops and I get the message: "Fatal error: Allowed memory size of XXXXXX bytes exhausted" or I get the message: “Internal server error" =
* First, deactivate all the WordPress plugins except the ones used for the migration
* You can run the migration again. It will continue where it stopped.
* You can add: `define('WP_MEMORY_LIMIT', '512M');` in your wp-config.php file to increase the memory allowed by WordPress
* You can also increase the memory limit in php.ini if you have write access to this file (ie: memory_limit = 1G). See the increase memory limit procedure.
= The media are not imported =
* Check the URL field that you filled in the plugin settings. It must be your Drupal home page URL and must start with http:// or https://
= The media are not imported and I get the error message: "Warning: copy() [function.copy]: URL file-access is disabled in the server configuration" =
* The PHP directive "Allow URL fopen" must be turned on in php.ini to copy the medias. If your remote host doesn't allow this directive, you will have to do the migration on localhost.
= I get the message: "Fatal error: Class 'PDO' not found" =
* PDO and PDO_MySQL libraries are needed. You must enable them in php.ini on the WordPress host.
Or on Ubuntu:
sudo php5enmod pdo
sudo service apache2 reload
= I get this error: PHP Fatal error: Undefined class constant 'MYSQL_ATTR_INIT_COMMAND' =
* You have to enable PDO_MySQL in php.ini on the WordPress host. That means uncomment the line extension=pdo_mysql.so in php.ini
= Does the migration process modify the Drupal site it migrates from? =
* No, it only reads the Drupal database.
= I get this error: Erreur !: SQLSTATE[HY000] [1193] Unknown system variable 'NAMES' =
* It comes from MySQL 4.0. It will work if you move your database to MySQL 5.0 before running the migration.
= I get this error "Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM" =
* You must use at least PHP 5.3 on your WordPress site.
= I get this error: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client =
* It is a compatibility issue with your version of MySQL.
You can read this post to fix it: http://forumsarchive.laravel.io/viewtopic.php?id=8667
= None image get transferred into the WordPress uploads folder. I'm using Xampp on Windows. =
* Xampp puts the htdocs in the applications folder which is write protected. You need to move the htdocs to a writeable folder.
= Do I need to keep the plugin activated after the migration? =
* No, you can deactivate or even uninstall the plugin after the migration (for the free version only).
= My screen hangs because of a lot of errors in the log window =
* You can stop the log auto-refresh by unselecting the log auto-refresh checkbox
Don't hesitate to let a comment on the forum or to report bugs if you found some.
https://wordpress.org/support/plugin/fg-drupal-to-wp
== Changelog ==
= 1.3.2 =
* Fixed: Drupal 6 nodes imported with a wrong revision
= 1.3.0 =
* New: Test if the Drupal database contains some custom post types and custom taxonomies
= 1.2.0 =
* New: Released a Premium version which migrates the comments and the users
= 1.1.1 =
* FAQ created
* Tested with WordPress 4.6.1
= 1.1.0 =
* New: Compatible with Drupal 6
= 1.0.0 =
* Initial version: Import Drupal articles, basic pages, categories, tags and images
== Upgrade Notice ==
= 1.3.2 =
Fixed: Drupal 6 nodes imported with a wrong revision
= 1.3.0 =
New: Test if the Drupal database contains some custom post types and custom taxonomies
= 1.2.0 =
New: Released a Premium version which migrates the comments and the users
= 1.1.1 =
FAQ created
Tested with WordPress 4.6.1
= 1.1.0 =
New: Compatible with Drupal 6
= 1.0.0 =
Initial version: Import Drupal articles, basic pages, categories, tags and images