Reputation: 385
HI,
I have a flash application (working demo here) which I'm using to let users take pictures of themselves on my website. The application takes the picture, then lets the user save it by invoking a PHP script located in the same directory as the Flash file.
Testing this on my local machine works fine - the picture saves as intended. However, once on my server, the saving no longer works. The flash runs fine - pictures can be taken, however the save button does not work. Why would the environments differ in such a specific way, and what might be preventing the save function from working?
Upvotes: 0
Views: 130
Reputation: 6439
You might just need to make the permissions on the directory you want to save the image into writeable. Typically, the default setting for most hosting companies is read only. This will probably be in your hosting companies control panel.
Upvotes: 1