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.

I made a simple app, archived it and went into organizer. From there I clicked Distribute -> Export As Application -> Don't Resign and then saved it to my desktop. It runs fine then, but if I upload it to Mediafire and try to download it I get the error You can't open the application X because the Classic environment is no longer supported. when trying to run it. I didn't change any default settings.

share|improve this question

2 Answers

up vote 8 down vote accepted

How did you upload it? Did you wrap it in a zip archive or did you just upload the raw app bundle?

If you just uploaded the raw app then you will have destroyed the permissions and extended attributes on the executables, causing the app to fail to work when downloaded.

The system will see your main executable as a non-executable file, and the "Classic Environment" error message is just the default error message in this situation as it's the most likely reason for this issue.

Wrapping the app in a zip works because the zip format retains the permissions information for the files in the zip archive.

share|improve this answer
Awesome, thanks for the explanation. – bipolarpants Mar 13 '12 at 0:22
This answer should have like 100 upvotes from cocoa newb's :) – Matt Phillips Jun 12 '12 at 4:47
Thank you so, so much. – cksubs Feb 22 at 6:45

Hm for whatever reason I had to zip up the file before uploading it. Don't know exactly why, but that works.

share|improve this answer
1  
See my answer. Executable files must have specific access privileges in order for the system to know that they are executable. If you upload the app bundle via some system that does not preserve the permissions on each file, when you download the files again all of the files in the bundle will have default privileges, including the app's main executable. – Rob Keniger Mar 12 '12 at 22:53

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.