user1801105
user1801105

Reputation: 221

Changing permissions on Windows for FTP via XAMPP

I am developing a rather basic CMS locally and can not ftp due to permissions problems. I have FileZilla FTP server running in XAMPP and can connect without problems but receive error "550 Permission Denied" when my code tries to upload via ftp.

I tried changing permissions via my FileZilla FTP client but without success (presumably because it is windows- error: "504 Command not implemented for that parameter"). I also tried going to the target folder's properties --> security --> permissions and checking "full" for the user XAMPP is running under.

So how do I setup the permissions to allow my CMS to use ftp in XAMPP?

Upvotes: 3

Views: 13696

Answers (3)

Get Started
Get Started

Reputation: 1

You're behind firewall? Try to allow FileZilla server program in Firewall.

Upvotes: 0

HtmlGifited
HtmlGifited

Reputation: 1

For a fix of this make sure that the root folder is allowed to write and pass rights permission. had this same issue for a script to run on local web xampp server windows xp.. just change the root file attributes to 755 then try it if that don't work try 777. should work now... hope this works for you... as it did me.

If that does not work go to your htdocs folder in your xampp directory then right click it and check properties .. if read only is ticked .. untick it and apply to all sub folders and files

Upvotes: 0

user1801105
user1801105

Reputation: 221

Finally figured it out. For anyone else who has this problem, there is no need to set permissions in Windows. Instead, on the FileZilla FTP server admin interface select edit --> users --> shared folders and check 'write'.

Upvotes: 5

Related Questions