Using filefield to allow an administrator to upload .swf files. Flash (.swf) files are to be viewed by the end user in the browser, via a specialized template which requests the file vie javascript. Using private files ( 'system/files' request ). Currently, the .swf file does not play as the Content-Disposition is set to 'attachment' instead of inline. If the file is requested directly (outside of its template), the browser prompts to download.

For a fix, add to filefield_file_download just after the text or image disposition is set.
if ( $file->filemime == 'application/x-shockwave-flash' )
$disposition = 'inline';

CommentFileSizeAuthor
#1 filefield_flash_inline.patch849 bytesquicksketch
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

quicksketch’s picture

Status: Needs review » Fixed
FileSize
849 bytes

Strange this fix must have only been committed to the Drupal 5 version somehow. I've reapplied the fix from #325795: Content-Disposition: attachment breaks swf content to the Drupal 6 version which should fix this problem.

Status: Fixed » Closed (fixed)

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