I downloaded the getID3 library, moved it to sites/all/libraries/getID3 so that getid3_libraries_info would be ok, but when I try to enable the module via Drush it says:
Drush was unable to create the getID3 directory at sites/all/libraries/getid3.
(note, I'm using Windows so the file system is case insensitive)
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | getid3-n2375753-2.patch | 4.21 KB | damienmckenna |
Comments
Comment #1
damienmckennaThe reason this happens is that drush_getid3_pre_pm_enable() in getid3.drush.inc runs drush_getid3_download() which tries to download the library, but it never checks if it's needed.
Comment #2
damienmckennaThis does a file_exists() check on $library_path before trying to download anything.
Comment #3
le72Almost same here.
I use
$drush --select dl getid3choose 2.0-beta1
then
$drush en getid3and I got
Drush was unable to create the getID3 directory at sites/all/libraries/getid3.I am also on Windows.
Comment #4
mglamanThanks DamienMcKenna!