I am trying to get some guidance on how to troubleshoot my problem. I have a podcast (feed://pathwaycc.net/sermons/feed) that was working perfectly until a few weeks ago. I didn't change my view or anything to do with the podcast. Itunes correctly identifies that there is a new podcast and even says the size of the file correctly but when it goes to download the file I get a 404 error. You will see if you click the link to my feed that the files are working correctly.

Some troubleshooting help would be great

CommentFileSizeAuthor
Screen shot 2010-10-05 at 3.54.53 PM.png33.4 KBsaepl
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

saepl’s picture

I fixed the problem by installing the transliteration module - as it was indeed a problem with spaces in the filename.

dandaman’s picture

I added this line on Line 68 of ffpc_plugin_row_podcast.inc:

        $file['filepath'] = str_replace(' ', '%20', $file['filepath']);

This fixed the problem of podcast files that had spaces in the name. It was not technically a valid RSS feed without the spaces escaped and at least recent versions of iTunes on Mac would error out saying it could not find the file.