I found that the code was checking the wrong directory for the wordpress xml files when using files uploaded to the server.
It was creating a wordpress folder in root rather than sites/all/files...

I changed:

// Create and scan module directory
$wordpress_import_path = file_create_path('wordpress');

to

// Create and scan module directory
$wordpress_import_path = file_create_path(file_directory_path() .'/wordpress');

(around line 208)
and it all worked great.

Hope someone can add this fix to allow me to apply updates quickly.

Comments

lavamind’s picture

Fixed in 6.x-2.x-dev

Thanks!

lavamind’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)
Issue tags: -upload, -directory, -WordPress

Automatically closed -- issue fixed for 2 weeks with no activity.