Folder permissions on Azure sites

Just looking around the new Azure website feature and striking your first hurdle. I am deploying a PHP site that writes cache data to the file system, but the application throws an error because the folder it wants to write to does not have write permission. Can I set permissions for folders or not?

Perhaps I can get around this, but I would like to know if this is possible.

+5
source share
4 answers

Folder permissions cannot be set / configured. This means that any place that your application writes should be under your site root.

+3
source

Your site can only write in places under C: \ DWASFiles \ Sites \ [siteName] \ VirtualDirectory0 and in the% TEMP% folder.

:

  • VirtualDirectory0,
  • % TEMP% ! - , , % TEMP% . , .
+1

, ?

, /. Microsoft, "" "".

0

webdeploy.

However, I don’t think there is a way to do this without manually setting up the webdeploy package - as described in the message http://blogs.msdn.com/b/azureappgallery/archive/2013/04/03/set-file-folder-permissions- for-your-content-on-azure-website-using-web-deployable-package.aspx .

0
source

All Articles