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

civicpixel’s picture

Priority: Normal » Major

With 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.

raytiley’s picture

Priority: Major » Normal

Turns 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

civicpixel’s picture

Status: Active » Closed (works as designed)

I 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.