This is probably not an issue related to this module, but we have contacted archive.org about it and will post any followup information here.
This is probably not an issue related to this module, but we have contacted archive.org about it and will post any followup information here.
Comments
Comment #1
civicpixel commentedWith help from Tracey @ Archive.org, we figured out this behavior is due to transferring files with filenames containing spaces. Need to patch the module to warn/prevent transferring of files containing spaces in the name.
Comment #2
raytiley commentedTurns out this was caused by spaces in the file names of objects uploaded to archive. Archive.org fixed it on there end, but recommended we sanitize the file names of objects being uploaded.
Here is a regex that Archive.org uses to check for valid characters.
/^[a-zA-Z0-9_][a-zA-Z0-9_\-\/\.]+$/';
I'll try to submit a patch for this today or tomorrow.
-ray
Comment #3
civicpixel commentedI haven't seen this come up for some time with multiple stations uploading content, so I'm closing this out. Another great way to deal with filename sanitization is to integrate the transliteration module (http://drupal.org/project/transliteration) into your workflow.