Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I needed to protect a digital magazine that's in a flash file, so I've uploaded all the files outside of the web directory.

PHP will then read the flash file with readfile() and output it to the browser for allowed users.

Everything worked 100% with Firefox, but it doesn't want to work in Chrome and IE.

Without going into everything the digital magazine flash file requires (since it will just make the question bloated) I've narrowed down the problem to what I believe has to do with the headers the PHP file is sending to the browser.

I've setup the following tests with the main swf file.

NOTE: I left out the required resources for the swf file since I'm able to reproduce the bug without it.

Base Urls used in tests: http://3sbeta.co.za/flash-issue/

The original swf file

3dissue.swf

PHP file that reads swf file.

3dissue.php

<?php
$file = '3dissue.swf';
header("Content-Type: application/x-shockwave-flash");
header('Content-Length: ' . filesize($file));
readfile($file);
?>

I've removed a lot of the headers I experimented with since they didn't seem to help and just started to become confusing.

Saved PHP file saved

3dissue-php.swf

The above file is the saved PHP file that reads the swf file, just renamed and extension changed.

Tests

If you go to 3dissue.swf in Firefox, Chrome and IE you should see a popup error message telling you that a file could not be found which is correct.

Now if you go to 3dissue.php, it only works in Firefox. I have also previously used a .htaccess file to rewrite all .swf files to .php with the exact same result.

I then saved the 3dissue.php file in Chrome to my computer, renamed the file to 3dissue-php.swf and uploaded it again.

Now when I go to 3dissue-php.swf it works in Firefox, Chrome and IE.

Is this a header problem as I suspect, what headers should be added or am I missing something else?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.