[Zope] rename via FTP
Dieter Maurer
dieter@handshake.de
Tue, 27 Nov 2001 21:53:30 +0100
Arian de Wit writes:
> Maybe I'm thick (fairly likely), but I'm trying to give a user access to
> renaming images via an FTP connection. I have given them a role
> with what I thought were reasonable permissions, but the rename
> keeps failing:
>
> > RNFR TUI7.GIF
> < 350 RNFR command successful.
> > RNTO TUI7.GIF9
> < 550 error renaming file.
>
> I then gave the role *all* permissions on the folder's "Security" tab,
> and still no good. I finally gave the user the "Manager" role instead,
> and it works fine. What's up with that?
A missing security declaration for the respective method
would look like this.
As Zope would not find a security declaration, it would revert to
the default security which is: "allow for manager" only.
Dieter