to rename the file or folder you should use ftp_chdir to select the current directory on ftp server or you should write the full path to file in old name and in new nameEx. 1<?php// open the folder that have the fileftp_chdir($conn_id, '/www/ftp-filemanager/');// rename the fileftp_rename($conn_id, 'file1.jpg', 'new_name_4_file.jpg');?>or write full path Ex. 2<?// rename the fileftp_rename($conn_id, '/www/ftp-filemanager/file1.jpg', '/www/ftp-filemanager/new_name_4_file.jpg');?>