Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This might sounds basic, but thought I'd ask anyway.

What I want to do is upload swf files into a specific folder so users can upload games, and I can have a look at them to make sure they're safe.

I'm not exactly sure how I'd do this though. Here is a simple code I found on w3schools.com that I tried modifying to no avail.

    <?php
if ((($_FILES["file"]["type"] == "application/swf"))
&& ($_FILES["file"]["size"] < 20000))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

    if (file_exists("upload/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "games/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "games/" . $_FILES["file"]["name"];
      }
    }
  }
else
  {
  echo "Invalid file";
  }

?>

I changed the uploadable file type to application/swf, but when I actually upload a swf file, it just says "invalid file"

I've searched all over google for a swf file uploading script, haven't found anything, so I thought I'd try my luck here.

Thanks

share|improve this question
3  
Try "application/x-shockwave-flash" [gsp.com/support/virtual/web/conf/mimetypes.html] – Shubham Apr 8 '12 at 14:41
1  
Flash file uploading isn't any different from uploading any kind of file - perhaps except for the checking you will want to do to ensure it is a flash file. – halfer Apr 8 '12 at 14:41
Using application/x-shockwave-flash worked, and also did changing the max file size. thanks! – Jonas Apr 8 '12 at 19:51

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.