Reputation: 131
When I try to publish the project through visual studio I get the "Access is denied (550)" after googling the error I come to know that the issue is with ftp permission as it is read-only. But I am not able to see a permission property with read only in Visual Studio and unchecking it in order to give it full permission.
Upvotes: 4
Views: 8602
Reputation: 21
I had the same problem. Solved by ensuring that when you Publish>Connection, that the Passive Mode box is checked. Issue resolved
Upvotes: 2
Reputation: 102448
You'll have to give write permission in your FTP folder to the user you're using while deploying your app.
A more complete answer with step by step checking can be seen here: http://forums.asp.net/post/3966123.aspx
Upvotes: 4
Reputation: 2991
this sounds like a setting on the FTP site itself, not a Visual Studio issue. The FTP account you are using probably does not allow you to write to it.
I like to publish to a directory on my computer and then work with my Systems Admin to determine the best way of getting the data to the server (e.g., he gives me access via both allow-write FTP accounts and remote desktop.). Then I just physically move the files.
Upvotes: 5