in reply to chmod with Net::FTP

Close. Next time you use a GUI FTP client, log your session, then look at exactly what gets sent.

What you need is:

$ftp->quot('SITE','chmod', '777', 'remotefile');

Remember to send the full command when you use $ftp->quot!

cLive ;-)